[][src]Struct smartcore::tree::decision_tree_regressor::DecisionTreeRegressorParameters

pub struct DecisionTreeRegressorParameters {
    pub max_depth: Option<u16>,
    pub min_samples_leaf: usize,
    pub min_samples_split: usize,
}

Parameters of Regression Tree

Fields

max_depth: Option<u16>

The maximum depth of the tree.

min_samples_leaf: usize

The minimum number of samples required to be at a leaf node.

min_samples_split: usize

The minimum number of samples required to split an internal node.

Implementations

impl DecisionTreeRegressorParameters[src]

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

The maximum depth of the tree.

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.

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

The minimum number of samples required to split an internal node.

Trait Implementations

impl Clone for DecisionTreeRegressorParameters[src]

impl Debug for DecisionTreeRegressorParameters[src]

impl Default for DecisionTreeRegressorParameters[src]

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

impl Serialize for DecisionTreeRegressorParameters[src]

impl<T: RealNumber, M: Matrix<T>> SupervisedEstimator<M, <M as BaseMatrix<T>>::RowVector, DecisionTreeRegressorParameters> for DecisionTreeRegressor<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>,