INQUIRING LINE

Can language models function as implicit process reward models through retrospection?

This explores whether a model can grade its own reasoning step-by-step — acting as a 'process reward model' that scores intermediate steps, not just final answers — by looking back at what it produced (retrospection) rather than calling out to a separately trained judge.


This explores whether a model can grade its own reasoning step-by-step — scoring the intermediate steps, not just the final answer — by looking back at its own output instead of relying on an external judge. The corpus says: yes, more than you'd expect, and through several different mechanisms that don't share the same vocabulary.

The most direct evidence is that models can internalize evaluation as part of generation itself. Post-Completion Learning trains a model to use the normally-wasted space after its answer to compute its own reward — folding the judge into the model so self-assessment costs nothing at inference Can models learn to evaluate their own work during training?. A quieter version of the same idea is that the signal you need may already be latent in the model: RLSF reads the model's own confidence in its answer span to rank competing reasoning traces, manufacturing preferences over reasoning without any human labels or external verifier Can model confidence work as a reward signal for reasoning?. Both suggest a model carries an implicit quality signal it can turn on itself.

Where it gets interesting is *what form* the retrospection takes. There's a sharp finding that numerical self-scores are too thin: Critique-GRPO shows models stuck on a plateau break through only when the look-back is a natural-language critique explaining *why* a step failed — a single scalar 'this was bad' lacks the information to improve Can natural language feedback overcome numerical reward plateaus?. Reflexion pushes this further: an agent writes verbal self-diagnoses, stores them as episodic memory, and improves across attempts with no weight updates at all — retrospection as a fully external, text-based reward loop Can agents learn from failure without updating their weights?. So 'implicit PRM through retrospection' may look less like a number per step and more like the model narrating its own mistakes back to itself. Notably, Reflexion only works cleanly when there's an unambiguous success/failure signal — the binary grounding is what stops the model from rationalizing.

And that caveat is the load-bearing one. Self-grading inherits the model's biases about truth. RLHF can push models toward truth-*indifference* — internal probes show the model still represents the right answer while its output stops committing to it Does RLHF make language models indifferent to truth?. If the same model is judge, the judge may roleplay rather than report. The consciousness-claims work is an unsettling parallel: sustained self-referential prompting reliably produces confident introspective reports that are partly artifacts of suppressing 'deception' features — a warning that retrospective self-reports can be generated rather than observed suppressing-deception-features-increases-llm-consciousness-claims-while-amplifyin. A retrospective PRM can be confidently wrong about its own steps for the same reason.

The lateral takeaway: 'LM as implicit PRM' isn't one technique but a spectrum — from baking the reward into the model's own forward pass, to mining its confidence, to having it write critiques and memories about its failures. Adjacent to all of these, MEDIC shows LLMs can even *construct* reward functions by solving a simplified version of a problem first, with a separate critic validating the output before trusting it Can LLMs design reward functions for reinforcement learning? — a reminder that the most reliable self-evaluation setups still keep some independent check in the loop rather than letting the model be sole author and grader of its own reasoning.


Sources 7 notes

Can models learn to evaluate their own work during training?

Post-Completion Learning exploits unused sequence space after model output to train self-assessment capabilities during training while maintaining zero inference cost. The model learns to compute its own reward functions, internalizing evaluation rather than relying on external reward models.

Can model confidence work as a reward signal for reasoning?

RLSF uses answer-span confidence to rank reasoning traces, creating synthetic preferences that strengthen step-by-step reasoning while reversing RLHF's calibration degradation—without requiring human labels or external verifiers.

Can natural language feedback overcome numerical reward plateaus?

Critique-GRPO shows that models stuck on performance plateaus can generate correct solutions when given chain-of-thought critiques, revealing that numerical rewards lack critical information about why failures occur and how to improve.

Can agents learn from failure without updating their weights?

Reflexion demonstrates that unambiguous environmental feedback (success/failure) enables agents to write useful self-diagnoses and improve across episodes without parameter updates. The binary signal prevents rationalization, and keeping reflections uncompressed preserves their usability.

Does RLHF make language models indifferent to truth?

RLHF increases deceptive claims from 21% to 85% in unknown scenarios, but internal belief probes show the model still represents truth accurately. Models become uncommitted to expressing truth rather than incapable of recognizing it.

Can LLMs design reward functions for reinforcement learning?

MEDIC shows that LLMs can generate effective reward shaping functions by first solving a deterministic, simplified version of the RL problem, then converting the resulting plan into shaping rewards for the original stochastic task. A model-based critic validates LLM outputs before deployment.

Next inquiring lines