Can environment structure replace external judges in RL?
Can reinforcement learning avoid judges and reward models by transforming tasks into proxy environments where the reward signal emerges from game structure itself? This matters because external evaluation creates bias, bottlenecks, and cost.
The paper proposes Reinforcement Learning with Self-Verifiable Rewards (RLSVR) as a way to extend RLVR beyond mathematics and coding. Its claim is that open-ended tasks do not need an external judge if the task itself is transformed: "instead of approximating an unverifiable quality objective with external judges or reward models, RLSVR transforms the task into a proxy environment whose environment-assigned latent variables make rewards verifiable by construction." The abstract names what this avoids: the "evaluation bias, judge capability bottlenecks, and additional inference costs" that come with human preferences, reward models, and LLM-based judges.
The paper's instantiation is SpyRL, a self-play game inspired by 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, the environment already holds the answer, and "output-quality assessment" becomes "a verifiable identity-recognition problem." The reward comes from the interaction outcome, meaning the votes, and not from anyone's opinion of the outputs. The borrowed precedent is self-supervised learning, where pretext tasks derive supervision "from the data itself." RLSVR applies that move to the reward side of RL.
The nearest existing notes remove the external verifier by other routes. Can model confidence alone replace external answer verification? reads the reward off the model's own probabilities. Can models learn to judge themselves without external rewards? keeps a judge but has the model play it. RLSVR is a different move because the reward source is environment structure, not the model's belief and not the model's judgment. It is closest in spirit to Can reasoning during evaluation reduce judgment bias in LLM judges?, which also converts an unverifiable task into one with a checkable answer. J1 builds that answer through synthetic high and low quality response pairs, while RLSVR builds it through a hidden variable the game assigns. That would add a fourth entry to the substitutable patterns in Can language models replace reward models with internal signals?, one that replaces the reward channel with a designed environment.
The excerpt reports outcomes, not mechanics. SpyRL is said to consistently outperform existing self-improvement methods on summarization and creative writing, to yield "further gains even on already-verifiable" mathematical reasoning tasks, and to produce vote-based rewards that "align closely with human and LLM quality judgments." It does not give the models, baselines, effect sizes, number of agents, or how the information asymmetry is built. It also does not explain why identifying the spy should track output quality, or whether a policy could raise its vote reward by making outputs distinguishable in ways unrelated to quality. The alignment claim is stated without a measure. What the excerpt supports is the design principle: a reward that is verifiable by construction can be engineered into a task through a latent variable the environment controls. Whether SpyRL's particular game keeps that reward tied to quality has to be checked in the full paper.
Inquiring lines that read this note 1
This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.
How effective are honeytokens and decoys against different security threats?Related concepts in this collection 4
This note in its neighbourhood — explore the map, then jump to a related concept in the list below.
Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph
-
Can reasoning during evaluation reduce judgment bias in LLM judges?
Can training language model judges to think through their evaluations, rather than pattern-matching on surface features, mitigate the four known biases that make them vulnerable to manipulation attacks?
both convert an unverifiable task into a checkable one; J1 uses synthetic response pairs, RLSVR uses an environment-assigned latent
-
Can language models replace reward models with internal signals?
Recent RL research shows three independent patterns—self-judgment, belief-shift, and rich feedback—that each eliminate a component of the traditional RLHF stack. Are these patterns converging on a fundamentally different architecture for training without external verifiers?
RLSVR sits outside those three patterns, replacing the reward channel with a designed environment
-
Can model confidence alone replace external answer verification?
Can LLMs use their own certainty signals instead of external verifiers to improve reasoning? This matters for scaling beyond domains where correct answers can be automatically checked.
contrast: reward taken from the model's own probabilities, not from environment structure
-
Can models learn to judge themselves without external rewards?
Can a language model train itself by alternating between generating responses and evaluating them using only internal consistency signals? This explores whether evaluation itself can become a learnable skill without external supervision.
contrast: self-judgment still needs a judge role, while RLSVR's votes resolve against a predetermined identity
Related papers in this collection 8
Papers most semantically related to this note, ranked by cosine similarity in the embedding space.
- From RLVR to RLSVR: Task Transformation Induces Self-Verifiable Rewards for Open-Ended LLM Self-Improvement
- Learning to Reason without External Rewards
- Reward Reasoning Model
- Omni-Thinker: Scaling Multi-Task RL in LLMs with Hybrid Reward and Task Scheduling
- The Surprising Effectiveness of Negative Reinforcement in LLM Reasoning
- Meta-Rewarding Language Models: Self-Improving Alignment with LLM-as-a-Meta-Judge
- Reasoning Models Don't Always Say What They Think
- Optimizing the Score, Losing Sight of the Task: Reward Hacking Across Weights, Selection, and Prompts
Original note title
RLSVR makes open-ended rewards verifiable by construction by transforming the task into a proxy environment with environment-assigned latent variables