Skip to content

Commit 94b3e8e

Browse files
committed
fixed long line in loss_functions.py
1 parent b71af25 commit 94b3e8e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

machine_learning/loss_functions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,8 @@ def mean_squared_error(y_true: np.ndarray, y_pred: np.ndarray) -> float:
262262

263263
def mean_absolute_error(y_true: np.ndarray, y_pred: np.ndarray) -> float:
264264
"""
265-
Calculates the Mean Absolute Error (MAE) between ground truth (observed) and predicted values.
265+
Calculates the Mean Absolute Error (MAE) between ground truth (observed)
266+
and predicted values.
266267
267268
MAE measures the absolute difference between true values and predicted values.
268269

0 commit comments

Comments
 (0)