biosphere 0.4.2

Simple, fast random forests.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Allow capital X for arrays.
#![allow(non_snake_case)]
pub use forest::RandomForest;
pub use forest::RandomForestParameters;
pub use tree::{DecisionTree, DecisionTreeParameters, MaxFeatures};
mod forest;
mod tree;
pub mod utils; // This is public for benchmarking only.

#[cfg(test)]
mod testing;