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

pub struct DetailedClassificationResult {
    pub accuracy: f64,
    pub average_f_measure: f64,
    pub average_phi: f64,
    pub average_precision: f64,
    pub average_recall: f64,
    pub confusion_matrix: Vec<Vec<f64>>,
    pub per_class_statistics: Vec<ClassificationPerClassStatistics>,
    // some fields omitted
}

The detailed result of an evaluation using specific criteria.

Fields

accuracy: f64

The portion of instances we classified correctly.

average_f_measure: f64

The average f-measure over all classes.

average_phi: f64

The average phi over all classes.

average_precision: f64

The average precision over all classes.

average_recall: f64

The average recall over all classes.

confusion_matrix: Vec<Vec<f64>>

A list of rows of the confusion matrix for this model.

per_class_statistics: Vec<ClassificationPerClassStatistics>

Statistics for each of the individidual classes.

Trait Implementations

impl Debug for DetailedClassificationResult[src]

impl Serialize for DetailedClassificationResult[src]

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