Each of these metrics gives insight into how well a model’s predictions align with actual values, though they each handle errors in different ways.

<aside> 📢

Formula

$\text{Actual Value} = y_i$

$\text{Predicted Value} = \hat{y_p}$

$\text{Absolute (x)}= |x|$

$\text{Mean} = \bar{x} = \frac{1}{n} \sum_{i=1}^{n} x_i$

$\text{Sum} = \sum_{i=1}^{n} i$

</aside>

MAE vs MSE vs RMSE

  1. Mean Absolute Error (MAE)
  2. Mean Squared Error (MSE)
  3. Root Mean Squared Error (RMSE)

Why Do You Need These Metrics?

What is a Good Score for These Metrics?

What constitutes a “good” score really depends on:

Rule of Thumb:

Why would we used MSE, if RMSE exist?