Skip to content

Commit c09da36

Browse files
committed
Update website about section
1 parent 59fc6c6 commit c09da36

File tree

1 file changed

+21
-16
lines changed

1 file changed

+21
-16
lines changed

docs/website/content/about.md

Lines changed: 21 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
+++
22
title = "About"
3-
date = 2021-02-26
3+
date = 2025-12-23
44
+++
55

66
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
1616

1717
<div class="outer-table">
1818

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 |
25-
| [logistic](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-logistic) | Logistic regression | Tested | Partial fit | Builds two-class logistic regression models
26-
| [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 |
30-
| [bayes](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-bayes) | Naive Bayes | Tested | Supervised learning | Contains Gaussian Naive Bayes |
31-
| [ica](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-ica) | Independent component analysis | Tested | Unsupervised learning | Contains FastICA implementation |
32-
| [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 |
33-
| [tsne](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-tsne) | Dimensionality reduction| Tested | Unsupervised learning | Contains exact solution and Barnes-Hut approximation t-SNE |
19+
| Name | Purpose | Status | Category | Notes |
20+
| :-------------------------------------------------------------------------------------------- | :--------------------------------------- | :-------------------- | :-------------------- | :---------------------------------------------------------------------------------------- |
21+
| [bayes](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-bayes/) | Naive Bayes | Tested | Supervised learning | Contains Bernouilli, Gaussian and Multinomial Naive Bayes |
22+
| [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 |
27+
| [ica](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-ica/) | Independent component analysis | Tested | Unsupervised learning | Contains FastICA implementation |
28+
| [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) |
31+
| [logistic](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-logistic/) | Logistic regression | Tested | Partial fit | Builds two-class logistic regression models |
32+
| [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 |
38+
| [tsne](https://github.com/rust-ml/linfa/tree/master/algorithms/linfa-tsne/) | Dimensionality reduction | Tested | Unsupervised learning | Contains exact solution and Barnes-Hut approximation t-SNE |
3439

3540

3641
</div>

0 commit comments

Comments
 (0)