Back to Reinforcement Learning Mind Map
中文·English
🎮 Reinforcement LearningID: rlvr

RL with Verifiable Rewards

RLVR 可验证奖励
🎯Core Definition
RLVR (Reinforcement Learning from Verifiable Rewards) uses rule/program-verifiable signals as rewards, replacing human or AI reward models: exact-answer matching for math (parsed to canonical form); unit tests for code, with reward pass@kpass@k — probability that among kk sampled programs at least one passes all tests; ground-truth comparison for logic/multiple-choice. Such rewards cost nothing to annotate, carry no model bias, and since the verifier is deterministic with no exploitable loophole, they are unhackable.
📌Overview
Pairing with GRPO: RLVR is GRPO's natural match — sample GG responses {o1,,oG}\{o_1, \dots, o_G\} per prompt qq, score each with the verifier (rir_i), normalize within the group to get advantage Ai=rimean(r1,,rG)std(r1,,rG)A_i = \frac{r_i - \text{mean}(r_1, \dots, r_G)}{\text{std}(r_1, \dots, r_G)}, then update with ratio clipping — no reward model and no critic anywhere; DeepSeek-R1 is the canonical "RLVR + GRPO" pipeline.
💡Use Cases
tasks with ground-truth verification (math, code, logic); the primary reward source for post-training o1/R1-style reasoning models, complemented by process reward models (PRM) for step-level signals.
Key Problems Solved
RLHF reward models are expensive, noisy, and hackable; RLVR gives zero-cost, unbiased, deterministic rewards that scale reasoning RL — at the cost of requiring verifiability, so open-ended tasks still need reward models or PRMs.
🎯5 High-Frequency Exam Points
1
Types of verifiable rewards in RLVR? Why is RLVR considered unhackable?
2
How do RLVR and GRPO combine (G samples, group-relative advantage, no critic)?
3
How is the pass@k reward defined for code? How does it differ from answer matching?
4
Which tasks suit RLVR? What verifiability is required, and what about open-ended tasks?
5
RLVR vs reward-model RLHF: compare cost, bias, and robustness?
Updated 2026-08-12
🎯
Test Your Knowledge: Practice Questions for "RL with Verifiable Rewards"
Single choice pitfall questions with instant feedback and mistake tracking.
🚀 Start Card Practice
Previous CardLong-Term Retention RLNext CardReward Design & Hacking

🔗 More Reinforcement Learning Knowledge Cards

Actor-CriticBehavioral CloningContextual BanditCoT & Reasoning RL