[][src]Struct bigml::resource::evaluation::ClassificationResult

pub struct ClassificationResult {
    pub class_names: Vec<String>,
    pub mode: DetailedClassificationResult,
    pub model: DetailedClassificationResult,
    pub random: DetailedClassificationResult,
    // some fields omitted
}

The result of evaluating a classifier.

Fields

class_names: Vec<String>

The names of our classifications.

mode: DetailedClassificationResult

According to BigML, "Measures the performance of the classifier that predicts the mode class for all the instances in the dataset."

model: DetailedClassificationResult

The performance of this model.

random: DetailedClassificationResult

According to BigML, "Measures the performance of the classifier that predicts a random class for all the instances in the dataset."

Trait Implementations

impl Result for ClassificationResult[src]

impl Debug for ClassificationResult[src]

impl Serialize for ClassificationResult[src]

impl<'de> Deserialize<'de> for ClassificationResult[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, 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