On-Policy Delta Distillation
This paper introduces On-Policy Delta Distillation (OPD), a novel post-training method for reinforcement learning that leverages a "delta signal"—representing the difference between a teacher model and its base prior to reasoning tuning—to more effectively transfer reasoning capabilities and achieve strong performance across mathematics, science, and code benchmarks with minimal post-training.
Original paper licensed under CC BY 4.0 (http://creativecommons.org/licenses/by/4.0/). This is an AI-generated explanation of the paper below. It is not written or endorsed by the authors. For technical accuracy, refer to the original paper. Read full disclaimer
Imagine a world where computers are like giant, hungry libraries that have read almost every book ever written. These libraries, called Large Language Models (LLMs), are incredibly smart at guessing the next word in a sentence. But just knowing how to finish a sentence isn't enough to solve a tricky math problem or debug a broken computer program. To get really good at those tasks, we need to teach them how to think.
Think of this process like training a student. First, the student reads a massive library (pre-training) to learn the basics of language. Then, a teacher comes in to give them specific lessons on how to solve puzzles (post-training). Usually, teachers use two main methods: they either show the student the perfect answer and say, "Copy this" (Supervised Fine-Tuning), or they let the student try, give them a grade, and say, "Try again, but do better next time" (Reinforcement Learning). Recently, a new method called "On-Policy Distillation" became popular. It's like a teacher watching the student solve a problem in real-time and whispering, "Yes, that word was good," or "No, that word was wrong," based on what the teacher would have said. It's efficient and avoids the messy business of designing complex grading systems.
But here's the catch: even this smart method has a flaw. When the teacher whispers, they might accidentally whisper things the student already knows, like how to be polite or how to tell a story, rather than the specific "aha!" moments of logic that make the teacher a genius at reasoning. The paper you're about to read asks a simple question: What if we could filter out the noise and only teach the student the new tricks the teacher learned?
This paper introduces a clever new technique called On-Policy Delta Distillation (OPD2). The researchers realized that a "Reasoning Teacher" is actually two models in one: the original "Base" model (before it learned to reason) and the "Reasoning" model (after it learned). If you subtract the Base model's thoughts from the Reasoning model's thoughts, you get a "Delta Signal." This signal is like a highlight reel of exactly what changed when the teacher learned to think. Instead of just copying the teacher's final answer, the student learns from this "Delta Signal"—the specific difference that represents the leap in reasoning ability.
The authors tested this idea by mixing math, science, and coding problems. They found that using this "Delta Signal" as the main reward helped students learn much faster and better than the old methods. In fact, their new method, OPD2, consistently beat the previous best techniques across different sizes of models, from tiny 1.7-billion-parameter models to massive 8-billion ones. It worked so well that a smaller model trained with OPD2 could sometimes outperform a much larger model trained with older methods. The paper suggests that by focusing only on the change in thinking, rather than the whole personality of the teacher, we can teach AI to reason more effectively without wasting time on what it already knows.
The Story of the "Delta" Signal
Let's dive into the mechanics of this discovery using a simple analogy. Imagine you are learning to play a complex video game. You have a "Base" version of your character that knows how to walk, jump, and talk. Then, you get a "Pro" version of that character who has mastered the game's hardest levels.
The old way of teaching (standard On-Policy Distillation) is like the Pro character standing next to you and saying, "Do exactly what I do." The problem is, the Pro character still walks and talks exactly like the Base character did. So, when the Pro says, "Walk forward," they are just repeating something you already know how to do. You spend your time practicing walking, not learning the secret combos that make you a pro.
The authors of this paper, Byeongho Heo, Jaehui Hwang, Sangdoo Yun, and Dongyoon Han from NAVER AI Lab, proposed a different approach. They asked: "What if we only teach the student the difference between the Pro and the Base?"
This difference is the Delta Signal.
- The Base Model: Knows how to speak and write, but might stumble on complex logic.
- The Reasoning Teacher: Knows how to speak, write, and solve hard logic puzzles.
- The Delta: The specific "magic" the Teacher learned to solve the puzzle.
In the paper, they visualize this with word clouds. When they looked at what the old method taught, it was full of generic words like "see," "try," and "verify." But when they looked at the Delta Signal, the words that stood out were logical connectors like "hence," "however," "note," and "instead." These are the words that glue a logical argument together. The Delta Signal effectively filters out the "boring" stuff the student already knows and highlights the "secret sauce" of reasoning.
How They Built OPD2
To make this work, the researchers had to solve a few tricky problems. If you just give a student the Delta Signal, they might get confused because the signal doesn't account for what the student themselves is doing. It's like a coach shouting instructions without watching the player's current position.
So, they added two special ingredients to their recipe:
- Centering: They adjusted the signal so it's balanced around zero. This helps the student understand whether a move is "better than average" or "worse than average," rather than just getting a raw score that might be misleading.
- Joint Conditioning: They made sure the new Delta Signal only kicks in when it agrees with the old, standard method. This acts like a safety net. If the Delta Signal tries to push the student in a weird direction that contradicts the teacher's general style, the system says, "Hold on," and stops the update. This prevents the student from getting confused or forgetting how to speak properly while trying to learn how to think.
The Results: A New Champion
The team tested their new method, which they named OPD2, against the old standard (OPD) and a newer, advanced method called ExOPD. They used a mix of 100,000 questions from math, science, and coding datasets. They tested this on various models, including the Qwen3 family (sizes 1.7B, 4B, and 8B) and the Gemma4 model.
The results were impressive. In the "non-thinking" mode (where models answer quickly without showing their work), OPD2 consistently outperformed the others.
- For the Qwen3-1.7B model in math, OPD2 boosted the average score from 34.8 to 54.6. That's a huge jump, beating the next best method by over 3 points.
- For the Qwen3-4B model, OPD2 reached an average score of 70.3, while the previous best (ExOPD) was at 66.4.
- Even more surprisingly, the 4B model trained with OPD2 performed better than the 8B model trained with the old methods. This suggests that how you train matters as much as how big your model is.
They also tested the models in "thinking" mode, where the models are already quite smart and show their reasoning steps. This is harder to improve because the models are already good. Yet, OPD2 still managed to squeeze out extra performance. For example, on the HMMT25 math benchmark, the Qwen3-8B model improved its score from 44.3 to 52.3 with OPD2, while the other methods actually made the score worse or barely changed it.
The method also worked on Gemma4, a different family of models. While other methods struggled or even made the model worse, OPD2 improved the math scores from 60.6 to 67.8. This shows that the idea of using the "Delta Signal" isn't just a fluke for one specific model; it seems to be a general principle that helps AI learn to think better.
Why This Matters
The paper suggests that the key to teaching AI to reason isn't just feeding it more data or making the teacher bigger. It's about being precise about what we are teaching. By isolating the specific changes that happen when a model learns to reason (the Delta), we can transfer that ability much more efficiently.
The authors note that this method is computationally efficient. It takes about 24-28% more time to train than the standard method because the computer has to run the "Base" model in the background to calculate the difference. However, since these training sessions are usually short (often less than one full pass through the data), this small extra cost is worth the massive performance gain.
In short, OPD2 is like a master chef who realizes that to teach an apprentice the secret to a perfect soup, they shouldn't just say "add salt." They should say, "Add this much more salt than you usually do, because that's the difference between a good soup and a great one." By focusing on the difference, the student learns the secret faster and better. The paper concludes that this approach is a significant step forward in making AI smarter, faster, and more capable of solving the complex problems of the future.
Drowning in papers in your field?
Get daily digests of the most novel papers matching your research keywords — with technical summaries, in your language.