pub trait MeanSquaredError {
    type Output;
    // Required method
    fn mse(&self) -> Self::Output;
}Expand description
A trait for computing the mean squared error of a tensor or array
pub trait MeanSquaredError {
    type Output;
    // Required method
    fn mse(&self) -> Self::Output;
}A trait for computing the mean squared error of a tensor or array