Below you will find an index of the models implemented in this repository, complete with direct links to the code in both Python (π) and Julia (π).
| Model Name | Category | Python Code | Julia Code |
|---|---|---|---|
| k-Nearest Neighbors | Classification | β | π |
| Linear Least Squares | Regression | β | β |
| Ridge Regression | Regression | β | β |
| Lasso | Regression | β | β |
| Support Vector Machines | Classification | β | β |
| Random Forests | Ensemble Methods | β | β |
| Boosting | Ensemble Methods | β | β |
| Gradient Boosting | Ensemble Methods | β | β |
| Principal Component Analysis (PCA) | Dimensionality Reduction | β | β |
| Kernel PCA | Dimensionality Reduction | β | β |
| Multiple Discriminant Analysis (MDA) | Dimensionality Reduction | β | β |
| Isomap | Manifold Learning | β | β |
| t-Distributed Stochastic Neighbor Embedding (t-SNE) | Manifold Learning | β | β |
| k-Means Clustering | Clustering | β | β |