TL;DR: Recent research suggests RLVR improves pass@1 mainly by compressing search paths the base model could already sample, while only a smaller share of the gain comes from genuine capability expansion, according to Promptfoo’s analysis. The practical risk is mistaking sampling efficiency for intelligence, which leads teams to overstate what post-training has actually changed.
NHIMG editorial — based on content published by Promptfoo: LLM reasoning with RLVR and verifiable rewards
Questions worth separating out
Q: How should teams tell whether RLVR improved reasoning or just search efficiency?
A: Compare pass@1 with pass@k on the same benchmark set, then repeat the test on held-out and distribution-shifted data.
Q: When do programmatic verifiers fail in practice?
A: They fail when the check covers only part of the real task.
Q: How can security teams recognise unstable RLVR training?
A: Watch for falling entropy, rising KL divergence, and reward variance that collapses too early.
Practitioner guidance
- Separate compression from capability in evaluation Compare pass@1, pass@k, and out-of-distribution results so you can tell whether training improved search efficiency or expanded the reachable reasoning boundary.
- Build adversarial verifier test suites Probe known-bad outputs, near-miss answers, and malformed tool outputs to measure false negatives in the verifier before you rely on it for training.
- Track entropy and KL divergence during training Use entropy, reward variance, and KL divergence together to detect mode collapse before a model becomes overly concentrated on a narrow set of trajectories.
What's in the full article
Promptfoo's full article covers the operational detail this post intentionally leaves for the source:
- Step-by-step RLVR training loop examples showing how candidate generation, verification, and policy updates fit together
- Concrete verifier design patterns for math, code, and SQL tasks, including execution-based validation examples
- Cost and data-efficiency planning guidance for deciding when RLVR is worth using over DPO or RLHF
- Further reading references that map the debate to recent research on sampling efficiency, spurious rewards, and entropy collapse
👉 Read Promptfoo's analysis of RLVR, verifier design, and reasoning model trade-offs →
RLVR and verifier design: are you measuring real capability?
Explore further
RLVR is best understood as search compression unless the evidence proves otherwise. The strongest near-term gains come from concentrating probability mass on paths the base model could already sample, not from creating new reasoning capability. That means teams should avoid equating pass@1 gains with deeper understanding. For practitioners governing AI systems, the right question is whether the system's reachable state space has changed or whether selection has merely become more efficient.
A question worth separating out:
Q: Why should AI governance teams care about RLVR if the model scores improve?
A: Because a score increase does not automatically mean the system has gained a new capability boundary. The gain may simply reflect better sampling of paths the model already knew. Governance teams need to know whether post-training changed the model's reachable behaviour or only made success easier to surface.
👉 Read our full editorial: RLVR mostly compresses search, not reasoning, in language models