Root Mean Squared Error (RMSE)#
The square root of mean squared error, in the target’s units.
Important
✨ AI-generated content. This page was written with the assistance of an AI language model and is provided as a learning aid. Despite careful review, it may still contain mistakes, omissions, or out-of-date information. Whether you are new to the topic, a team lead, or a senior practitioner, treat it as a starting point rather than an authoritative reference: read it critically and independently verify anything you act on (code, commands, figures, and factual claims) against official documentation and primary sources before relying on it.
What it is#
Root mean squared error is the square root of the MSE:
The root returns the error to the target’s original units, so it reads as a typical error magnitude.
How it behaves#
RMSE keeps MSE’s heavy penalty on large errors and its outlier sensitivity, but is far more interpretable — an RMSE of 5 means predictions are off by about 5 units on average. It ranks models identically to MSE, is always ≥ the MAE, and the RMSE–MAE gap widens as the error variance grows.
When to use it#
Report RMSE for regression when large errors are costly and you want a number in the data’s units; pair it with R² for a scale-free complement. Like R², it also falls as you add variables, so watch overfitting.
Theme: Model Evaluation & Uncertainty · All terminology
Hint
Mind map — connected ideas
Mean Squared Error (MSE) · Mean Absolute Percentage Error (MAPE) · R² (R-squared) · Loss Functions · Regression Models · Average Absolute Error (AAE)
Hint
More in Model Evaluation & Uncertainty
Average Absolute Error (AAE) · Baseline Heuristics · Bootstrap · Bootstrap Confidence Intervals (CIs) · Coverage · Cramér’s V · DeLong’s Test · KS Statistic (Kolmogorov–Smirnov Statistic) · Likelihood Ratio (LR) · Mann–Whitney U Test (also called the Wilcoxon rank-sum test) · MASE (Mean Absolute Scaled Error) · Mean Absolute Error (MAE) · Mean Absolute Percentage Error (MAPE) · Mean Squared Error (MSE)
See also
Source article Adapted (context, re-expressed) in our own words from: Root Mean Squared Error (RMSE) (insightful-data-lab.com).