[][src]Struct tensorflow_proto::tensorflow::decision_trees::Ensemble

pub struct Ensemble {
    pub members: Vec<Member>,
    pub additional_data: Vec<Any>,
    pub combination_technique: Option<CombinationTechnique>,
}

An ordered sequence of models. This message can be used to express bagged or boosted models, as well as custom ensembles.

Fields

members: Vec<Member>

A higher id for more readable printing.

additional_data: Vec<Any>combination_technique: Option<CombinationTechnique>

The presence of a certain combination_technique indicates how to combine the outputs of member models in order to compute the ensemble's output.

Trait Implementations

impl Clone for Ensemble[src]

impl Debug for Ensemble[src]

impl Default for Ensemble[src]

impl Message for Ensemble[src]

impl PartialEq<Ensemble> for Ensemble[src]

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