Skip to main content

RandomForest

Type Alias RandomForest 

Source
pub type RandomForest<F, L> = EnsembleLearner<DecisionTree<F, L>>;
Expand description

A fitted ensemble of Decision Trees trained on a random subset of features.

Check out EnsembleLearner documentation for more information regarding RandomForest interface.

Aliased Type§

pub struct RandomForest<F, L> {
    pub models: Vec<DecisionTree<F, L>>,
    pub model_features: Vec<Vec<usize>>,
}

Fields§

§models: Vec<DecisionTree<F, L>>§model_features: Vec<Vec<usize>>