Example 1 — Spot the overfit model
EasyProblem
Model A: on training, on new data. Model B: on training, on new data. Which is overfit?
Solution
-
The signature of overfitting is a large train-vs-new gap.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Does the model do much better on the data it was trained on than on fresh data?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Compare each model's training score to its new-data score.
The rule is chosen only after the structure matches, so the steps mean something.
-
Model A gap (healthy); Model B gap (memorized).
Keep units, shape, or answer form tied to the story so the work does not become symbol pushing.
-
Check the answer against the original question.
It should fit the mental model — memorizing instead of learning. If it does not, revisit the recognition step before changing the arithmetic.
Answer
Model B is overfit
Takeaway: A big drop from training to new data is the fingerprint of overfitting.