feat: adds train/test split function; fixes bug in random forest

This commit is contained in:
Volodymyr Orlov
2020-09-13 16:23:30 -07:00
parent 1920f9cd0b
commit d28f13d849
9 changed files with 187 additions and 10 deletions
+1
View File
@@ -83,6 +83,7 @@ pub mod linear;
pub mod math;
/// Functions for assessing prediction error.
pub mod metrics;
pub mod model_selection;
/// Supervised neighbors-based learning methods
pub mod neighbors;
pub(crate) mod optimization;