Evaluating regression models requires metrics that quantify how close predictions are to actual values, and different metrics capture different aspects of that closeness. Mean Absolute Error treats all prediction errors equally; Root Mean Squared Error penalises large errors disproportionately; R-squared measures how much of the target's variability the model explains relative to a naive baseline. None of these is universally best — the right choice depends entirely on what kinds of errors are most costly in the specific application.
Understanding not just how to compute these metrics but how to interpret them, how they relate to each other, and when each is appropriate is what distinguishes a data scientist who can align model evaluation with business reality from one who reports metrics by rote. This lesson also covers the mean absolute percentage error and median absolute error as alternatives, and introduces the critical practice of comparing model metrics against a naive baseline to establish whether any learning has actually occurred.