Trait stamm::randforest::VotingMethod [] [src]

pub trait VotingMethod<L> {
    fn voting(&self, tree_results: &[&L]) -> f64;
}

Combine the results of all trees in a random forest in a numeric way

Required Methods

Implementors