pub trait MeanAbsoluteError {
type Output;
// Required method
fn mae(&self) -> Self::Output;
}
Expand description
Compute the mean absolute error (MAE) of the object.
pub trait MeanAbsoluteError {
type Output;
// Required method
fn mae(&self) -> Self::Output;
}
Compute the mean absolute error (MAE) of the object.