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

pub struct ClassificationPerClassStatistics {
    pub accuracy: f64,
    pub class_name: String,
    pub f_measure: f64,
    pub phi_coefficient: f64,
    pub precision: f64,
    pub recall: f64,
    // some fields omitted
}

The detailed result of an evaluation using specific criteria.

Fields

accuracy: f64

The portion of instances in this class that were correctly classified.

class_name: String

The the of this class.

f_measure: f64

The harmonic mean of precision and recall.

phi_coefficient: f64

See Wikipedia.

precision: f64

The fraction of positives that were true positives. (TP / (TP + FP))

recall: f64

The number of true positives over the number of actual positives in the dataset. (TP / (TP + FN))

Trait Implementations

impl Debug for ClassificationPerClassStatistics[src]

impl Serialize for ClassificationPerClassStatistics[src]

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