Struct tract_onnx_opl::ml::tree::TreeEnsemble[][src]

pub struct TreeEnsemble {
    pub data: TreeEnsembleData,
    pub max_used_feature: usize,
    pub n_classes: usize,
    pub aggregate_fn: Aggregate,
}

Fields

data: TreeEnsembleDatamax_used_feature: usizen_classes: usizeaggregate_fn: Aggregate

Implementations

impl TreeEnsemble[src]

pub fn build(
    data: TreeEnsembleData,
    max_used_feature: usize,
    n_classes: usize,
    aggregate_fn: Aggregate
) -> TractResult<Self>
[src]

pub fn n_classes(&self) -> usize[src]

pub fn check_n_features(&self, n_features: usize) -> TractResult<()>[src]

pub fn eval<'i, I, T>(&self, input: I) -> TractResult<ArrayD<f32>> where
    I: Into<ArrayViewD<'i, T>>,
    T: AsPrimitive<f32>, 
[src]

Trait Implementations

impl Clone for TreeEnsemble[src]

impl Debug for TreeEnsemble[src]

impl Hash for TreeEnsemble[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> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Any + Send + Sync

impl<T> DynClone for T where
    T: Clone
[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.