Struct aws_sdk_rekognition::model::EvaluationResult
source · [−]#[non_exhaustive]pub struct EvaluationResult { /* private fields */ }Expand description
The evaluation results for the training of a model.
Implementations
sourceimpl EvaluationResult
impl EvaluationResult
sourcepub fn f1_score(&self) -> Option<f32>
pub fn f1_score(&self) -> 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.
sourceimpl EvaluationResult
impl EvaluationResult
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EvaluationResult.
Trait Implementations
sourceimpl Clone for EvaluationResult
impl Clone for EvaluationResult
sourcefn clone(&self) -> EvaluationResult
fn clone(&self) -> EvaluationResult
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for EvaluationResult
impl Debug for EvaluationResult
sourceimpl PartialEq<EvaluationResult> for EvaluationResult
impl PartialEq<EvaluationResult> for EvaluationResult
sourcefn eq(&self, other: &EvaluationResult) -> bool
fn eq(&self, other: &EvaluationResult) -> bool
impl StructuralPartialEq for EvaluationResult
Auto Trait Implementations
impl RefUnwindSafe for EvaluationResult
impl Send for EvaluationResult
impl Sync for EvaluationResult
impl Unpin for EvaluationResult
impl UnwindSafe for EvaluationResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more