Zenaique

Spot the errors in this plan to distill reasoning into a 7B student

Spot the error·Hard·4.0 · 0·~2 min·Asked atComet MlZed
Attempt it

Click any words you think contain an error. Click again to unmark.

Mark at least one word to submit.
TL;DR

All three claims invert published findings: trace SFT is the proven recipe, direct RL on small models underperforms distillation, and the student is bounded near the teacher unless extended with new data or RL.

Memory aid
Sign in to see the mnemonic that makes this stick.
Easy to grasp

Think of cooking school. Claim one says watching a master chef and copying is just memorizing recipes. In reality, that is how you learn the craft. Claim two says a beginner with a stove and a cookbook will figure out new dishes on their own as well as the master did. In reality, the beginner needs the demonstrations first. Claim three says the student will end up a better chef than their teacher just by copying. In reality, copying gets you close to the teacher but not past them. Each claim sounds confident, but each one inverts what actually happened when researchers tried it on real reasoning models.

Key concepts

Concept explanation~2 min read

Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.

Spot-the-error questions on reasoning distillation are common in 2026 senior screens because the topic has accumulated a layer of confident folk wisdom that is the opposite of what the published experiments showed. The plan in this question is a compressed version of that folk wisdom: three confident clauses, each one cleanly contradicted by the DeepSeek-R1 ablation table.

This explanation walks each error through its specific contradiction, the mechanism behind why the intuition fails, and what the corrected plan looks like in practice. The aim is not just to refute the three claims but to leave you with the right mental model for why distillation works and where its ceiling actually sits.

Clause one: SFT on traces is not memorization

The plan dismisses trace SFT as 'supervised imitation only memorizes.' This frames imitation learning as a lookup table, which mischaracterizes both the data and the training objective.

Reasoning traces are long, conditional on the input problem, and structurally varied. A single problem can yield ten different valid traces with different branching, backtracking, and verification patterns. Memorization would require the model to store the mapping from input to output verbatim, but at the trace lengths involved (often 2,000 to 20,000 tokens), and at the dataset scales involved (hundreds of thousands of traces), the model does not have the parameter count for verbatim storage of more than a small fraction of the data. What it stores is the conditional pattern.

The held-out evaluation backs this up. The R1 distilled 7B reaches strong AIME 2024 numbers, but AIME 2024 problems were not in the teacher's training set or the distillation trace set in any verbatim form. If the model were memorizing, those held-out scores would be near zero. They are not; they beat much larger non-reasoning models.

The correct mental model is policy transfer. The teacher discovered a reasoning policy through expensive RL. The traces are samples from that policy. SFT compresses the policy into the student's weights by next-token prediction. The student then applies the policy to new inputs, including held-out benchmarks.

Diagnostic check: if the plan's claim were true, distilled-student AIME numbers should crash on held-out years (AIME 2025 or 2026 problems released after the trace collection). They do not; they degrade only modestly, which is exactly the signature of policy transfer rather than memorization.

Clause two: small models do not discover reasoning under direct RL
Clause three: imitation is bounded by the teacher
The corrected plan and how to defend it
Common false claims about reasoning distillation
Sign in to unlock the full deep dive.

Situations where this technique stops working.

Sign in to see when this approach fails.

2–4 min · Everything important, quickly.

Sign in to see the quick scan of the deep dive.

Real products, models, and research that use this idea.

  • DeepSeek-R1-Distill-Qwen-7B and -Llama-8B (January 2025) ship as SFT-only distilled reasoning models; their numbers are the empirical refutation of the plan.
  • The s1 paper (Muennighoff et al., 2025) demonstrated that surpassing-style gains require test-time scaling on top of distillation, not pure SFT.
Sign in to see more production examples.

What an interviewer would ask next. Try answering before peeking at the approach.

QHow would you detect the moment in training where GRPO advantage signal collapses to noise on a small base?
A

Track per-group reward variance and the fraction of groups containing at least one correct rollout; once that fraction drops below a threshold (often 10 to 20 percent), the gradient is mostly entropy-driven and you should fall back to SFT or curriculum simplification.

2 more follow-ups an interviewer would ask next. Sign in to reveal them.

Red flags & common mistakes

The phrases that signal junior thinking. Click to expand.

Most common mistake

Reading the plan as internally consistent because each clause sounds intuitive in isolation; the published ablation contradicts each one specifically.

Sign in to see all red flags and common mistakes.

60 second bullets to scan on the way to the call.

  • Why SFT on reasoning traces is policy transfer, not memorization

  • What the R1 paper's direct-RL-on-7B ablation showed

Sign in to unlock the revision sheet.

Primary sources. Browse if you want the original framing.

Similar questions

Same topic, related formats. Practice these next.

4 curated
Next question
Match each RL algorithm trait to PPO or GRPO.
Match pairs·Medium