An open API service indexing awesome lists of open source software.

https://github.com/mwrites/ml-rust

Machine Learning Algorithms in Rust
https://github.com/mwrites/ml-rust

ai deep-learning machine-learning ml neural-networks rust

Last synced: about 1 month ago
JSON representation

Machine Learning Algorithms in Rust

Awesome Lists containing this project

README

          

# Machine Learning Algorithms In Rust

| Algorithm | Description | Visualization |
|-----------|-------------|----------------|
| [Multi-class AdamW Logistic Regression](./logistic-regression/) | A statistical method for predicting classes | ![Logistic Regression](./logistic-regression/mnist.webp) |
| [K Means Clustering](./k-means/) | Unsupervised ml technique for partitioning data into k clusters | ![K Means Clustering](./k-means/kmeans_evolution.gif) |
| [Gaussian Estimation](./gaussian-estimation/) | Anomaly Detection using Multivariate Gaussian Estimation | ![Gaussian Estimation](./gaussian-estimation/gaussian_pdf.png) |