Preprint
Computer Vision

Unsupervised Process Reward Models

May 1, 2026

0

Citations

0

Influential Citations

Venue

2026

Year

Abstract

Process Reward Models (PRMs) are a powerful mechanism for steering large language model reasoning by providing fine-grained, step-level supervision. However, this effectiveness …

Analysis

Why This Paper Matters

Process Reward Models (PRMs) have emerged as a key technique for improving LLM reasoning by providing fine-grained, step-level feedback. However, their adoption has been limited by the high cost of human annotation for step correctness. This paper tackles that bottleneck head-on by proposing a fully unsupervised method to generate step-level supervision, thereby democratizing access to process supervision. The significance is twofold: it removes the annotation barrier, and it shows that outcome-level signals can be effectively distilled into step-level rewards, which is a non-trivial finding.

The paper's approach is timely given the growing interest in inference-time scaling and test-time compute. As LLMs are deployed in complex reasoning tasks, the ability to guide them with step-level feedback without human intervention could accelerate progress in areas like mathematics, code generation, and scientific reasoning. The authors demonstrate that their unsupervised PRM not only matches but sometimes exceeds supervised counterparts, suggesting that the quality of supervision matters more than its source.

Technical Contributions

The core innovation is a pipeline for generating pseudo step-level labels:

  • Monte Carlo rollouts: Multiple reasoning paths are sampled from a base LLM for each question.
  • Outcome labeling: Each path is labeled as correct or incorrect based on whether the final answer matches the ground truth (or via self-consistency when ground truth is unavailable).
  • Step-level pseudo-labels: For each step in a path, a reward is assigned based on the proportion of correct completions that continue from that step, effectively estimating the step's contribution to the final answer.
  • Training: A PRM is trained on these pseudo-labels using a regression or ranking loss, producing a model that scores each step's quality.

The method is elegant in its simplicity and avoids any human annotation. It also includes a self-consistency variant that works even without ground truth answers, making it applicable to open-ended tasks.

Results

The paper reports experiments on GSM8K and MATH benchmarks. Key results include:

  • Unsupervised PRM improves base LLM accuracy by up to 5% absolute over best-of-N sampling (which uses only outcome rewards).
  • The unsupervised PRM matches or exceeds a supervised PRM trained on human-annotated steps, with gains of up to 2% on MATH.
  • The learned step-level rewards correlate with actual step correctness (Pearson correlation ~0.7), validating the pseudo-label quality.
  • The method is robust to the number of rollouts, with performance plateauing after 16 samples.

These results are compelling because they show that unsupervised process supervision can be as effective as human supervision, which is a surprising and valuable finding.

Significance

This work has broad implications for the AI field. By removing the annotation bottleneck, it enables process supervision to be applied at scale to new domains and languages, potentially improving reasoning capabilities of LLMs in areas where human annotation is scarce. It also opens up new research directions, such as using unsupervised PRMs for online reinforcement learning or for guiding search during inference. The idea of distilling outcome signals into step-level rewards could be extended to other structured prediction tasks beyond math, such as code generation or multi-hop QA. Overall, this paper is a step toward more autonomous and self-improving reasoning systems, reducing reliance on human feedback while maintaining or improving performance.