Model Error (Training)
(Regression accuracy metrics)Regression accuracy metrics
What it is: A set of metrics showing how well the model fits the training data.
How to use it:
- R² (Coefficient of Determination): closer to 1 means the model explains more variance in the data, but it does not reflect the absolute size of errors.
- RMSE, MSE, MAE, MEDAE: smaller values mean smaller prediction errors; RMSE/MSE emphasize large errors more strongly.
- Do not rely on R² alone—combine it with error metrics to get a complete picture of accuracy.
Why it matters:
- Checks whether the model has learned meaningful patterns from the training data.
- Identifies if errors are small enough to make predictions useful for decision-making.
Limitations:
- Training error alone cannot detect overfitting; a model may perform well on training data but fail on new data.
- R² can be misleading: it ignores error size, can appear high even with practically large errors, and can even be negative in cross-validation.
- R² assumes a roughly linear relationship between predictions and true values—when relationships are non-linear, it may underestimate performance.
- R² also does not reveal systematic bias (e.g., consistent under- or over-prediction).