Underfitting (Intuition) Math Example 3
Follow the full solution, then compare it with the other examples linked below.
Example 3
easyA student uses (the mean) to predict all exam scores. Training . Explain why this represents maximum underfitting.
Solution
- 1 The 'model' makes the same prediction for everyone โ ignores all predictors
- 2 : the model explains 0% of score variation โ worst possible fit (besides being negative)
- 3 This is maximum underfitting: the simplest possible model, capturing no structure at all
- 4 Any model using actual predictors should outperform this baseline
Answer
Predicting the mean for all is maximum underfitting (Rยฒ=0); it uses no information from predictors.
The mean-only model is the baseline (null model) in regression. measures how much better any model does compared to this baseline. A means the model is no better than ignoring all predictors.
About Underfitting (Intuition)
Underfitting occurs when a model is too simple to capture the true pattern in the data, performing poorly on both training data and new data.
Learn more about Underfitting (Intuition) โMore Underfitting (Intuition) Examples
Example 1 easy
A scatter plot shows a clear U-shaped relationship between [formula] and [formula]. A linear model i
Example 2 mediumCompare two regression models on the same data: Model 1 (linear): training [formula], test [formula]
Example 4 hardA linear model for time-series stock prices has high residuals for all time periods. Identify this a