pub enum MlRegressionMetric {
Mae,
Mse,
Rmse,
R2,
Mape,
Smape,
MedianAbsoluteError,
}Variants§
Implementations§
Source§impl MlRegressionMetric
impl MlRegressionMetric
pub const fn direction(self) -> MlMetricDirection
Trait Implementations§
Source§impl Clone for MlRegressionMetric
impl Clone for MlRegressionMetric
Source§fn clone(&self) -> MlRegressionMetric
fn clone(&self) -> MlRegressionMetric
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 MlRegressionMetric
impl Debug for MlRegressionMetric
Source§impl Display for MlRegressionMetric
impl Display for MlRegressionMetric
Source§impl FromStr for MlRegressionMetric
impl FromStr for MlRegressionMetric
Source§impl Hash for MlRegressionMetric
impl Hash for MlRegressionMetric
Source§impl Ord for MlRegressionMetric
impl Ord for MlRegressionMetric
Source§fn cmp(&self, other: &MlRegressionMetric) -> Ordering
fn cmp(&self, other: &MlRegressionMetric) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MlRegressionMetric
impl PartialEq for MlRegressionMetric
Source§impl PartialOrd for MlRegressionMetric
impl PartialOrd for MlRegressionMetric
impl Copy for MlRegressionMetric
impl Eq for MlRegressionMetric
impl StructuralPartialEq for MlRegressionMetric
Auto Trait Implementations§
impl Freeze for MlRegressionMetric
impl RefUnwindSafe for MlRegressionMetric
impl Send for MlRegressionMetric
impl Sync for MlRegressionMetric
impl Unpin for MlRegressionMetric
impl UnsafeUnpin for MlRegressionMetric
impl UnwindSafe for MlRegressionMetric
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