Why Standard Fine-Tuning Hits a Wall
Supervised fine-tuning (SFT) teaches a model to imitate correct answers, but it has a hard ceiling: the model can only be as good as the human-written demonstrations it trains on. For tasks like multi-step math or formal verification, those demonstrations are expensive to produce and often wrong. More importantly, SFT gives the model no incentive to think longer when a problem is hard — it just pattern-matches to whatever token sequence it has seen.
Reinforcement learning (RL) breaks this ceiling by replacing imitation with outcome-based feedback. Instead of saying "write exactly this", RL says "try things, get a reward if the final answer is right, adjust". The model can discover reasoning strategies no human annotator bothered to write down — including strategies that look very different from standard chain-of-thought.
