Bring the mental model from RLHF: Reward Modeling + KL-Regularized Policy Optimization; this page will reuse it instead of restarting from zero.
Process Reward Models: Step-Level Verifiers for Reasoning
A process reward model scores intermediate reasoning steps instead of only terminal answers, giving denser verifier feedback for reranking and search while remaining a learned proxy.
01
Intuition
Build the mental picture first so the rest of the page has something to attach to.
Canonical sources: Lightman et al., "Let's Verify Step by Step", the OpenAI prm800k dataset release, Uesato et al., "Solving math word problems with process- and outcome-based feedback", Cobbe et al., "Training Verifiers to Solve Math Word Problems", and Snell et al., "Scaling LLM Test-Time Compute Optimally".
An outcome reward model asks one terminal question: did the final answer look correct?
A process reward model asks a local question at every step: given the prompt and the reasoning prefix so far, is this next step valid?
That changes the shape of feedback. Instead of treating a whole solution as one indivisible completion, the verifier sees a path through intermediate states. A lucky final answer with broken reasoning can receive high outcome reward and low process reward. A trace with one early algebra mistake can be rejected before the mistake compounds.
The important caveat is that a process reward model is still a learned proxy. It can localize errors better than terminal-only feedback, but its step labels can be ambiguous, expensive, domain-limited, or wrong. PRMs do not solve reward hacking; they move the proxy from the leaf of the reasoning tree onto the edges.
Copy-only prompts — each action copies a page-grounded prompt to your clipboard. Nothing is sent by this site.
02
Math
Translate the story into symbols, assumptions, and a derivation you can inspect.
Fix one prompt x. In this page's binary teaching notation, a process reward model sees a reasoning prefix and a candidate next step, then predicts whether that step is locally correct. Lightman et al.'s PRM800K labels include positive, negative, and neutral ratings; here we collapse the idea into correct vs. not-correct to expose the verifier mechanics.
For labeled steps (hi,ai,ci), the binary verifier can be trained with cross-entropy:
A complete solution is a terminal trace
Outcome supervision observes only a terminal label
For a terminal trace, one simple additive score is the sum of step logits:
Other aggregations, such as mean step probability, product of step probabilities, or minimum step score, are design choices rather than a universal PRM definition. The key definition is local verification of steps.
Separate from Lightman et al.'s best-of-N evaluation, this page also shows a finite KL-style RLHF bridge. A KL-regularized trajectory update is
This is the same finite-action probability-shaping pattern as RLHF, but the learned reward decomposes over reasoning steps. Smaller β pushes harder on the verifier score. If the step verifier is wrong, optimization can still select verifier error.
Copy-only prompts — each action copies a page-grounded prompt to your clipboard. Nothing is sent by this site.
03
Code
Keep the implementation aligned with the notation so the algorithm is legible.
This witness uses four fixed traces for the equation 2(x+3)=14. The outcome verifier prefers a trace with the correct final answer but invalid reasoning. The accurate process verifier prefers the clean trace. If we inject a false-positive process error, the process verifier can be fooled too.
import math
import numpy as np
def logit(p):
p = min(max(p, 1e-6), 1 - 1e-6)
return math.log(p / (1 - p))
def policy(scores, ref, beta=0.7):
logits = np.log(ref) + np.asarray(scores) / beta
logits = logits - logits.max()
weights = np.exp(logits)
return weights / weights.sum()
traces = ["clean", "lucky_final", "slip", "wrong"]
ref = np.array([0.30, 0.22, 0.28, 0.20])
outcome_p = np.array([0.86, 0.92, 0.16, 0.12])
step_p = [
[0.93, 0.91],
[0.16, 0.24],
[0.93, 0.22],
[0.20, 0.35],
]
def process_scores(step_probs):
return [sum(logit(p) for p in probs) for probs in step_probs]
outcome_winner = traces[int(policy([logit(p) for p in outcome_p], ref).argmax())]
process_winner = traces[int(policy(process_scores(step_p), ref).argmax())]
hacked_steps = [list(probs) for probs in step_p]
hacked_steps[1] = [0.98, 0.97]
hacked_winner = traces[int(policy(process_scores(hacked_steps), ref).argmax())]
print(outcome_winner, process_winner, hacked_winner)
assert outcome_winner == "lucky_final"
assert process_winner == "clean"
assert hacked_winner == "lucky_final"
Copy-only prompts — each action copies a page-grounded prompt to your clipboard. Nothing is sent by this site.
04
Interactive Demo
Use direct manipulation to connect the explanation to a moving system.
Live Concept Demo
Explore Process Reward Models: Step-Level Verifiers for Reasoning
The stage is code-native and interactive. Use it to test the explanation against the mechanism.
Manipulate one control and predict the visible change.
Choose what to inspect in Process Reward Models: Step-Level Verifiers for Reasoning. This shared fallback is an observation guide, not evidence of learning.
Use the demo as a diagnostic instrument. Switch between outcome-only scoring and process scoring, change the process aggregation, inject verifier errors, and lower β to increase optimization pressure. Watch how probability mass moves across complete traces, and whether the selected trace has a correct final answer, valid local steps, or merely a high verifier score.
Copy-only prompts — each action copies a page-grounded prompt to your clipboard. Nothing is sent by this site.
Concept: Process Reward Models: Step-Level Verifiers for Reasoning
What is the smallest example that makes Process Reward Models: Step-Level Verifiers for Reasoning click without losing the math?
Object contextAlignment
concept:alignment/process-reward-modelsProcess Reward Models: Step-Level Verifiers for Reasoning
What is the smallest example that makes Process Reward Models: Step-Level Verifiers for Reasoning click without losing the math?
Start with the prediction checkpoint, then compare the reveal to the mental model.
Take this moveStudy modes
Keep the object fixed; change the lens.Route back through the notebook
Carry the same object through intuition, math, code, and demo.
A process reward model scores intermediate reasoning steps instead of only terminal answers, giving denser verifier feedback for reranking and search while remaining a learned proxy.
The next edge should feel earned: use the demo prediction here before following Test-Time Compute: Spending Inference Budget on Search.
After The First Pass
Turn the concept into an inspected object.
The lower panels are one second act: keep the object fixed, inspect it visually, check source boundaries, practice transfer, then attach the research question.Mechanism Storyboard
See the idea move before the page explains it
A process reward model scores intermediate reasoning steps instead of only terminal answers, giving denser verifier feedback for reranking and search while remaining a learned proxy.

Start with the picture, metaphor, or geometric mechanism.
Before reading further, choose the kind of change Process Reward Models: Step-Level Verifiers for Reasoning should make visible.
Visual Inquiry
Make the image answer a mathematical question
A process reward model scores intermediate reasoning steps instead of only terminal answers, giving denser verifier feedback for reranking and search while remaining a learned proxy.
Which visible object should carry the first intuition?
Pick the cue that should make Process Reward Models: Step-Level Verifiers for Reasoning easier to reason about before the page gives the answer.
Source Grounding
Canonical references for the mechanism on this page.
What is the smallest example that makes Process Reward Models: Step-Level Verifiers for Reasoning click without losing the math?
concept:alignment/process-reward-modelssources: lightman-2023-verify-step-by-step
Open the closest source note before trusting the local explanation.
1 selected-object source shown first; 1 reference total.
Audit the claim boundary, then ask from the same selected object.
Grounds process supervision and PRM800K as step-level feedback for mathematical reasoning traces.
Lightman et al. contrast ORMs using final results with PRMs receiving feedback for each step, train PRMs to predict step correctness, reduce step scores for solution ranking, and evaluate...
Binary Bernoulli/BCE is a teaching reduction; Lightman use positive/negative/neutral labels and token log-likelihood. Excludes exact aggregation, calibration, KL/RL generator training, un...
Claim Review
A process reward model scores intermediate reasoning steps instead of only terminal answers, giving denser verifier feedback for reranking and search while remaining a learned proxy.
What is the smallest example that makes Process Reward Models: Step-Level Verifiers for Reasoning click without losing the math?
concept:alignment/process-reward-modelssources: lightman-2023-verify-step-by-step
Treat every claim as provisional until source support and a local witness agree.
1 structured claim check on this concept.
Run the prediction or practice transfer before asking for a grounded review.
Publisher-side editorial review is not independent replication. Claims without it still need exact source-support review. 1 reference and 3 local witnesses are available for inspection.
Lightman et al. contrast ORMs using final results with PRMs receiving feedback for each step, train PRMs to predict step correctness, reduce step scores for solution ranking, and evaluate by best-of-N search...
Binary Bernoulli/BCE is a teaching reduction; Lightman use positive/negative/neutral labels and token log-likelihood. Excludes exact aggregation, calibration, KL/RL generator training, universal gains, cheap...
Lightman et al. support PRMs as process-supervised reward models trained on step-level labels and evaluated by best-of-N selection of the highest-ranked generated solution. The page's binary Bernoulli/BCE notation is a didactic collapse of their positive/negative/neutral token-likelihood setup. PRM reliability/proxy limits are supported by their reward-model mistake/false-positive examples. KL reweighting is outside this reviewed claim.
Reviewer: codex+oracle; reviewed 2026-05-07Practice notebook
Use the idea, then test it somewhere new
A process reward model scores intermediate reasoning steps instead of only terminal answers, giving denser verifier feedback for reranking and search while remaining a learned proxy.
What is the smallest example that makes Process Reward Models: Step-Level Verifiers for Reasoning click without losing the math?
concept:alignment/process-reward-modelssources: lightman-2023-verify-step-by-step
Use one state from Process Reward Models: Step-Level Verifiers for Reasoning to explain what changes, why it changes, and which assumption the explanation needs.
No learner move yet; no learning state is inferred.
Write first, use only the help you need, then try a new case without it.
Use one state from Process Reward Models: Step-Level Verifiers for Reasoning to explain what changes, why it changes, and which assumption the explanation needs.
Reveal when your model needs a nudge.
Reveal when your model needs a nudge.
Reveal when your model needs a nudge.
Write an attempt before asking the companion.
0 of 3 progressive hints opened.
This draft and any AI response do not establish mastery; a later unassisted case can.
- ObjectConceptProcess Reward Models: Step-Level Verifiers for Reasoning
- PredictBefore revealProcess Reward Models: Step-Level Verifiers for Reasoning prediction
- WitnessCompare codeProcess Reward Models: Step-Level Verifiers for Reasoning code witness 1
- RoomAsk groundedChecking local snapshot
Research Room
Attach the question to an exact object
Pick the concept, equation, source, code witness, claim, misconception, or demo state before asking for help. The handoff stays grounded to that object.Open the draft below to save one note and next action in this browser.
Process Reward Models: Step-Level Verifiers for Reasoning
What is the smallest example that makes Process Reward Models: Step-Level Verifiers for Reasoning click without losing the math?
These are fixed, deterministic perspectives derived from the selected object. They do not represent people, community contributions, or independent review.
Source ids lightman-2023-verify-step-by-step must support the exact object, not just the surrounding topic.
Treat this as a mechanism object: connect the definition to one equation, code witness, or demo before broadening the discussion.
Ask the learner to perturb one representation, then check whether the same invariant survives in math, code, and demo.
The learner can state the mechanism in their own words
Local action draftNo local draft saved yetExpand only when ready to capture one local next action
This draft stays locally in this browser for concept:alignment/process-reward-models.
- Source ids to inspect: lightman-2023-verify-step-by-step
- Definition, prerequisite, and contrast concept links
- The equation or code witness that makes the concept operational
- One demo state that shows the invariant instead of a slogan
- The learner can state the mechanism in their own words
- The learner can name the prerequisite that would repair confusion
- The learner can predict how the mechanism changes under one perturbation
I am working in Continuous Function's research reading room. Object: concept - Process Reward Models: Step-Level Verifiers for Reasoning Object key: concept:alignment/process-reward-models Context: Alignment Anchor id: concept/concept-notebook/alignment/process-reward-models Open question: What is the smallest example that makes Process Reward Models: Step-Level Verifiers for Reasoning click without losing the math? Evidence to inspect: - Source ids to inspect: lightman-2023-verify-step-by-step - Definition, prerequisite, and contrast concept links - The equation or code witness that makes the concept operational - One demo state that shows the invariant instead of a slogan Deterministic role lenses for this object: - Boundary: fixed perspectives, not people, community contributions, or independent review - Source-checking summary: Treat this as a mechanism object: connect the definition to one equation, code witness, or demo before broadening the discussion. - Proposed experiment: Ask the learner to perturb one representation, then check whether the same invariant survives in math, code, and demo. - Teach/transfer move: Turn the mechanism into one sentence that predicts a neighboring concept. - Assumptions: - Source ids lightman-2023-verify-step-by-step must support the exact object, not just the surrounding topic. - The stable content-object key lets local drafts, prompts, and route memory attach without changing the source page. - The concept explanation is local atlas prose until checked against its math, code, and source support. - Prerequisite gaps should become a repair route, not a reason to leave the object vague. - Role-lens requests: - Learner: ask for "Ask what would make "Process Reward Models: Step-Level Verifiers for Reasoning" feel predictable rather than familiar." | assumption: Source ids lightman-2023-verify-step-by-step must support the exact object, not just the surrounding topic. | next action: The learner can state the mechanism in their own words - Researcher: ask for "Source ids to inspect: lightman-2023-verify-step-by-step" | assumption: The stable content-object key lets local drafts, prompts, and route memory attach without changing the source page. | next action: The learner can name the prerequisite that would repair confusion - Experimenter: ask for "Choose one variable or condition to perturb before asking for an explanation." | assumption: The concept explanation is local atlas prose until checked against its math, code, and source support. | next action: The learner can predict how the mechanism changes under one perturbation - Professor: ask for "Find the smallest transferable rule a learner could reuse without the AI." | assumption: Prerequisite gaps should become a repair route, not a reason to leave the object vague. | next action: Teach or transfer: Turn the mechanism into one sentence that predicts a neighboring concept. What would resolve this: - The learner can state the mechanism in their own words - The learner can name the prerequisite that would repair confusion - The learner can predict how the mechanism changes under one perturbation Answer as a careful research tutor: stay source-grounded, separate verified evidence from assumptions, name the relevant math objects, and end with one next action. Current deterministic role lens for this object: - Role lens: Learner - Evidence request: Ask what would make "Process Reward Models: Step-Level Verifiers for Reasoning" feel predictable rather than familiar. - Assumption to keep visible: Source ids lightman-2023-verify-step-by-step must support the exact object, not just the surrounding topic. - Proposed experiment: Ask the learner to perturb one representation, then check whether the same invariant survives in math, code, and demo. - Next action: The learner can state the mechanism in their own words
concept/concept-notebook/alignment/process-reward-models
concept:alignment/process-reward-models