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

pub struct GrowingMetadata {
    pub num_trees_attempted: i64,
    pub num_layers_attempted: i64,
    pub used_handler_ids: Vec<i64>,
}

Fields

num_trees_attempted: i64

Number of trees that we have attempted to build. After pruning, these trees might have been removed.

num_layers_attempted: i64

Number of layers that we have attempted to build. After pruning, these layers might have been removed.

used_handler_ids: Vec<i64>

Sorted list of column handlers that have been used in at least one split so far.

Trait Implementations

impl Clone for GrowingMetadata[src]

impl Debug for GrowingMetadata[src]

impl Default for GrowingMetadata[src]

impl Message for GrowingMetadata[src]

impl PartialEq<GrowingMetadata> for GrowingMetadata[src]

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