[][src]Struct rusoto_rekognition::EvaluationResult

pub struct EvaluationResult {
    pub f1_score: Option<f32>,
    pub summary: Option<Summary>,
}

The evaluation results for the training of a model.

Fields

f1_score: Option<f32>

The F1 score for the evaluation of all labels. The F1 score metric evaluates the overall precision and recall performance of the model as a single value. A higher value indicates better precision and recall performance. A lower score indicates that precision, recall, or both are performing poorly.

summary: Option<Summary>

The S3 bucket that contains the training summary.

Trait Implementations

impl Clone for EvaluationResult[src]

impl Debug for EvaluationResult[src]

impl Default for EvaluationResult[src]

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

impl PartialEq<EvaluationResult> for EvaluationResult[src]

impl StructuralPartialEq for EvaluationResult[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.