How do you determine if a 2% eval score drop between model versions is statistically significant?
Same topic, related formats. Practice these next.
Same topic, related formats. Practice these next.
Your eval pipeline shows a 2-percentage-point drop in quality score after a model update. How do you determine whether this is a true regression or random variance? Describe the statistical tools available and what you need to run them.
A 2pp drop is meaningless without a confidence interval on the delta. Use paired tests (bootstrap CI or McNemar), pin the judge so its noise does not masquerade as a regression, and gate per slice.
Imagine weighing yourself before and after a diet on a cheap bathroom scale. The scale wobbles by a pound each time you step on it. If you lost two pounds, is that real or just the scale jittering? You would weigh yourself many times and see whether the average drop is bigger than the wobble. An eval score works the same way. The 2-point drop is your weight change. Your noisy judge and your small test set are the wobbly scale. To trust the drop, you measure the wobble (a confidence interval), and you weigh the same examples on both model versions so you are comparing like for like. If the drop is clearly bigger than the wobble, it is a real regression. If not, it is just the scale.
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example.
Everything important, quickly.
6 min: why a raw delta is uninterpretable, the two noise sources, pinning the judge, paired bootstrap and McNemar, per-slice gating with multiple-comparison correction, effect size versus significance, and fast-feedback versus thorough gates.
Real products, models, and research that use this idea.
What an interviewer would ask next. Try answering before peeking at the approach.
Red flags and common mistakes that signal junior thinking. Click to expand.
Eyeballing a raw 2pp delta and gating on it directly, with no confidence interval, no paired comparison, and a stochastic judge whose own run to run wobble can produce that 2pp out of pure noise.
The night-before-the-interview bullets. Scan these on the way to the call.
Primary sources. Skim if you want the original framing.