Let's Verify Step by Step

Hunter Lightman, Vineet Kosaraju, Yura Burda, Harri Edwards, Bowen Baker, Teddy Lee, Jan Leike, John Schulman, Ilya Sutskever, Karl Cobbe

2023 · ICLR

Let's Verify Step by Step

Problem

Framing

Outcome-only reward models cannot localize where chain-of-thought reasoning fails, so they mis-rank solutions that reach the right answer for the wrong reasons. The paper argues that step-level process supervision fixes this credit-assignment problem and lifts best-of-NN math search from 72.4% to 78.2% on MATH.

Currently Used Methods

Direct antecedents

Proposed Method

Architecture

The system has two parts: a generator that emits newline-delimited solution steps, and a reward model that scores either the final answer token (ORM) or every step terminus (PRM). Large-scale models are GPT-4-derived; small-scale models use the same design with roughly 200×200\times less pretraining compute.

Verified figure: annotation interface showing a math problem with per-step positive, negative, and neutral labels for process supervision.

Loss / Objective

PRM training is next-token classification over step labels.

LPRM(θ)=i=1Tlogpθ(yixi)\mathcal{L}_{\mathrm{PRM}}(\theta) = - \sum_{i=1}^{T} \log p_{\theta}(y_i \mid \mathbf{x}_{\le i})

Here yi{pos,neg,neutral}y_i \in \{\text{pos}, \text{neg}, \text{neutral}\} is the label for step ii.

Sampling Rule / Algorithm

At test time, the PRM ranks complete solutions by multiplying stepwise correctness probabilities.

s(x)=i=1Tpθ(yi=posxi)s(\mathbf{x}) = \prod_{i=1}^{T} p_{\theta}(y_i = \text{pos} \mid \mathbf{x}_{\le i})

Training Procedure

Evaluation

Datasets

Metrics

Headline results

Table 1: OOD generalization on recent STEM tests

ORMPRMMajority Vote# Problems
AP Calculus68.9%86.7%80.0%45
AP Chemistry68.9%80.0%71.7%60
AP Physics77.8%86.7%82.2%45
AMC10/1249.1%53.2%32.8%84
Aggregate63.8%72.9%61.3%234

Verified results figure: best-of-N curves on MATH showing process-supervised RM above outcome-supervised RM and majority voting, with a summary row for best-of-1860.

Ablations

Method Strengths and Weaknesses

Strengths

Weaknesses

Suggestions from the authors

Links

Prior Papers

Further Papers