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

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 resource information. These fields will be serialized at the top-level of this structure by serde.

The ID of this resource.

The current status of this ensemble.

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.

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 Clone for Ensemble
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Ensemble
[src]

Formats the value using the given formatter. Read more

impl Resource for Ensemble
[src]

The prefix used for all IDs of this type.

The URL path used to create a new resource of this type.

Fields shared between all resource types. These are "flattened" into the top-level of the JSON version of this resource. Read more

The ID of this resource.

The status code for this resource. Read more

Auto Trait Implementations

impl Send for Ensemble

impl Sync for Ensemble