[][src]Struct bigml::resource::ensemble::Ensemble

pub struct Ensemble {
    pub common: ResourceCommon,
    pub resource: Id<Ensemble>,
    pub status: GenericStatus,
    pub ensemble: EnsembleInfo,
    pub importance: HashMap<String, f64>,
    // some fields omitted
}

An ensemble of multiple predictive models.

TODO: Still lots of missing fields.

Fields

common: ResourceCommon

Common resource information. These fields will be serialized at the top-level of this structure by serde.

resource: Id<Ensemble>

The ID of this resource.

status: GenericStatus

The current status of this ensemble.

ensemble: EnsembleInfo

Extra information about this ensemble. Does not appear to be documented in the official API.

TODO: This may need to be wrapped in Option to handle the early stages of resource creation, when not all fields are present.

importance: HashMap<String, f64>

Maps BigML field IDs to average importance per field.

TODO: This may need to be wrapped in Option to handle the early stages of resource creation, when not all fields are present.

Trait Implementations

impl Resource for Ensemble[src]

impl Clone for Ensemble[src]

impl Debug for Ensemble[src]

impl Serialize for Ensemble[src]

impl<'de> Deserialize<'de> for Ensemble[src]

Auto Trait Implementations

Blanket Implementations

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 = !

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err