Skip to content

Commit 38d8616

Browse files
Add RMSE and Log-Cosh loss functions for the problem #13379
1 parent 7555469 commit 38d8616

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

machine_learning/loss_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ def root_mean_squared_error(y_true: np.ndarray, y_pred: np.ndarray) -> float:
673673
674674
RMSE = sqrt( (1/n) * Σ(y_true - y_pred)^2 )
675675
676-
Reference: https://en.wikipedia.org/wiki/Mean_squared_error#Root-mean-square_error
676+
Reference: https://en.wikipedia.org/wiki/Root-mean-square_deviation
677677
678678
Parameters:
679679
- y_true: The true values (ground truth)

0 commit comments

Comments
 (0)