fornix 0.4.0

Knowledge storage, retrieval, and graph infrastructure for cognitive systems
Documentation
1
2
3
4
5
6
7
//! Re-exports the Random Forest training API and types.

mod tree;
pub use tree::{build_tree, gini, Node, TreeParams};

mod forest_impl;
pub use forest_impl::{train, ForestParams, RandomForest};