The supervised-learning contract
Training data pairs inputs with labels. A classifier searches for parameters or a comparison rule that maps inputs to labels. The data does not uniquely determine that rule: infinitely many boundaries can memorize a finite sample. The model family and regularization decide which solutions are preferred.
fit + constraint = inductive bias
What the height means
Tall tiles indicate stronger confidence according to the current model. A tall wrong tile is not a contradiction. It is evidence that confidence reflects the model's internal score, not guaranteed truth.
Underfitting
The boundary is too simple for the pattern. Training and test accuracy are both poor. More data alone may not repair a model family that cannot represent the geometry.
Useful fit
The model captures stable structure. Training and test scores are both strong, and their difference remains modest across new samples.
Overfitting
The model follows sample-specific noise. Training accuracy rises while test accuracy stalls or falls, producing a widening generalization gap.