[][src]Struct smartcore::ensemble::random_forest_regressor::RandomForestRegressorParameters

pub struct RandomForestRegressorParameters {
    pub max_depth: Option<u16>,
    pub min_samples_leaf: usize,
    pub min_samples_split: usize,
    pub n_trees: usize,
    pub m: Option<usize>,
}

Parameters of the Random Forest Regressor Some parameters here are passed directly into base estimator.

Fields

max_depth: Option<u16>

Tree max depth. See Decision Tree Regressor

min_samples_leaf: usize

The minimum number of samples required to be at a leaf node. See Decision Tree Regressor

min_samples_split: usize

The minimum number of samples required to split an internal node. See Decision Tree Regressor

n_trees: usize

The number of trees in the forest.

m: Option<usize>

Number of random sample of predictors to use as split candidates.

Implementations

impl RandomForestRegressorParameters[src]

pub fn with_max_depth(self, max_depth: u16) -> Self[src]

Tree max depth. See Decision Tree Classifier

pub fn with_min_samples_leaf(self, min_samples_leaf: usize) -> Self[src]

The minimum number of samples required to be at a leaf node. See Decision Tree Classifier

pub fn with_min_samples_split(self, min_samples_split: usize) -> Self[src]

The minimum number of samples required to split an internal node. See Decision Tree Classifier

pub fn with_n_trees(self, n_trees: usize) -> Self[src]

The number of trees in the forest.

pub fn with_m(self, m: usize) -> Self[src]

Number of random sample of predictors to use as split candidates.

Trait Implementations

impl Clone for RandomForestRegressorParameters[src]

impl Debug for RandomForestRegressorParameters[src]

impl Default for RandomForestRegressorParameters[src]

impl<'de> Deserialize<'de> for RandomForestRegressorParameters[src]

impl Serialize for RandomForestRegressorParameters[src]

impl<T: RealNumber, M: Matrix<T>> SupervisedEstimator<M, <M as BaseMatrix<T>>::RowVector, RandomForestRegressorParameters> for RandomForestRegressor<T>[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,