File tree Expand file tree Collapse file tree 3 files changed +447
-0
lines changed
Expand file tree Collapse file tree 3 files changed +447
-0
lines changed Original file line number Diff line number Diff line change 215215 * [ Naive Bayes] ( https://github.com/TheAlgorithms/Rust/blob/master/src/machine_learning/naive_bayes.rs )
216216 * [ Perceptron] ( https://github.com/TheAlgorithms/Rust/blob/master/src/machine_learning/perceptron.rs )
217217 * [ Principal Component Analysis] ( https://github.com/TheAlgorithms/Rust/blob/master/src/machine_learning/principal_component_analysis.rs )
218+ * [ Random Forest] ( https://github.com/TheAlgorithms/Rust/blob/master/src/machine_learning/random_forest.rs )
218219 * [ Support Vector Classifier] ( https://github.com/TheAlgorithms/Rust/blob/master/src/machine_learning/support_vector_classifier.rs )
219220 * Loss Function
220221 * [ Average Margin Ranking Loss] ( https://github.com/TheAlgorithms/Rust/blob/master/src/machine_learning/loss_function/average_margin_ranking_loss.rs )
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ mod naive_bayes;
99mod optimization;
1010mod perceptron;
1111mod principal_component_analysis;
12+ mod random_forest;
1213mod support_vector_classifier;
1314
1415pub use self :: cholesky:: cholesky;
@@ -25,4 +26,5 @@ pub use self::naive_bayes::naive_bayes;
2526pub use self :: optimization:: { gradient_descent, Adam } ;
2627pub use self :: perceptron:: { classify, perceptron} ;
2728pub use self :: principal_component_analysis:: principal_component_analysis;
29+ pub use self :: random_forest:: random_forest;
2830pub use self :: support_vector_classifier:: { Kernel , SVCError , SVC } ;
You can’t perform that action at this time.
0 commit comments