You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/website/content/about.md
+21-16Lines changed: 21 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
+++
2
2
title = "About"
3
-
date = 2021-02-26
3
+
date = 2025-12-23
4
4
+++
5
5
6
6
Linfa aims to provide a comprehensive toolkit to build Machine Learning applications with Rust.
@@ -16,21 +16,26 @@ Where does `linfa` stand right now? [Are we learning yet?](http://www.arewelearn
16
16
17
17
<divclass="outer-table">
18
18
19
-
| Name | Purpose | Status | Category | Notes |
20
-
| :--- | :--- | :---| :--- | :---|
21
-
|[clustering](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-clustering)| Data clustering | Tested / Benchmarked | Unsupervised learning | Clustering of unlabeled data; contains K-Means, Gaussian-Mixture-Model, DBSCAN and OPTICS |
22
-
|[kernel](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-kernel)| Kernel methods for data transformation | Tested | Pre-processing | Maps feature vector into higher-dimensional space|
23
-
|[linear](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-linear)| Linear regression | Tested | Partial fit | Contains Ordinary Least Squares (OLS), Generalized Linear Models (GLM) |
24
-
|[elasticnet](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-elasticnet)| Elastic Net | Tested | Supervised learning | Linear regression with elastic net constraints |
|[reduction](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-reduction)| Dimensionality reduction | Tested | Pre-processing | Diffusion mapping and Principal Component Analysis (PCA) |
27
-
| [trees](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-trees) | Decision trees | Experimental | Supervised learning | Linear decision trees
28
-
|[svm](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-svm)| Support Vector Machines | Tested | Supervised learning | Classification or regression analysis of labeled datasets |
29
-
|[hierarchical](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-hierarchical)| Agglomerative hierarchical clustering | Tested | Unsupervised learning | Cluster and build hierarchy of clusters |
|[clustering](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-clustering/)| Data clustering | Tested / Benchmarked | Unsupervised learning | Clustering of unlabeled data; contains K-Means, Gaussian-Mixture-Model, DBSCAN and OPTICS |
23
+
|[ensemble](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-ensemble/)| Ensemble methods | Tested | Supervised learning | Contains bagging, random forest and AdaBoost |
24
+
|[elasticnet](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-elasticnet/)| Elastic Net | Tested | Supervised learning | Linear regression with elastic net constraints |
25
+
|[ftrl](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-ftrl/)| Follow The Regularized Leader - proximal | Tested / Benchmarked | Partial fit | Contains L1 and L2 regularization. Possible incremental update |
26
+
|[hierarchical](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-hierarchical/)| Agglomerative hierarchical clustering | Tested | Unsupervised learning | Cluster and build hierarchy of clusters |
|[kernel](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-kernel/)| Kernel methods for data transformation | Tested | Pre-processing | Maps feature vector into higher-dimensional space |
29
+
|[lars](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-lars/)| Linear regression | Tested | Supervised learning | Contains Least Angle Regression (LARS) |
30
+
|[linear](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-linear/)| Linear regression | Tested | Supervised learning | Contains Ordinary Least Squares (OLS), Generalized Linear Models (GLM) |
|[nn](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-nn/)| Nearest Neighbours & Distances | Tested / Benchmarked | Pre-processing | Spatial index structures and distance functions |
33
+
|[pls](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-pls/)| Partial Least Squares | Tested | Supervised learning | Contains PLS estimators for dimensionality reduction and regression |
34
+
|[preprocessing](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-preprocessing/)| Normalization & Vectorization | Tested / Benchmarked | Pre-processing | Contains data normalization/whitening and count vectorization/tf-idf |
35
+
|[reduction](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-reduction/)| Dimensionality reduction | Tested | Pre-processing | Diffusion mapping, Principal Component Analysis (PCA), Random projections |
36
+
|[svm](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-svm/)| Support Vector Machines | Tested | Supervised learning | Classification or regression analysis of labeled datasets |
37
+
|[trees](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-trees/)| Decision trees | Tested / Benchmarked | Supervised learning | Linear decision trees |
0 commit comments