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