Lukas' Notes

machine-learning statistics regression

Definition

Root Mean Squared Error

The root mean squared error (RMSE) is the square root of the mean squared error. For targets and predictions with residuals ,

Because MSE squares the target’s units, RMSE takes the square root to restore them: predicting a price in euros, MSE is in euros squared, while RMSE is in euros. RMSE therefore reads on the same scale as the target, which is why it is the more interpretable evaluation metric for regression. The square root preserves MSE’s disproportionate penalty on large residuals — an error of size still contributes to the sum, twice the contribution of an error of size — so RMSE is dominated by large errors just as MSE is.

Relation to MSE

RMSE is a monotone increasing function of MSE:

The two metrics rank models identically (the squaring is preserved through the root), so the choice between them is one of units and interpretability, not of optimisation.