Fix signature of metrics tests

This commit is contained in:
Lorenzo (Mec-iS)
2022-11-03 13:40:54 +00:00
committed by morenol
parent e09c4ba724
commit 19f3a2fcc0
7 changed files with 23 additions and 23 deletions
+1 -1
View File
@@ -14,7 +14,7 @@
//! let y_pred: Vec<f64> = vec![3., -0.5, 2., 7.];
//! let y_true: Vec<f64> = vec![2.5, 0.0, 2., 8.];
//!
//! let mse: f64 = MeanAbsoluteError::new().get_score(&y_pred, &y_true);
//! let mse: f64 = MeanAbsoluteError::new().get_score( &y_true, &y_pred);
//! ```
//!
//! <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>