Short answer. Outcome supervision only tells a model its final answer was wrong but not which step broke, so long reasoning traces collect many correct steps under one negative signal. Process reward models fix this by scoring intermediate steps rather than final answers, trading a higher labelling cost for a much stronger training signal. Lightman et al. (2023) showed effective PRM training only requires identifying the first erroneous step; OmegaPRM then finds that step by binary search rather than labelling every one.
Key takeaways
- Outcome supervision tells a model its answer was wrong but not which step broke; process reward models score intermediate steps to close that gap.
- Lightman et al. (2023) showed effective PRM training only requires identifying the first erroneous step in a reasoning chain, since earlier steps are correct by construction.
- OmegaPRM applies binary search to locate that first error, cutting the number of evaluations needed compared with labelling every step.
- Reasoning trace annotation requires domain-expert reviewers who judge each step in isolation from the final answer, not general-purpose annotators.
- Reasoning skill transfers across languages better than factual knowledge: reinforcement learning on Chinese reasoning data improved performance on German, Spanish and Bengali evaluations too.
Why does outcome supervision fail on long reasoning traces?
Outcome supervision only tells a model whether its final answer was right or wrong, so a twelve-step reasoning chain that reaches the wrong answer gets one negative signal spread across every step, including the correct ones.
Outcome-only supervision provides little information about which intermediate steps were helpful when the final answer is wrong. In reinforcement learning setups where the verifier only checks the final answer, long reasoning traces produce many samples receiving identical outcome rewards, which weakens the learning signal to the point where the model cannot tell a lucky guess from sound reasoning.
The fix is to label the steps. That sounds obvious and it is operationally difficult, because it requires a kind of annotation most data programmes are not set up to produce — closer to the domain-expert review used for enterprise LLM training data than to routine labelling.
What is the difference between outcome and process reward models?
Outcome reward models evaluate only the final answer, while process reward models assess the correctness of each intermediate step, trading a higher labelling cost for a much stronger training signal.
Outcome reward models (ORMs) are reward models that score only a reasoning chain's final answer, providing one bit of signal for the entire chain. They are cheap to label, since you only need to know whether the result was right.
Process reward models (PRMs) are reward models that score the correctness of each intermediate reasoning step rather than just the final answer. They have been used for reranking, search and test-time scaling by evaluating the quality of the reasoning process itself. Step-level annotation is more expensive per example than outcome-level annotation but produces substantially stronger supervision signals for reasoning quality.
There is also a subtler benefit. A model trained only on outcomes can learn to reach right answers through reasoning that does not hold up, because nothing in the training signal penalised the bad path. Process supervision is what makes the visible reasoning trustworthy rather than decorative, which is why it increasingly sits alongside RLHF, SFT and other post-training data that enterprise teams buy.
How can process reward model training be made affordable?
Training an effective process reward model does not require labelling every step in every trace; it only requires finding the first step that went wrong, because everything before that step is correct by construction.
First-error identification is the finding, established by Lightman et al. (2023), that labelling only the first incorrect step in a chain is sufficient supervision for effective PRM training. Once the first error is found, all preceding steps are annotated as correct and all subsequent steps as incorrect.
That converts an exhaustive labelling task into a search problem, and search can be optimised. OmegaPRM (Luo et al., 2024) employs binary search to locate the first erroneous step, reducing the number of evaluations required and, as the authors describe it, emulating the human annotation process without labelling every step. For a twelve-step trace, binary search means roughly four judgements rather than twelve — at scale, the difference between a viable programme and an unaffordable one.
Who should annotate reasoning traces?
Reasoning trace annotation needs reviewers with genuine domain expertise who can verify each step's logic, not general annotators trained for standard labelling tasks.
Annotating reasoning traces requires a fundamentally different annotator profile than standard labelling tasks. A mathematics trace needs someone who can spot that step seven applied a valid operation to the wrong quantity. A code trace needs someone who can see that the logic is sound but the loop boundary is off by one. A legal or medical reasoning trace needs someone qualified in that domain — the kind of vetting described in how annotators are recruited, trained and certified for specialist domains.
This is expert review, and it should be staffed and priced accordingly. A team recruited and trained for bounding boxes or sentiment labels cannot do it, and putting them on the task produces a dataset that looks complete and teaches the model nothing useful.
The label set used in practice distinguishes four states rather than a binary: correct and necessary steps that advance the reasoning; correct but redundant steps, which matter because redundancy is a real quality problem in generated reasoning; incorrect steps; and incomplete steps requiring additional information to validate.
Each step receives an independent label applied by a qualified reviewer evaluating that step in isolation from the final answer. A reviewer who knows the final answer was correct will unconsciously rationalise a flawed intermediate step, and a reviewer who knows it was wrong will hunt for errors that are not there. Hiding the outcome during step review is what keeps the labels honest.
Why does trace quality matter more than volume?
A large set of logically flawed reasoning traces trains a model to reproduce those flaws, because the model is learning to imitate the reasoning shown to it, not just to reach correct answers.
Two quality dimensions matter, and they pull in different directions. Accuracy and logical coherence at each step are the critical floor. Diversity of reasoning paths matters for generalisation: training on a narrow set of reasoning patterns produces a model that is brittle on problems requiring a different approach, so a thousand traces that all solve problems the same way is worse than five hundred that solve them five different ways.
The tension is that the easiest way to get high-quality traces is to generate them from a strong model with a fixed prompt template, which produces exactly the narrow, homogeneous reasoning that limits generalisation. Diversity has to be engineered deliberately, not hoped for.
Inter-annotator agreement is the measured rate at which independent qualified reviewers assign the same correctness label to a reasoning step. High agreement on step correctness, measured on a calibration set before full annotation begins, is the signal that the programme is working — the same discipline covered in gold sets, audit sampling and consensus for QA on annotated data generally. If two qualified experts disagree on whether step seven is correct, either the step is genuinely ambiguous or the guideline for what counts as a step is unclear, and both need resolving before scale.
Can reasoning trace labelling be automated?
Parts of it can. Several automated methods estimate step-level correctness without full human review, but each has real limitations and works best combined with expert review for calibration and hard cases.
Relying on humans to label data is an important bottleneck in scaling process-level datasets; annotating fine-grained step rewards typically requires human experts or high-performing models, which is labour-intensive and costly either way. Several automated approaches exist. Rollout-based estimation (MathShepherd) generates completions from partial reasoning chains and measures the percentage that reach the correct solution, using that as the step's value — effective, but computationally heavy. Binary search over rollouts (OmegaPRM) combines rollout evaluation with binary search to cut cost. Information-theoretic labelling uses Monte Carlo Net Information Gain to derive step labels from information gain. Contrastive approaches such as CPMI quantify changes in predicted probability between correct and incorrect answers at each step, curated into the CPMI-80k dataset. ProcessThinker, published at ICLR 2026, avoids a separate reward model entirely by rewriting traces into a step-tagged format for cold-start fine-tuning, then applying reinforcement learning with a rollout-based process reward.
The caveats are consistently reported. Automated approaches relying on Monte Carlo rollouts or search can be noisy and sensitive to how "steps" are defined — a design decision, not a property of the data. Step entropy research also shows not all steps contribute equally to predictive power, so uniform labelling effort is inefficient. The pragmatic architecture is automation for coverage and volume, human expert review for the calibration set, the ambiguous cases, and the domains where a wrong step has real consequences — the same judgment call at issue in how reliable an LLM is as a judge for automated evaluation more broadly.
Does reasoning trace data transfer across languages?
Yes, more reliably than most training data. Reinforcement learning on reasoning data in one language has been shown to improve performance in several unrelated languages, though domain-specific reasoning tied to local context still needs building per market.
Most reasoning trace work is done in English and mathematics, for understandable reasons: verifiable answers, abundant source material, available expertise. Research on cross-lingual generalisation found that reinforcement learning on Chinese reasoning data improved performance not only in Chinese but substantially on German, Spanish and Bengali evaluations, well beyond what supervised fine-tuning on the same data achieved. Reasoning skill, as distinct from factual recall, appears to transfer between languages remarkably well.
That changes the investment case: process supervision in one language buys more elsewhere than knowledge data does, in contrast to most multilingual data collection work, where factual knowledge in one language does not transfer to another. But it does not buy everything — a clinical reasoning trace referencing one country's drug names, or a financial one referencing one country's tax treatment, still needs building per market regardless of how well the underlying reasoning skill transfers.
How does Lifewood approach reasoning trace annotation?
Lifewood provides reasoning trace and process-reward annotation as part of its AI data services, using human-in-the-loop domain-expert review across its language coverage.
Declaring the interest: this work sits alongside RLHF and preference data, with review across 50+ languages. Two observations from that vantage are worth stating independent of who does the work.
The first is a staffing observation. Reasoning trace annotation breaks the standard annotation operating model: you cannot recruit a general pool, train them on guidelines and scale. It needs domain-qualified reviewers, which means a different recruitment channel, a different pay band, a smaller available pool per domain, and a longer ramp. Programmes that budget for reasoning traces at ordinary annotation rates discover this several weeks in, and the usual outcome is either a quality collapse or a renegotiation.
The second is about calibration. The measurement that matters is inter-annotator agreement on step correctness, established on a calibration set before scaling. In practice the first calibration round on a reasoning task tends to produce lower agreement than teams expect, and the reason is almost always segmentation: two experts disagreeing about whether step seven is correct are frequently disagreeing about where step seven begins. Fixing the step definition resolves more disagreement than retraining the annotators does — the domain is harder and the reviewers are more expensive, but the discipline is the same one behind enterprise LLM training data generally.
What should you do when scoping a reasoning trace programme?
Start by defining what counts as a step and writing it down with examples, since that single decision drives labelling consistency, automated labelling reliability and the comparability of results.
From there: use first-error identification rather than exhaustive labelling, since Lightman and colleagues established that this is sufficient for effective PRM training and binary search makes it efficient. Recruit domain experts, not general annotators, and budget for a longer ramp — the kind of vetting laid out in writing annotation guidelines that annotators actually follow applies here with a much higher bar. Judge steps in isolation from the final answer, since that is the control that keeps labels honest. Run a calibration set and measure step-level agreement before scaling, and treat low agreement as a segmentation problem first and a training problem second. Engineer path diversity deliberately, since generating traces from one model with one template produces homogeneous reasoning and a brittle result. Use automation for coverage and humans for the hard cases, rather than choosing between them. And do not assume outcome correctness implies process correctness — a trace that reaches the right answer through flawed reasoning is a negative training example wearing a positive label, and it is the most damaging record type in the dataset. Teams comparing vendors for this kind of work can start from a comparison of data annotation companies for LLM training and generative AI.