SYNTHESIS NOTE
TopicsReinforcement Learningthis note

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?

Synthesis note · 2026-05-18 · sourced from Reinforcement Learning
What actually changes inside a model during RL training? How should we spend compute at inference time?

The RLHF-RLVR stack rests on three load-bearing components: a reward signal (preference labels for RLHF, verifiers for RLVR), a reward model trained on that signal, and a policy optimizer (PPO, GRPO) that consumes the RM's output. Each component has scaling problems. Preference labels are expensive and culturally biased. Verifiers exist only for verifiable domains. Reward models suffer from prompt-context blindness, reward hacking, and generalization failure.

Late-2025 RL papers are independently converging on three substitutable patterns that each replace one component without touching the others. Together they suggest the reward-model-as-separate-module is no longer load-bearing — it can be replaced by mechanisms internal to the policy itself.

Pattern one: pairwise self-judgment. Can models learn to judge themselves without external rewards?. The model plays Actor and Judge alternately. Copeland-style ranking of self-generated responses produces the training signal for the Actor; self-consistency on those rankings produces the signal for the Judge. Two channels co-evolving, no external supervision. Replaces: the reward model.

Pattern two: internal belief-shift. Can an agent's own beliefs guide credit assignment without critics?. The change in the agent's own probability assigned to the target solution is the dense intrinsic reward. Log-ratio of sequential beliefs is computed from a single forward pass. Replaces: the critic / PRM.

Pattern three: rich-feedback self-distillation. Can environment feedback replace scalar rewards in policy learning?. Environment feedback (runtime errors, judge text, compile traces) becomes the supervision. The current policy conditioned on feedback serves as the self-teacher. Distill the feedback-informed next-token distribution back into the policy. Replaces: the explicit reward signal.

Each pattern can in principle compose with the others. SERL + ΔBelief gives you self-judgment AND dense intrinsic signal. SDPO + SERL gives you rich feedback AND self-evaluation. The substrate is the same — the language model with appropriate in-context conditioning — and each component performs a different role that the others cannot.

The structural claim: RL is being decomposed into substitutable parts. Pretraining + verifier was one architecture. Pretraining + intrinsic signal is another. Pretraining + self-judgment is a third. None of these requires the reward-model-as-trained-classifier component that defined classical RLHF. The reward model was load-bearing for absolute-preference RLHF; for the verifier-free patterns, it is replaced by mechanisms that emerge from the policy's own computations.

The writing angle worth tracking: if the reward model goes away, what changes about alignment? RLHF was inseparable from a specific architectural commitment — train a reward model to encode human preferences, then optimize against it. Verifier-free RL leaves the preference-encoding question open. Where does alignment come from when the RM is not the locus? Some answers: rich feedback (the environment carries it), self-judgment (the model encodes it), community feedback (citations encode it). The substitutability of mechanisms is also a fragmentation of where alignment lives.

A second worth tracking: this is what learning without supervision looks like when the model is already capable enough to retrospect, judge, and assess its own beliefs. Each pattern leverages an in-context capability of the model. The patterns work because the model is good enough at the relevant in-context task to bootstrap supervision from itself.

Inquiring lines that read this note 37

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.

Does RLHF training sacrifice accuracy and grounding for user agreement? What constrains reinforcement learning's ability to expand model reasoning? How do self-generated feedback mechanisms enable effective model learning? Can AI-generated outputs constitute genuine knowledge or valid claims? Can model confidence signals reliably improve reasoning quality and calibration? How can we distinguish genuine user preferences from measurement artifacts? Can language model RL training avoid reward hacking and misalignment? Why do reward structures fail to shape long-term agent learning? How do training priors constrain what context information can override? Can self-supervised signals enable process supervision without human annotation? Can alternative training methods improve on supervised fine-tuning for language models? Does self-reflection enable models to reliably correct their errors? What pretraining choices and baseline capability constrain reinforcement learning gains? What properties determine whether reward signals teach genuine reasoning?

Related concepts in this collection 6

This note in its neighbourhood — explore the map, then jump to a related concept in the list below.

Concept map
15 direct connections · 86 in 2-hop network ·medium cluster Open in graph ↗

Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph

your link semantically near linked from elsewhere

Related papers in this collection 8

Papers most semantically related to this note, ranked by cosine similarity in the embedding space.

Original note title

verifier-free RL is converging on three substitutable patterns — pairwise self-judgment, internal belief-shift, and rich-feedback self-distillation