Reinforcement Learning with Verifiable yet Noisy Rewards under Imperfect Verifiers
Xin-Qiang Cai, Wei Wang, Feng Liu, Tongliang Liu, Gang Niu, Masashi Sugiyama
TL;DR
This work addresses RL with verifiable rewards when verifiers are imperfect, modeling the verifier as a stochastic reward channel with false-positive rate $\rho_0$ and false-negative rate $\rho_1$. It introduces two principled corrections: a backward correction that yields an unbiased surrogate reward $\widehat{R}=\frac{\tilde{R}-\rho_0}{1-\rho_0-\rho_1}$ and a forward correction that reweights score-function terms using weights $w_0=\rho_1-1$, $w_1=\rho_1$ so that the expected update aligns with the clean gradient, requiring only $\rho_1$. Both corrections are implemented as lightweight hooks in a GRPO-based learning pipeline and shown to substantially improve learning under both synthetic and real verifier noise, with PGFC often providing faster and more stable convergence. An online appeals mechanism using a lightweight LLM to estimate the FN rate $\rho_1$ further enhances performance. Overall, the paper provides a formal verifier-noise model, two actionable corrections, and practical online noise estimation, enabling robust RLVR in real-world systems.
Abstract
Reinforcement Learning with Verifiable Rewards (RLVR) replaces costly human labeling with automated verifiers. To reduce verifier hacking, many RLVR systems binarize rewards to $\{0,1\}$, but imperfect verifiers inevitably introduce \emph{false negatives} (rejecting correct answers) and \emph{false positives} (accepting incorrect ones). We formalize verifier unreliability as a stochastic reward channel with asymmetric noise rates $ρ_0$ and $ρ_1$ -- the FP rate and the FN rate, respectively. From this abstraction we derive two lightweight corrections: (i) a \emph{backward} correction that yields an unbiased surrogate reward and thus an unbiased policy-gradient estimator in expectation, and (ii) a \emph{forward} correction that reweights score-function terms so the expected update aligns with the clean gradient direction and requires only the FN rate. We implement both as lightweight hooks in a group relative policy optimization pipeline, both corrections improve RLVR for math reasoning under synthetic and real verifier noise, with the forward variant being more stable under heavier noise. Finally, an appeals mechanism with a lightweight LLM verifier estimates the FN rate online and further improves performance.
