Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions DIRECTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@
* [Naive Bayes](https://github.com/TheAlgorithms/Rust/blob/master/src/machine_learning/naive_bayes.rs)
* [Perceptron](https://github.com/TheAlgorithms/Rust/blob/master/src/machine_learning/perceptron.rs)
* [Principal Component Analysis](https://github.com/TheAlgorithms/Rust/blob/master/src/machine_learning/principal_component_analysis.rs)
* [Random Forest](https://github.com/TheAlgorithms/Rust/blob/master/src/machine_learning/random_forest.rs)
* [Support Vector Classifier](https://github.com/TheAlgorithms/Rust/blob/master/src/machine_learning/support_vector_classifier.rs)
* Loss Function
* [Average Margin Ranking Loss](https://github.com/TheAlgorithms/Rust/blob/master/src/machine_learning/loss_function/average_margin_ranking_loss.rs)
Expand Down
2 changes: 2 additions & 0 deletions src/machine_learning/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ mod naive_bayes;
mod optimization;
mod perceptron;
mod principal_component_analysis;
mod random_forest;
mod support_vector_classifier;

pub use self::cholesky::cholesky;
Expand All @@ -25,4 +26,5 @@ pub use self::naive_bayes::naive_bayes;
pub use self::optimization::{gradient_descent, Adam};
pub use self::perceptron::{classify, perceptron};
pub use self::principal_component_analysis::principal_component_analysis;
pub use self::random_forest::random_forest;
pub use self::support_vector_classifier::{Kernel, SVCError, SVC};
Loading