Root Mean Squared Error (Rmse)
[!def] Root Mean Squared Error Formula
$$
RMSE = \sqrt{\frac{1}{N} \sum_i (x_i - \hat{x_i})^2}
$$
Pros
- Easy to understand
- Computationally simple
- Easy to differentiate
- Does not penalize the error as much as Mean Squared Error (MSE)
Cons
- Bad at Handling Outliers
- RMSE increases with the size of the test dataset