pub fn neg_mean_squared_error(
    outputs: &Matrix<f64>,
    targets: &Matrix<f64>
) -> f64
Expand description

Returns the additive inverse of the mean-squared-error of the outputs. So higher is better, and the returned value is always negative.