#[non_exhaustive]pub struct FlywheelModelEvaluationMetrics { /* private fields */ }Expand description
The evaluation metrics associated with the evaluated model.
Implementations§
source§impl FlywheelModelEvaluationMetrics
impl FlywheelModelEvaluationMetrics
sourcepub fn average_f1_score(&self) -> Option<f64>
pub fn average_f1_score(&self) -> Option<f64>
The average F1 score from the evaluation metrics.
sourcepub fn average_precision(&self) -> Option<f64>
pub fn average_precision(&self) -> Option<f64>
Average precision metric for the model.
sourcepub fn average_recall(&self) -> Option<f64>
pub fn average_recall(&self) -> Option<f64>
Average recall metric for the model.
sourcepub fn average_accuracy(&self) -> Option<f64>
pub fn average_accuracy(&self) -> Option<f64>
Average accuracy metric for the model.
source§impl FlywheelModelEvaluationMetrics
impl FlywheelModelEvaluationMetrics
sourcepub fn builder() -> FlywheelModelEvaluationMetricsBuilder
pub fn builder() -> FlywheelModelEvaluationMetricsBuilder
Creates a new builder-style object to manufacture FlywheelModelEvaluationMetrics.
Trait Implementations§
source§impl Clone for FlywheelModelEvaluationMetrics
impl Clone for FlywheelModelEvaluationMetrics
source§fn clone(&self) -> FlywheelModelEvaluationMetrics
fn clone(&self) -> FlywheelModelEvaluationMetrics
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl PartialEq<FlywheelModelEvaluationMetrics> for FlywheelModelEvaluationMetrics
impl PartialEq<FlywheelModelEvaluationMetrics> for FlywheelModelEvaluationMetrics
source§fn eq(&self, other: &FlywheelModelEvaluationMetrics) -> bool
fn eq(&self, other: &FlywheelModelEvaluationMetrics) -> bool
This method tests for
self and other values to be equal, and is used
by ==.