RMSE vs MAE — how do you pick?
easy- RMSE = sqrt() — same units as y, penalizes large errors quadratically.
- Use when big errors are disproportionately bad (financial forecasting, energy grids) or when errors are approximately Gaussian.
- — robust to outliers, more interpretable ('average error is X units'), the L1 relative of RMSE.
- RMSE ≥ MAE always; the gap grows with error variance.
- If a few large errors would dominate, prefer MAE (or Huber).
#metrics-regressionPermalink & quiz →