[][src]Struct tensorflow_proto::tensorflow::tensorforest::LeafStat

pub struct LeafStat {
    pub weight_sum: f32,
    pub leaf_stat: Option<LeafStat>,
}

Fields

weight_sum: f32

The sum of the weights of the training examples that we have seen. This is here, outside of the leaf_stat oneof, because almost all types will want it.

leaf_stat: Option<LeafStat>

Trait Implementations

impl Clone for LeafStat[src]

impl Debug for LeafStat[src]

impl Default for LeafStat[src]

impl Message for LeafStat[src]

impl PartialEq<LeafStat> for LeafStat[src]

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