Your Language Model is Its Own Critic: Reinforcement Learning with Value Estimation from Actor's Internal States
This paper introduces POISE, a reinforcement learning method that leverages a lightweight probe trained on a policy model's internal states to estimate value baselines at negligible cost, thereby achieving stable and efficient policy optimization without the computational overhead of separate critics or multiple rollouts.
Original paper licensed under CC BY 4.0 (http://creativecommons.org/licenses/by/4.0/). This is an AI-generated explanation of the paper below. It is not written or endorsed by the authors. For technical accuracy, refer to the original paper. Read full disclaimer
Imagine you are teaching a brilliant but very expensive student (a Large Language Model) how to solve complex math problems. You want them to get better, so you use a method called Reinforcement Learning. In this method, the student tries to solve a problem, and you give them a score (a reward) if they get the answer right.
To teach them effectively, you need to tell them not just what they got right, but how much better they did compared to their usual performance. This "difference" is called the advantage. To calculate this, you need a baseline—a guess of what the student would typically score on that specific problem.
The Problem: The Cost of Guessing
Currently, there are two main ways to get this baseline, and both are expensive:
- The "Huge Tutor" Method (PPO): You hire a second, equally large and expensive AI model just to act as a critic. This critic watches the student's work and guesses the score. This doubles your computing costs because you are running two giant models at once.
- The "Group Average" Method (GRPO): You ask the student to solve the same problem 8 times in a row. You then average those 8 scores to get a baseline. This wastes a lot of time and money because you are generating 7 extra answers just to get a baseline, leaving less room to try new problems.
The Solution: POISE (The Student's Own Intuition)
The authors of this paper propose a new method called POISE (Policy Optimization with Internal State Value Estimation).
Here is the core idea: The student already knows how hard the problem is before they even finish solving it.
When a large AI model thinks, it generates a trail of "internal thoughts" (hidden states) as it moves from the question to the answer. The paper argues that these internal thoughts contain a hidden signal about how likely the model is to succeed. It's like the student having a gut feeling: "I'm struggling with this step; I probably won't get it right," or "This feels easy; I'm confident."
POISE works like this:
- The Lightweight Probe: Instead of hiring a second giant AI, they attach a tiny, cheap "probe" (like a simple calculator) to the student's brain.
- Reading the Signals: This probe looks at the student's internal thoughts (hidden states) and their "uncertainty" (entropy) while they are thinking.
- The Prediction: The probe predicts the score based on those internal signals.
- The Fairness Trick (Cross-Rollout): To make sure the student doesn't cheat by looking at their own answer to guess the score, the system uses a clever trick. It asks the student to solve the problem twice. To grade the first attempt, the probe looks at the second attempt's internal thoughts, and vice versa. This ensures the baseline is fair and unbiased.
Why This is a Big Deal
- It's Cheaper: You don't need a second giant AI model. You just use the tiny probe on the signals the student is already generating.
- It's Faster: You don't need to generate 8 answers to get a baseline. You only need 2 (one to solve, one to help grade). This frees up your computer budget to try many different problems, which helps the student learn faster.
- It's Stable: Because you can try more different problems, the learning process is less "noisy" and more stable.
The Results
The researchers tested this on math reasoning tasks (like Olympiad math). They found that:
- POISE performed just as well as the state-of-the-art methods (like DAPO) that use expensive critics or large groups of answers.
- It used less computing power and finished training faster.
- The "gut feeling" was accurate: The tiny probe predicted the success rate almost as well as a full-sized AI critic model.
- It works elsewhere: They tested it on coding and tool-use tasks, and it worked well there too, proving the student's internal signals are a universal indicator of success.
In Summary
POISE is like realizing that your student doesn't need a second teacher to tell them how well they are doing. By simply listening to their internal "thinking process," you can instantly know if they are on the right track. This saves money, saves time, and makes the learning process smoother, all without sacrificing performance.
Drowning in papers in your field?
Get daily digests of the most novel papers matching your research keywords — with technical summaries, in your language.