DelTA: How AI Picks Breakthrough Steps Out of Noise in RLVR
The Problem: Rewarding the Whole Answer, Not the Insight
Training models to do math via "Reinforcement Learning from Verifiable Rewards" (RLVR) is like teaching a child archery: hit the bullseye, get a candy. But when a model produces a thousand-word solution, which step was the stroke of genius and which was filler?
Current algorithms often get this wrong. They see solutions full of line breaks and brackets and mistakenly credit these formatting tokens as heroes, while the truly decisive mathematical symbols get neglected. The result: undifferentiated rewards and slow learning.
Root Cause: Formatting Tokens Hijack the Gradient
RLVR's update rule is essentially:
Here \(A\) is the advantage (score) and \(\nabla_\theta \log \pi_\theta\) is each token's sensitivity direction. High score means every token on the path gets praised.
The flaw: both good and bad answers contain large amounts of boilerplate formatting tokens. When averaging, these high-frequency features become dominant, diluting the genuinely useful "sparse features" — as if the janitor got top honors while the general who won the battle went unrecognized.
The Fix: DelTA's Discriminative Credit Assignment
A new paper, DelTA (Discriminative Token Credit Assignment), breaks the deadlock with a simple idea: stop the blanket rewards, add a discriminator.
The researchers observed that a model's gradient updates implicitly contain a "linear classifier." Since it's classification, features unique to good answers should be amplified, while features common to all answers should be suppressed.
DelTA computes a weight coefficient for each token: high specificity gets a large coefficient; generic filler gets its coefficient crushed.
| Dimension | Traditional RLVR | DelTA | | :--- | :--- | :--- | | Allocation | Blanket averaging | Precise, merit-based rewards | | High-frequency tokens | Dominant weight, drowning signal | Suppressed, filtered as noise | | Sparse tokens | Diluted by the mean | Amplified, core reasoning highlighted |
Results: Qwen3 Benchmarks
Tested on Qwen3-8B and Qwen3-14B base models across seven core math benchmarks:
- 8B scale: average score beats the strongest baseline by 3.26 points
- 14B scale: exceeds the strongest baseline by 2.62 points
- DelTA remains robust on code generation tasks and with alternative model backbones
- Paper title: DelTA: Discriminative Token Credit Assignment for Reinforcement Learning from Verifiable Rewards
- Release date: May 22, 2026
- arXiv ID: arXiv:2605.21467
- Core problem: Token-level credit assignment in RLVR
- Mechanism: Reframing policy-gradient updates as a linear discrimination view to amplify discriminative features
Clear rewards and punishments make for a well-trained model — DelTA brings transparency to the "credit assignment" accounting in LLM reinforcement learning.