[][src]Struct tensorflow_proto::tensorflow::boosted_trees::trees::CategoricalIdSetMembershipBinarySplit

pub struct CategoricalIdSetMembershipBinarySplit {
    pub feature_column: i32,
    pub feature_ids: Vec<i64>,
    pub left_id: i32,
    pub right_id: i32,
}

Split rule for categorical features with a set of feature Ids.

Fields

feature_column: i32

Categorical feature column and Id describing the rule feature ∈ feature_ids.

feature_ids: Vec<i64>

Sorted list of Ids in the set.

left_id: i32

Node children indexing into a contiguous vector of nodes starting from the root.

right_id: i32

Trait Implementations

impl Clone for CategoricalIdSetMembershipBinarySplit[src]

impl Debug for CategoricalIdSetMembershipBinarySplit[src]

impl Default for CategoricalIdSetMembershipBinarySplit[src]

impl Message for CategoricalIdSetMembershipBinarySplit[src]

impl PartialEq<CategoricalIdSetMembershipBinarySplit> for CategoricalIdSetMembershipBinarySplit[src]

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