Trait MeanAbsoluteError

Source
pub trait MeanAbsoluteError {
    type Output;

    // Required method
    fn mae(&self) -> Self::Output;
}
Expand description

Compute the mean absolute error (MAE) of the object.

Required Associated Types§

Required Methods§

Source

fn mae(&self) -> Self::Output

Implementations on Foreign Types§

Source§

impl<A, S, D> MeanAbsoluteError for ArrayBase<S, D>
where A: Float + FromPrimitive + ScalarOperand, D: Dimension, S: Data<Elem = A>,

Implementors§