Holdout, k-Fold, LOO, Bootstrap: Estimating an Estimator
The same data and the same model give very different accuracy numbers — see each scheme's sampling distribution against the truth.
Controls
Small n is where the schemes disagree most.
The truth is quadratic; degree 1 underfits, 9 overfits.
Irreducible MSE = σ² = 2.25
Every result on this page is a deterministic function of the seed and the controls.
One study
A degree-d polynomial fitted to n points from a quadratic truth.
Sampling distribution: 70/30 holdout
The estimate you would report, across 120 independent studies.
All schemes compared
Mean estimate ± 1 SD across studies.
- 2.70 ± 1.27 — 70/30 holdout
- 2.65 ± 0.72 — 5-fold CV
- 2.58 ± 0.70 — 10-fold CV
- 2.55 ± 0.63 — Leave-one-out
- 2.60 ± 0.69 — Bootstrap .632
Every scheme returns a number close enough to look authoritative. The question is its sampling distribution: holdout is nearly unbiased but wide, leave-one-out is narrow but correlated across folds, and the .632 bootstrap trades a little bias for the smallest spread. Choose on total error, not on bias alone.
