[][src]Struct rusoto_glue::ConfusionMatrix

pub struct ConfusionMatrix {
    pub num_false_negatives: Option<i64>,
    pub num_false_positives: Option<i64>,
    pub num_true_negatives: Option<i64>,
    pub num_true_positives: Option<i64>,
}

The confusion matrix shows you what your transform is predicting accurately and what types of errors it is making.

For more information, see Confusion matrix in Wikipedia.

Fields

num_false_negatives: Option<i64>

The number of matches in the data that the transform didn't find, in the confusion matrix for your transform.

num_false_positives: Option<i64>

The number of nonmatches in the data that the transform incorrectly classified as a match, in the confusion matrix for your transform.

num_true_negatives: Option<i64>

The number of nonmatches in the data that the transform correctly rejected, in the confusion matrix for your transform.

num_true_positives: Option<i64>

The number of matches in the data that the transform correctly found, in the confusion matrix for your transform.

Trait Implementations

impl Clone for ConfusionMatrix[src]

impl Debug for ConfusionMatrix[src]

impl Default for ConfusionMatrix[src]

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

impl PartialEq<ConfusionMatrix> for ConfusionMatrix[src]

impl StructuralPartialEq for ConfusionMatrix[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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

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.