Source-linked AI summary
Step Potential Advantage Estimation: Harnessing Intermediate Confidence and Correctness for Efficient Mathematical Reasoning
Fei Wu, Zhenrong Zhang, Qikai Chang, Jianshu Zhang, Quan Liu, Jun Du
TL;DR
RLVR’s outcome-based rewards provide coarse credit assignment and lack a semantic measure of stepwise reasoning progress, making redundant verification difficult to distinguish from useful deduction. The paper introduces training-free probing for confidence and correctness, combines them into Step Potential, and uses SPAE for step-aware credit assignment. Across benchmarks, SPAE improves accuracy while reducing response length, though its correctness probe assumes structured answers and probing adds training computation.
Problem
RLVR lacks a semantically grounded, step-level measure of reasoning progress, limiting distinction between necessary deduction and redundant verification.
Method
A training-free probe extracts intermediate confidence and correctness, combines them into Step Potential, and uses SPAE to amplify gains, penalize drops, and discourage post-saturation checking.
Results
SPAE consistently improves accuracy and reduces response length across models and benchmarks, including 25.1%, 25.3%, and 24.4% shorter responses with 6.7%, 3.3%, and 1.1% higher accuracy on AIME2024, AIME2025, and GPQA.
Takeaways & Limitations
Step Potential provides dense, step-aware supervision that targets Over-Checking and Right-to-Wrong failures while improving the performance–cost trade-off.
Takeaways & Limitations
The correctness probe assumes structured answers, limiting applicability to freeform outputs.
Abstract
from arXiv · showhide
Reinforcement Learning with Verifiable Rewards (RLVR) elicits long chain-of-thought reasoning in large language models (LLMs), but outcome-based rewards lead to coarse-grained advantage estimation. While existing approaches improve RLVR via token-level entropy or sequence-level length control, they lack a semantically grounded, step-level measure of reasoning progress. As a result, LLMs fail to distinguish necessary deduction from redundant verification: they may continue checking after reaching a correct solution and, in extreme cases, overturn a correct trajectory into an incorrect final answer. To remedy the lack of process supervision, we introduce a training-free probing mechanism that extracts intermediate confidence and correctness and combines them into a Step Potential signal that explicitly estimates the reasoning state at each step. Building on this signal, we propose Step Potential Advantage Estimation (SPAE), a fine-grained credit assignment method that amplifies potential gains, penalizes potential drops, and applies penalty after potential saturates to encourage timely termination. Experiments across multiple benchmarks show SPAE consistently improves accuracy while substantially reducing response length, outperforming strong RL baselines and recent efficient reasoning and token-level advantage estimation methods. The code is available at https://github.com/cii030/SPAE-RL.
1 Introduction
RLVR’s outcome-only rewards create coarse credit assignment, leaving models without a semantic step-level signal to distinguish necessary deduction from redundant checking. SPAE addresses this gap with Step Potential and step-aware advantages, improving accuracy while shortening reasoning.
- Outcome-level RLVR rewards make it difficult to identify which trajectory parts are essential, often producing unnecessarily long reasoning.
- Token-entropy and length-control methods remain largely agnostic to semantic progress and cannot distinguish deduction from redundant verification.
- Step Potential combines intermediate confidence and correctness after each reasoning step to estimate the model’s current reasoning state.
- Over-Checking occurs when reasoning continues after potential saturation, increasing cost and sometimes causing Right-to-Wrong failures.
- SPAE amplifies potential gains, penalizes potential declines, and applies saturation penalties to encourage timely termination.
- 25.1%, 25.3%, and 24.4% response-length reductions coincide with 6.7%, 3.3%, and 1.1% accuracy improvements on AIME2024, AIME2025, and GPQA.These results are reported for DeepSeek-R1-Distill-Qwen-7B.
2 Preliminary
The paper models long-CoT outputs as reasoning trajectories divided into discrete steps and frames RLVR as outcome-level optimization. It situates SPAE against group-relative and normalized advantage baselines that still provide coarse trajectory credit.
- 2.1 Problem Formalization: A long-CoT output consists of a reasoning trajectory τ followed by a final summary s.
- 2.1 Problem Formalization: The reasoning trajectory is segmented into K contiguous steps separated by explicit delimiters, which serve as the basic analysis units.
- 2.1 Problem Formalization: RLVR maximizes task-level reward based on whether the extracted final answer matches the ground-truth answer.
- Baselines: GRPO estimates baselines from group statistics but assigns one scalar advantage to every token in a response, yielding coarse credit assignment.
- Baselines: DAPO uses global token-level normalization and exploration-oriented clipping, while RF-B standardizes advantages over the full batch.
- Baselines: The paper combines DAPO’s exploration strategies with RF-B’s global batch normalization as its robust RLVR baseline.
3 Methodology
SPAE uses training-free step-level probing to estimate reasoning progress from confidence and correctness, then shapes token-level advantages to reward progress and suppress post-solution checking.
- The Probing Mechanism: SPAE extracts confidence and correctness after each reasoning step and combines them into Step Potential, a bounded measure of intermediate reasoning state.The probe generates short tentative-answer continuations; confidence derives from entropy, while correctness measures compatibility with the ground-truth answer.
- Step Potential: Step Potential distinguishes exploration, correct confidence, and false confidence, addressing the inability of correctness alone to separate uncertainty from confident error.Its range is [−1, 1], with exploration near 0, correct confidence approaching +1, and false confidence approaching −1.
- Over-Checking and R2W Failures: Over-Checking begins after potential saturation, when redundant verification can increase inference cost and overturn a previously correct solution into an incorrect final answer.The method uses εsat = 0.9 unless otherwise specified to identify saturated reasoning steps.
- Step Potential Advantage Estimation: SPAE combines a saturation penalty with potential-difference shaping: it downweights post-saturation outcome credit, rewards pivotal potential increases, and penalizes regressions.The token-level advantage combines these components through step-to-token alignment, assigning all tokens in a step the same penalty and shaping signals.
- Potential Saturation Penalty: The saturation penalty decays from 1 to 1 −α as saturated steps accumulate, encouraging termination after the reasoning potential has plateaued.The decay is initially slow and then becomes rapid as saturated steps accumulate.
4 Experiments
Across mathematical benchmarks and backbones, SPAE improves the accuracy–length trade-off while reducing redundant reasoning and maintaining higher accuracy under equal training budgets. Ablations indicate that both potential-difference shaping and saturation penalties contribute to its behavior.
- Training Dynamics: SPAE reaches higher AIME2024 accuracy under the same wall-clock training budget.Training curves also show steadily decreasing response length compared with longer plateaus for DAPO and RF-B.
- Main Results: SPAE achieves the best accuracy–length trade-off across three backbones, improving accuracy while consistently shortening responses.It is compared with RLVR, efficient-reasoning, and token-level shaping baselines.
- Accuracy: 63.86% accuracy on Qwen-7B surpasses DAPO at 62.73% and RF-B at 62.41%.On Llama-8B, SPAE improves the base model by +6.35% (53.86% →60.21%).
- Efficiency: ∼24%, ∼17.1%, and ∼33.5% average token reductions occur on Qwen-7B, Llama-8B, and Qwen3-4B, respectively.SPAE maintains competitive performance on the out-of-domain GPQA dataset despite reduced inference cost.
- Ablation Study: Removing potential-difference shaping lowers average accuracy from 63.86% to 62.47%, while removing the saturation penalty increases response length from 6,825 to 7,517 tokens.The saturation penalty primarily curbs Over-Checking, whereas potential-difference shaping guides step-wise progress.
- Reasoning Behaviors: 614 checking tokens and a 2.65% R2W rate are reported for SPAE, versus 1,511 checking tokens and 8.10% R2W for Base.SPAE retains a 3,483-token solving budget and achieves 51.05% accuracy in this analysis.
5 Conclusion
The paper introduces SPAE to make reasoning progress observable and use it for step-aware credit assignment. Experiments across Qwen and Llama families support a superior performance–cost trade-off through reduced redundant verification and inference latency.
- Conclusion: SPAE uses training-free probing to formalize Step Potential and quantify reasoning progress during policy optimization.The method targets Over-Checking and Right-to-Wrong failures with dense, step-aware supervision.
- Conclusion: Across Qwen and Llama families, SPAE significantly boosts accuracy while reducing inference latency through precise pruning.The paper characterizes this as a superior Pareto frontier between performance and cost.
Limitations
The paper identifies additional computation during training, structured-answer assumptions, and a mathematical-reasoning-focused evaluation scope as limitations. It leaves lighter probing, format-agnostic correctness estimation, and broader domains for future work.
- Limitations: SPAE introduces additional computation during training, motivating future lightweight or adaptive probing strategies.This is an explicit limitation of the proposed approach.
- Limitations: The correctness probe assumes structured answers, limiting applicability to freeform outputs.The authors identify format-agnostic correctness estimators as future work.
- Limitations: Experiments focus on mathematical reasoning, leaving code generation and broader reasoning domains for future work.The reported scope does not include those domains.
C.1 Temporal Alignment with Oracle Supervision
The probe’s saturation step closely aligns with an oracle’s identification of when a correct solution is fully established. Truncating reasoning at saturation reduces length, improves accuracy, and eliminates observed right-to-wrong failures.
- The oracle defines kGT as the step where correct logic and the answer are first fully established, while kProbe is the earliest step exceeding εsat.The displacement Δk indicates synchronization, delayed detection, or early triggering.
- 86.0% of trajectories achieve exact synchronization between probe saturation and the oracle-identified solving step.Among non-zero displacements, 75.0% are early triggers and 25.0% are delayed detections.
- Probe-truncated decoding appends </think> after saturation and discards subsequent reasoning before generating the final summary.This intervention directly tests whether post-saturation reasoning is redundant or harmful.
- 13,765 to 12,931 tokens: truncation reduces Len@16 while increasing Acc@16 from 46.04 to 48.44.R2W failures fall from 5.4 to 0.0, supporting the Over-Checking hypothesis.
C.3 Variance and Stability Analysis
The probe signals remain statistically stable across reasoning progress while varying systematically over the trajectory. Confidence and correctness variance peak in middle progress intervals and decline near the beginning and end.
- The analysis estimates within-step sampling variance from N = 16 probe continuations at every step boundary.Steps are grouped into five relative-progress bins from [0, 0.2) through [0.8, 1.0].
- Both Var[Conf] and Var[Acc] are smallest near trajectory beginnings and ends but peak in middle progress bins.The pattern is consistent with an exploratory phase before model convergence.
- Var[Conf] rises from 0.00216 in [0, 0.2) to 0.00402 in [0.4, 0.6), then falls to 0.00157 in [0.8, 1.0].
- Var[Acc] peaks at 0.00395 in [0.2, 0.4) and decreases to 0.00279 in [0.8, 1.0].
D.1 Datasets
The evaluation spans in-domain and out-of-domain mathematical reasoning benchmarks, with standardized answer formats and training data. SPAE is compared against RLVR, token-level advantage estimation, and efficient-reasoning baselines under matched settings.
- Datasets: The benchmark suite includes AIME 2024, AIME 2025, AMC 2023, Minerva-Math, OlympiadBench, and GPQA.These cover mathematical competitions, step-by-step mathematical reasoning, olympiad-style problems, and out-of-domain scientific reasoning.
- Datasets: All models are fine-tuned on DAPO-MATH-17K, containing 17K prompts paired with integer answers.Official test sets and standard answer formats are used, with dataset licenses followed.
- Baselines: The comparison includes strong RLVR baselines, token-level advantage methods, and efficient reasoning approaches.Methods include DAPO, Reinforce++-Baseline, Entropy Advantage, KTAE, LC-R1, and DAST.
- Baselines: Table 7 reports Pass@16 performance comparisons between SPAE and the evaluated baselines.Best results in each block are highlighted.
D.3 Training Details
Training uses a group-based, off-policy RLVR setup with specified rollout, optimization, and SPAE settings. A hybrid verification pipeline combines rule-based extraction with semantic-equivalence fallback judgments.
- Training setup: Training uses VeRL with an off-policy scheme, global batch size 640, mini-batch size 32, and group size G = 8.Rollout temperature is 1.0 and maximum sampled length is 16,384 tokens.
- Training setup: Experiments run on 32× NVIDIA H200 GPUs.
- Optimization: Optimization uses learning rate 1 × 10^-6, no KL regularization, and decoupled clipping bounds εhigh = 0.28 and εlow = 0.2.The higher upper bound is used to encourage rollout diversity and exploration.
- Optimization: SPAE uses ξ = 0.5, α = 0.5, and N = 5, with training lengths varying by model family.R1-Distill-Qwen-7B, R1-Distill-Llama-8B, and Qwen3-4B variants train for 640, 600, and 560 steps, respectively.
- Verification: Answer verification first applies Math Verify and then uses xVerify-3B-Ia for rejected answers requiring semantic-equivalence judgments.
E Extended Experimental Results
Extended experiments show SPAE remains competitive across backbones and benchmarks, with training dynamics indicating lower entropy, higher accuracy, and shorter inference length. The appendix also specifies the annotation protocol for identifying the earliest sentence where a correct answer is established.
- Pass@16 Across Benchmarks: SPAE achieves consistently strong Pass@16 performance across backbones and benchmarks, improving AIME24 and reaching best or tied-best results on multiple benchmarks.On other backbones, it remains competitive with strong RLVR baselines, supporting transferability of the shaping strategy.
- Training Dynamics: Entropy, Accuracy, and Length: Across DeepSeek-R1-Distill-Llama-8B and Qwen3-4B-Thinking, SPAE yields lower entropy, higher Acc@16, and shorter Len@16 than DAPO and RF-B.The similar curves to those for DeepSeek-R1-Distill-Qwen-7B suggest a stable optimization effect across models.
- SPAE Training Pipeline: The SPAE pipeline samples query batches, probes response steps, estimates step-level signals, shapes advantages, and globally normalizes them before policy updating.Algorithm 1 organizes these operations into group sampling, probing and Step Potential computation, advantage estimation, and global normalization.
- Answer Identification Protocol: For each response, the annotation protocol identifies the earliest sentence where the correct answer is first derived, calculated, or established.Selection includes completed calculations, mathematically equivalent expressions, and implicitly final correct values without requiring an explicit answer label.
- Probing and Advantage Estimation: The probing mechanism generates N short continuations from each step prefix to extract dense signals describing reasoning-step quality.These signals are used within the step-aware advantage computation and subsequent batch normalization.