pub struct EvaluationMetrics {
pub arima_forecasting_metrics: Option<ArimaForecastingMetrics>,
pub binary_classification_metrics: Option<BinaryClassificationMetrics>,
pub clustering_metrics: Option<ClusteringMetrics>,
pub dimensionality_reduction_metrics: Option<DimensionalityReductionMetrics>,
pub multi_class_classification_metrics: Option<MultiClassClassificationMetrics>,
pub ranking_metrics: Option<RankingMetrics>,
pub regression_metrics: Option<RegressionMetrics>,
}
Expand description
Evaluation metrics of a model. These are either computed on all training data or just the eval data based on whether eval data was used during training. These are not present for imported models.
This type is not used in any activity, and only used as part of another schema.
Fields§
§arima_forecasting_metrics: Option<ArimaForecastingMetrics>
Populated for ARIMA models.
binary_classification_metrics: Option<BinaryClassificationMetrics>
Populated for binary classification/classifier models.
clustering_metrics: Option<ClusteringMetrics>
Populated for clustering models.
dimensionality_reduction_metrics: Option<DimensionalityReductionMetrics>
Evaluation metrics when the model is a dimensionality reduction model, which currently includes PCA.
multi_class_classification_metrics: Option<MultiClassClassificationMetrics>
Populated for multi-class classification/classifier models.
ranking_metrics: Option<RankingMetrics>
Populated for implicit feedback type matrix factorization models.
regression_metrics: Option<RegressionMetrics>
Populated for regression models and explicit feedback type matrix factorization models.
Trait Implementations§
Source§impl Clone for EvaluationMetrics
impl Clone for EvaluationMetrics
Source§fn clone(&self) -> EvaluationMetrics
fn clone(&self) -> EvaluationMetrics
Returns a duplicate 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 Debug for EvaluationMetrics
impl Debug for EvaluationMetrics
Source§impl Default for EvaluationMetrics
impl Default for EvaluationMetrics
Source§fn default() -> EvaluationMetrics
fn default() -> EvaluationMetrics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EvaluationMetrics
impl<'de> Deserialize<'de> for EvaluationMetrics
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for EvaluationMetrics
impl Serialize for EvaluationMetrics
impl Part for EvaluationMetrics
Auto Trait Implementations§
impl Freeze for EvaluationMetrics
impl RefUnwindSafe for EvaluationMetrics
impl Send for EvaluationMetrics
impl Sync for EvaluationMetrics
impl Unpin for EvaluationMetrics
impl UnwindSafe for EvaluationMetrics
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more