pub trait MeanSquaredError {
type Output;
// Required method
fn mse(&self) -> Self::Output;
}
Expand description
Compute the mean squared error (MSE) of the object.
pub trait MeanSquaredError {
type Output;
// Required method
fn mse(&self) -> Self::Output;
}
Compute the mean squared error (MSE) of the object.