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

pub struct GrowingMetadata {
    pub num_trees_attempted: i64,
    pub num_layers_attempted: i64,
    pub last_layer_node_start: i32,
    pub last_layer_node_end: i32,
}

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.

last_layer_node_start: i32

The start (inclusive) and end (exclusive) ids of the nodes in the latest layer of the latest tree.

last_layer_node_end: i32

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.