Splitting AI training into step-by-step feedback plus a hard pass/fail gate beats one blunt score the model can game.
Why do dense rewards plus hard constraints outperform single fixed rewards?
This explores why splitting the training signal into a fine-grained reward (feedback at many small steps) plus a separate pass/fail gate beats a single blunt reward that has to do both jobs at once.
This explores why splitting the training signal — a dense, step-by-step reward paired with a hard gate — outperforms one fixed reward that has to serve every purpose at once. The cleanest statement of the mechanism comes from DRO, which separates optimization from feasibility: instead of turning a rubric into a reward you can maximize, it uses the rubric as a gate that accepts or rejects whole answer groups, then lets token-level rewards optimize only within the answers that already passed Can rubrics and dense rewards work together without hacking?. The reason this matters is that a single reward invites gaming: if the rubric score is something you can partially satisfy for partial credit, the model finds cheap ways to inflate it. As a hard constraint, the rubric can't be hacked — you're either inside the valid region or you're not — and all the delicate optimization happens somewhere it can't corrupt the definition of "correct."
A single fixed reward also throws away information. Natural feedback actually carries two orthogonal signals: evaluative (how good was this?) and directive (which way should it change?). A scalar reward captures the first and discards the second entirely Can scalar rewards capture all the information in agent feedback?. That lost directive channel is exactly why models plateau on pure numerical rewards — they know they failed but not why or how to fix it — and why layering in chain-of-thought critique lets stuck models suddenly produce correct solutions Can natural language feedback overcome numerical reward plateaus?. Dense rewards recover some of that lost information by scoring the path, not just the destination.
The density part earns its keep most when the outcome signal is too sparse to learn from. Step-wise expert-similarity rewards give a learning signal at every step even when every rollout ultimately fails — bridging rigid imitation (SFT) and sparse outcome-only rewards (RLVR) — which is what lets small models learn hard reasoning they'd otherwise never get traction on Can step-wise expert rewards help small models learn hard reasoning?. A single outcome reward on an all-failing batch is a flat zero: no gradient, nothing to climb.
There's a second, subtler benefit to adding a constraint as a separate term rather than folding everything into accuracy: it fixes pathologies the single reward silently creates. Binary correctness rewards, for instance, quietly destroy calibration, because a confident wrong answer costs exactly the same as a hesitant one — so the model learns to bluster. Adding a proper scoring rule (the Brier score) as a second reward term provably restores joint optimization of accuracy and calibration with no trade-off Does binary reward training hurt model calibration?. The general pattern: one reward can only point in one direction, so anything it doesn't measure gets optimized away.
What's worth sitting with is the ceiling on all of this. RLVR — the paradigm most of these dense-reward tricks live inside — mostly sharpens sampling toward solutions the base model already contained rather than teaching genuinely new reasoning; base models can still beat RLVR-tuned ones at high sample counts Does RLVR actually expand what models can reason about? What does reward learning actually do to model reasoning?. So the honest framing of "dense rewards plus hard constraints" isn't that richer signals unlock new capability — it's that they extract far more of the capability already latent in the model, cleanly and without hacking, than a single blunt reward ever could.
Sources 7 notes
DRO shows that using rubrics to accept or reject rollout groups—rather than converting rubric scores into dense rewards—prevents reward hacking. This separation preserves the categorical strength of rubrics while letting token-level rewards optimize within valid answers.
Natural feedback carries two orthogonal types of information: evaluative (how well an action performed) and directive (how it should change). Scalar rewards capture evaluation but discard directional specifics that token-level distillation can recover, making the two complementary rather than redundant.
Critique-GRPO shows that models stuck on performance plateaus can generate correct solutions when given chain-of-thought critiques, revealing that numerical rewards lack critical information about why failures occur and how to improve.
Supervised Reinforcement Learning rewards models by measuring alignment with expert actions at each step, providing dense learning signals even when all rollouts fail. This approach bridges the gap between rigid token-by-token imitation (SFT) and sparse outcome-only rewards (RLVR), and works best as a curriculum foundation before outcome-based refinement.
Binary correctness rewards incentivize high-confidence guessing because they don't penalize confident wrong answers. Adding the Brier score as a second reward term mathematically guarantees joint optimization of accuracy and calibration without trade-off.
Show all 7 sources
Pass@k analysis shows base models outperform RLVR models at high k, indicating RLVR doesn't expand solvable problems but rather narrows sampling toward solutions already in the base model's distribution. Distillation, by contrast, genuinely transfers new reasoning patterns.
Research shows RLVR improves sampling efficiency within existing capability boundaries without expanding them. A single training example suffices for activation, and spurious rewards work nearly as well as correct ones for models with appropriate pretraining.
Papers this line draws on 8
The research behind the notes this line reads — ranked by how closely each paper relates.
- RM-R1: Reward Modeling as Reasoning
- Reward Reasoning Model
- The Invisible Leash: Why RLVR May Not Escape Its Origin
- Does Reinforcement Learning Really Incentivize Reasoning Capacity in LLMs Beyond the Base Model?
- Spurious Rewards: Rethinking Training Signals in RLVR
- Local Coherence or Global Validity? Investigating RLVR Traces in Math Domains
- A Survey on Test-Time Scaling in Large Language Models: What, How, Where, and How Well?
- Understanding and Mitigating Premature Confidence for Better LLM Reasoning