[][src]Struct tensorflow_proto::tensorflow::boosted_trees::learner::TreeConstraintsConfig

pub struct TreeConstraintsConfig {
    pub max_tree_depth: u32,
    pub min_node_weight: f32,
    pub max_number_of_unique_feature_columns: i64,
}

Tree constraints config.

Fields

max_tree_depth: u32

Maximum depth of the trees. The default value is 6 if not specified.

min_node_weight: f32

Min hessian weight per node.

max_number_of_unique_feature_columns: i64

Maximum number of unique features used in the tree. Zero means there is no limit.

Trait Implementations

impl Clone for TreeConstraintsConfig[src]

impl Debug for TreeConstraintsConfig[src]

impl Default for TreeConstraintsConfig[src]

impl Message for TreeConstraintsConfig[src]

impl PartialEq<TreeConstraintsConfig> for TreeConstraintsConfig[src]

impl StructuralPartialEq for TreeConstraintsConfig[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> 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.