Paper 2607.23802
From RLVR to RLSVR: Task Transformation Induces Self-Verifiable Rewards for Open-Ended LLM Self-Improvement
- Published
- Jul 2026
- Research lab
- Independent
- Citations
- 0
- GitHub
- 165 stars
01 In brief
Summary
This paper introduces RLSVR (Reinforcement Learning with Self-Verifiable Rewards), a training paradigm that extends RLVR to open-ended tasks by transforming them into proxy environments with automatically verifiable rewards, inspired by self-supervised learning.
The authors instantiate RLSVR with SpyRL, an information-asymmetric self-play framework based on the game 'Who Is the Spy?'.
In SpyRL, multiple agents receive asymmetric information (civilians get full input, a spy gets a degraded version), perform the same target task, and vote to identify the spy.
Since the spy identity is predetermined, voting outcomes provide fully verifiable rewards, and successful identification correlates with output quality.
Experiments on text summarization, creative writing, and mathematical reasoning show SpyRL outperforms existing self-improvement methods (R-Zero, Absolute Zero) on non-verifiable tasks and yields consistent gains on verifiable reasoning tasks.
For example, on Qwen3-8B, SpyRL achieves 75.4% and 77.3% win rates on summarization and creative writing, and improves mathematical reasoning by 6.16% across seven benchmarks.
The results demonstrate that task transformation can extend scalable RLVR-based self-improvement beyond inherently verifiable domains.
02 From the paper
Abstract
Reinforcement Learning with Verifiable Rewards (RLVR) has driven recent progress in reasoning-oriented large language models (LLMs) by enabling large-scale optimization. However, its applicability remains largely limited to domains such as mathematics and coding, where correctness can be deterministically verifiable. Open-ended tasks instead often rely on human preferences, reward models, or LLM-based judges, introducing evaluation bias, judge capability bottlenecks, and additional inference costs. Drawing on the principle of self-supervised learning, which constructs pretext tasks to derive supervision from the data itself, we propose Reinforcement Learning with Self-Verifiable Rewards (RLSVR), a task-transformation-based training paradigm for extending RLVR to open-ended tasks. RLSVR transforms open-ended tasks into verifiable proxy environments whose internal rules and interaction outcomes automatically generate reward signals. We instantiate RLSVR with SpyRL, a Self-PlaY Reinforcement Learning method inspired by social deduction game Who Is the Spy?. Agents receive asymmetric information, complete the same target task, and vote to identify a designated spy. Because the spy identity is predetermined, voting outcomes provide fully verifiable rewards, while successful identification remains closely related to output quality. Experiments on text summarization, creative writing, and mathematical reasoning show that SpyRL outperforms existing self-improvement methods on non-verifiable tasks and yields consistent gains on verifiable reasoning tasks. These results demonstrate that task transformation can extend scalable RLVR-based self-improvement beyond inherently verifiable domains. Models and code have been released at https://github.com/wangqinsi1/RLSVR/tree/SpyRL.