This six-page cheat sheet is shared with Part 4 — Evaluation Metrics. Pages 1–5 (foundations, classification, regression, probability, clustering) belong to Part 4; Page 6 — Model validation is the focus of this post and the reason the cheat sheet lives here too.
Page 1 · Foundations
The setup behind every evaluation decision: what you're measuring, what kind of problem you have, and the data splits you'll need.
Page 2 · Classification metrics
How to judge a classifier, especially when classes are imbalanced. The confusion matrix is the foundation; every metric is just a different ratio of its four cells.
Page 3 · Regression / scoring metrics
Measuring numeric prediction error. Every regression metric is a different way of squashing the residual vector into one number.
Page 4 · Probability-estimation metrics
Evaluating scores and thresholds. When the model outputs a probability instead of a label, where you put the threshold is its own decision.
Page 5 · Clustering evaluation
Judging structure without labels. Clustering metrics measure how compact your clusters are and how distinct they are from one another.
Page 6 · Model validation / generalization — the Part 5 page
Page 6 is the focus of this post. Checking whether performance holds up on new data — model problems, bias-variance, cross-validation, bootstrap, significance, and drift.