Summary of "From RLVR to RLSVR: Task Transformation Induces Self-Verifiable Rewards for Open-Ended LLM Self-Improvement"

Summary (Overview)

  • New paradigm (RLSVR): Extends RLVR to open-ended tasks by transforming the task into a proxy environment where rewards become verifiable by construction, inspired by self-supervised learning’s pretext-task principle.
  • SpyRL instantiation: An information-asymmetric self-play game based on “Who Is the Spy?” where a predetermined spy identity turns output-quality assessment into a verifiable identity-recognition problem.
  • State-of-the-art results: SpyRL outperforms existing self-improvement methods (R-Zero, Absolute Zero) on non-verifiable tasks (summarization, creative writing) and yields consistent gains on verifiable mathematical reasoning, with vote-based rewards closely aligned with human and LLM quality judgments.
  • Verifiability is engineered: The work demonstrates that verifiability need not be an intrinsic property of a task—it can be created through task transformation, opening a path toward scalable, verifier-free self-improvement for general open-ended capabilities.

Introduction and Theoretical Foundation

Reinforcement Learning with Verifiable Rewards (RLVR) has driven progress in reasoning models (e.g., OpenAI o1, DeepSeek-R1) by enabling large-scale optimization with exact, rule-based reward signals. However, RLVR is limited to domains where correctness can be deterministically verified (e.g., math, coding). Open-ended tasks (creative writing, summarization) rely on human preferences, learned reward models, or LLM-as-a-Judge, introducing evaluation bias, judge capability bottlenecks, and additional inference costs.

The authors draw inspiration from self-supervised learning (SSL), which constructs pretext tasks whose supervisory signals are derived automatically from the data itself (e.g., masked language modeling, contrastive learning). SSL shows that when a proxy objective generates supervision automatically while preserving substantial capability overlap with the target task, learning can proceed without task-specific human annotation.

RLSVR extends this task-transformation principle to RLVR. Instead of approximating an unverifiable quality function Q(x,y)Q(x,y) with an external evaluator, RLSVR transforms the original open-ended task into a proxy environment E\mathcal{E} that:

  1. Injects a latent variable zz (known only to the environment).
  2. Conditions task execution on observations derived from (x,z)(x, z).
  3. Defines a verifiable interaction (e.g., identity inference) whose outcome can be checked exactly against zz.
  4. Computes a rule-based reward RR from the interaction outcome.

The reward is called self-verifiable because it is deterministic, rule-based, and requires no human annotation, learned reward model, or external judge. RLSVR is thus "self-supervised learning for RLVR": the transformation Φ\Phi corresponds to the pretext task, zz to the automatically generated label, and standard RLVR optimization (e.g., GRPO) applies directly to E\mathcal{E}.

Methodology

SpyRL is a concrete instantiation of RLSVR using information-asymmetric self-play. The framework consists of two stages per training epoch (see Algorithm 1):

1. Information-Asymmetric Performing Stage

  • Sample an input xDx \sim \mathcal{D} and a spy index uUnif({1,,n})u \sim \text{Unif}(\{1,\dots,n\}).
  • Assign observations: civilians receive full xx; the spy receives a degraded version g(x)g(x) (e.g., continuous span masking of 20%–40% of the text).
  • Each player ii generates an output yiπθP(oi,τ)y_i \sim \pi^P_\theta(\cdot | o_i, \tau) for the target task (summarization, creative writing, or math problem construction/solution).

2. Detection Stage with Verifiable Rewards

  • All outputs Y={y1,,yn}Y = \{y_1,\dots,y_n\} are revealed.
  • Each player votes on the spy identity: viπϕD((oi,Y))v_i \sim \pi^D_\phi(\cdot | (o_i, Y)).
  • Detection reward: riD=I[vi=u]r^D_i = \mathbb{I}[v_i = u] (deterministically verifiable).
  • Group-based advantage (GRPO-style): AiD=(riDμD)/σDA^D_i = (r^D_i - \mu^D)/\sigma^D, normalized within the group.

3. Two-Stage Coupled Optimization

  • Performing reward (zero-sum between spy and civilians): ruP=β(mumˉc),rcjP=βnc(mumˉc)λ(mcjmˉc)r^P_u = -\beta(m_u - \bar{m}_c), \quad r^P_{c_j} = \frac{\beta}{n_c}(m_u - \bar{m}_c) - \lambda(m_{c_j} - \bar{m}_c) where mum_u is votes received by the spy, mcjm_{c_j} by civilian jj, mˉc\bar{m}_c the average civilian votes, and β,λ\beta, \lambda control competition strength.
  • Role-Advantage Estimation (RAE): Calibrates role biases by subtracting role-specific baselines, preventing the optimizer from conflating the spy’s information disadvantage with poor policy quality.
  • Alternating optimization: The performer and detector are updated alternately to avoid policy stagnation and maintain stable learning pressure.
  • KL-regularized GRPO objectives: LP(θ)=E[1nk{u}Ctmin(ρk,tPAkP,clip(ρk,tP,1ϵ,1+ϵ)AkP)]+βPKL(πθPπrefP)\mathcal{L}^P(\theta) = -\mathbb{E}\left[\frac{1}{n}\sum_{k\in\{u\}\cup C}\sum_t \min\left(\rho^P_{k,t}A^P_k, \text{clip}(\rho^P_{k,t},1-\epsilon,1+\epsilon)A^P_k\right)\right] + \beta_P \text{KL}(\pi^P_\theta \| \pi^P_{\text{ref}}) LD(ϕ)=E[1ni=1nmin(ρiDAiD,clip(ρiD,1ϵ,1+ϵ)AiD)]+βDKL(πϕDπrefD)\mathcal{L}^D(\phi) = -\mathbb{E}\left[\frac{1}{n}\sum_{i=1}^n \min\left(\rho^D_i A^D_i, \text{clip}(\rho^D_i,1-\epsilon,1+\epsilon)A^D_i\right)\right] + \beta_D \text{KL}(\pi^D_\phi \| \pi^D_{\text{ref}})

The degradation operator g()g(\cdot) is domain-specific: continuous span masking (20% for summarization/writing, 40% for math reasoning). All experiments use group size n=5n=5 (default), batch size 1024, 100 epochs, and Qwen3-4B/8B backbones.

Empirical Validation / Results

Main Results on Non-Verifiable and Verifiable Tasks

Table 1: Summarization benchmarks (ROUGE-L and GPT-4o A/B win rates of SpyRL vs. each baseline)

MethodGovReportMulti_NewsQmSumVcSumSamSum
Qwen3-4B30.2 / 74.6%23.1 / 80.2%21.3 / 68.4%15.1 / 70.2%43.2 / 76.2%
+ R-Zero32.1 / 72.1%22.4 / 86.6%21.5 / 68.2%15.6 / 74.6%42.8 / 81.2%
+ Absolute Zero33.2 / 68.5%25.2 / 78.4%22.7 / 64.8%18.3 / 66.8%46.1 / 73.4%
+ SpyRL36.7 / –26.4 / –25.3 / –19.1 / –48.2 / –
Qwen3-8B29.0 / 78.2%23.1 / 68.5%19.2 / 78.2%14.9 / 72.5%44.3 / 79.5%
+ R-Zero29.4 / 80.3%22.2 / 67.5%18.8 / 83.9%14.9 / 70.4%44.8 / 80.0%
+ Absolute Zero32.5 / 74.2%23.2 / 68.3%19.1 / 78.8%15.8 / 68.2%46.2 / 70.4%
+ SpyRL34.1 / –25.8 / –23.2 / –19.1 / –48.5 / –

Table 2: Creative writing (GPT-4o pairwise win rates; SpyRL vs. each baseline)

MethodWritingPrompt (Overall)WritingBench (Overall)
Qwen3-4B81.3%75.1%
R-Zero78.9%75.0%
Absolute Zero75.6%71.1%
SpyRL (Qwen3-8B vs. Qwen3-8B)76.5%78.1%

Table 3: Mathematical reasoning (accuracy %)

MethodGSM8KMath500AIME 24AIME 25MinervaMMLU-ProGPQA-D
Qwen3-4B84.568.210.36.742.351.626.3
+ R-Zero88.772.810.36.747.152.827.8
+ Absolute Zero89.376.212.213.441.952.635.3
+ SpyRL93.479.513.320.047.857.441.3
Qwen3-8B91.874.215.312.149.358.133.3
+ R-Zero92.178.415.314.252.561.734.3
+ Absolute Zero92.076.618.418.252.962.536.8
+ SpyRL93.581.220.023.356.363.139.8

Additional Validations

  • Human evaluation (Table 4): SpyRL achieves 80.0% overall win rate vs. Qwen3-4B on WritingPrompt, consistently higher across novelty, emotion, coherence, and consistency.
  • Rubric-as-reward comparison (Table 5): SpyRL outperforms Qwen3.5-27B-RaR (59.3% overall win) and is competitive with GPT-4o-RaR while incurring zero external verifier cost.
  • Domain-specific summarization (Table 6): Trained on PubMed, SpyRL raises ROUGE-L on arXiv, PubMed, and BillSum by an average of 4.9 points.
  • Cross-task transfer (Table 7): Summarization and creative writing transfer positively in both directions; math reasoning does not transfer to writing tasks.
  • Ablation (Table 8): Full two-stage optimization is crucial; removing it leads to rapid plateauing.
  • Group size (Figure 5): n=5n=5 provides the best trade-off (mean gain from 5.5 to 9.3 over base); further scaling shows diminishing returns.
  • Role-Advantage Estimation (Table 9): Removing RAE degrades the average from 50.4 to 37.5, actively harming the model.
  • Degradation operator sensitivity (Table 10): 20% vs. 40% masking ratio yields nearly indistinguishable results, showing robustness.

Figure 4 (vote-quality correlation): A positive correlation between the number of suspicion votes received and GPT-4o rank (lower quality → more votes) confirms that the vote-based reward aligns with actual task performance without external verifiers.

Theoretical and Practical Implications

  • Theoretical: RLSVR unifies two previously separate approaches—RLVR (exact verification) and SSL (label-by-construction)—showing that verifiability can be engineered through task transformation rather than being an intrinsic property of a task. The latent variable zz plays the role of automatically generated labels, and the proxy environment E\mathcal{E} provides a rule-based reward that is exact and unbiased.
  • Practical: SpyRL provides a scalable, verifier-free self-improvement pipeline for open-ended tasks. It eliminates the need for expensive human annotations, learned reward models, or LLM judges, reducing both cost and evaluation bias. The method is computationally efficient (no external verifier calls) and generalizes across domains (summarization, creative writing, reasoning). The cross-task transfer results suggest that training on one open-ended task can improve performance on related tasks.
  • Limitations: The degradation operator g()g(\cdot) must be designed per task, though experiments show it is robust to masking ratio. The framework currently requires multiple agents (default n=5n=5), which increases inference cost per training step. The spy mechanism relies on the assumption that information deficit leads to detectably lower quality; tasks where this is not true (e.g., tasks where the spy can compensate) may require alternative transformations.

Conclusion

The paper proposes RLSVR, a paradigm that extends RLVR to open-ended tasks by transforming them into proxy environments with self-verifiable rewards. The instantiation SpyRL uses information-asymmetric self-play to turn output-quality assessment into a verifiable identity-recognition problem. Extensive experiments on summarization, creative writing, and mathematical reasoning show that SpyRL outperforms existing self-improvement methods (R-Zero, Absolute Zero) and even yields gains on already-verifiable reasoning tasks. The vote-based rewards align closely with human and LLM quality judgments. The key takeaway is that verifiability can be engineered through task transformation, opening a path toward scalable, verifier-free self-improvement for general open-ended capabilities. Models and code are released at https://github.com/wangqinsi1/RLSVR/tree/SpyRL.

Related papers