Picking a cheap but predictive eval to track during training: what do you actually log?
Same topic, related formats. Practice these next.
Same topic, related formats. Practice these next.
Mid-training eval is a triage problem: judge-model evals are too slow to run every checkpoint, raw training loss is misleading, and benchmark suites take hours. Specify a concrete recipe for an in-training eval metric that is cheap enough to run every few hundred steps AND correlates well with end of run downstream quality on the same task. Justify each choice and say what you DON'T trust this proxy for.
Hold out 200 to 500 SFT examples, log token-level cross-entropy on assistant tokens only every few hundred steps, and reserve heavy judge evals for end of run promotion decisions.
Picture a long marathon training plan. You cannot run a full race every week, that is too tiring, and weighing yourself daily does not tell you much. Instead you do a short timed sprint every couple of days on the same track. The sprint takes minutes, the conditions match, and the times move in the same direction as your eventual marathon time. It is not a marathon prediction in absolute terms, but if your sprint times start slipping, you know something is wrong before race day. The held-out wrongness-score check on a small fixed slice of data is that sprint for a training run: short, repeatable, and tightly coupled to the real outcome you care about.
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.
5 min: held-out slice construction + token-level CE on assistant turns + cadence and cost + correlation with downstream quality + cross-task blind spots + when to pair with generation evals + end of run promotion needs heavy evals.
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.
Reading training loss as a proxy for quality. Training loss measures how well the model fits the data it just saw, not how it generalises. The held-out cross-entropy is the cheap fix that respects that difference.
The night-before-the-interview bullets. Scan these on the way to the call.
Primary sources. Skim if you want the original framing.