Source-linked AI summary

InT: Self-Proposed Interventions Enable Credit Assignment in LLM Reasoning

Matthew Y. R. Yang, Hao Bai, Ian Wu, Gene Yang, Amrith Setlur, Aviral Kumar

arXiv:2601.14209v1cs.LGcs.AIcs.CL

TL;DR

Outcome-reward RL assigns credit only through final-answer rewards, making it difficult to distinguish useful intermediate reasoning from errors and motivating alternatives to process reward models. Intervention Training has the model verify its own failed traces against reference solutions, propose single-step corrections, and fine-tune before RL. After InT and RL, a 4B model improves nearly 14% on IMO-AnswerBench and surpasses larger open-source models such as gpt-oss-20b.

  • Problem

    Outcome-reward RL uniformly reinforces or penalizes entire reasoning traces, while accurately training process reward models to identify corrective steps remains challenging.

  • Method

    Intervention Training compares failed model traces with reference solutions, identifies the first error, proposes a single-step correction, and applies SFT before RL.

  • Results

    Nearly 14% improvement on IMO-AnswerBench over a 4B-parameter base model follows InT and subsequent RL, surpassing gpt-oss-20b.

  • Takeaways & Limitations

    InT provides a simple, effective approach for assigning credit to incorrect rollouts while using reference solutions to improve capable models for subsequent RL.

  • Takeaways & Limitations

    The study does not include a PRM-based comparison because high-quality PRMs were unavailable for the Qwen3 models and prior PRM training required substantial compute and data collection.

Abstract

from arXiv · show

Outcome-reward reinforcement learning (RL) has proven effective at improving the reasoning capabilities of large language models (LLMs). However, standard RL assigns credit only at the level of the final answer, penalizing entire reasoning traces when the outcome is incorrect and uniformly reinforcing all steps when it is correct. As a result, correct intermediate steps may be discouraged in failed traces, while spurious steps may be reinforced in successful ones. We refer to this failure mode as the problem of credit assignment. While a natural remedy is to train a process reward model, accurately optimizing such models to identify corrective reasoning steps remains challenging. We introduce Intervention Training (InT), a training paradigm in which the model performs fine-grained credit assignment on its own reasoning traces by proposing short, targeted corrections that steer trajectories toward higher reward. Using reference solutions commonly available in mathematical reasoning datasets and exploiting the fact that verifying a model-generated solution is easier than generating a correct one from scratch, the model identifies the first error in its reasoning and proposes a single-step intervention to redirect the trajectory toward the correct solution. We then apply supervised fine-tuning (SFT) to the on-policy rollout up to the point of error concatenated with the intervention, localizing error to the specific step that caused failure. We show that the resulting model serves as a far better initialization for RL training. After running InT and subsequent fine-tuning with RL, we improve accuracy by nearly 14% over a 4B-parameter base model on IMO-AnswerBench, outperforming larger open-source models such as gpt-oss-20b.

1. Introduction

Outcome-reward RL struggles to assign credit within long, often incorrect reasoning traces. Intervention Training uses self-identified, single-step corrections and SFT before RL to improve this assignment.

  • Motivation: Incorrect rollouts often contain substantial correct reasoning, but outcome-based RL treats those steps like the mistakes that cause failure.This indiscriminate penalty can produce verbosity or premature reasoning shifts, while fully failed groups may provide no learning signal.
  • Motivation: Credit assignment requires identifying which intermediate step caused failure, but estimating step values with branched rollouts is prohibitively expensive.The challenge grows as reasoning traces become longer and contain many structured steps.
  • Intervention Training: Intervention Training compares an incorrect trace with a reference solution, identifies the first error, and proposes a single-step corrective intervention.The intervention enables counterfactual continuations from immediately before the failure point.
  • Intervention Training: The model is trained with SFT on the rollout prefix concatenated with the intervention, then further optimized with RL.This localizes training to the step associated with failure rather than uniformly updating the entire trace.
  • Results: Nearly 10% average improvement across four challenging mathematical reasoning benchmarks and a ∼14% gain on IMO-AnswerBench follow online RL with InT.InT is especially effective with strong base models and relatively small SFT datasets, where it produces more on-policy trajectories than alternatives.

2. Preliminaries, Notation, and Problem Statement

Outcome-reward RL assigns the same final-answer signal across all reasoning steps, creating noisy credit assignment in long trajectories. The paper focuses on identifying errors within incorrect rollouts, especially because failures are common, lengthy, and often contain many correct steps before the first mistake.

  • Credit assignment: Outcome-reward RL uniformly reinforces or discourages every step according to the final answer, even when intermediate steps contributed unequally.This can reinforce irrelevant steps in successful traces and suppress locally correct steps in failed traces.
  • Credit assignment: Process Reward Models could provide step-level credit, but reliably estimating value functions that distinguish correct from incorrect reasoning remains difficult.The paper presents this difficulty as a major obstacle to conventional credit-assignment approaches.
  • Problem statement: The problem setting assumes a reference solution for each training problem and seeks to pinpoint the incorrect steps that derail failed rollouts.Such reference solutions are commonly available in open-source mathematics datasets.
  • Motivation: More than 80% of rollout groups contain no successful trajectories at the start of training on a curated set of Olympiad-level mathematics problems.Extracting supervision from failed rollouts therefore targets a prevalent training regime.
  • Motivation: Failed attempts average 10,000 to 15,000 more tokens than successful ones, making individual step contributions harder to disentangle.Longer trajectories increase the difficulty of assigning credit precisely.
  • Problem statement: More than 60% of first errors arise after the 50th step, so effective credit assignment must locate mistakes throughout trajectories rather than only near their beginnings.Incorrect rollouts may contain substantial correct prefixes before the first mistake.

3. Credit Assignment via Self-Proposed Interventions

The paper proposes self-proposed interventions for credit assignment: the model verifies failed reasoning, identifies its first error, and generates a corrective step. Conditioning rollouts on these interventions improves accuracy and problem coverage over erroneous or intervention-free continuations.

  • Motivation and main idea: The approach addresses credit assignment by identifying problematic reasoning steps and proposing alternative steps without value-function training.It leverages the difficulty gap between verifying individual steps against reference solutions and generating complete solutions.
  • Self-verification procedure: The model verifies a generated trajectory against a reference solution, locates the first incorrect step, and replaces it with a single-step intervention.The intervention is intended to steer the remaining rollout toward the correct answer.
  • Performance comparison: Intervention-conditioned rollouts achieve higher accuracy and coverage than continuing from the original error or omitting intervention.Coverage counts problems with at least one correct rollout, while accuracy measures rollout reward.
  • Complementarity with hints: 18/176 problems are solved with interventions alone, compared with 11/176 using hints and 25/176 when hints and interventions are combined.The results indicate that hints and interventions provide complementary benefits.
  • Ablations and scaling: Instruction-following failures reduce intervention coverage, while larger intervention-generating models achieve approximately 2× higher accuracy than the 4B model.The instruction-following comparison reports 73 out of 334 versus 80 out of 334 covered problems.

4. InT: Intervention Training for Credit Assignment

Intervention Training patches the base model with supervised learning on prefixes concatenated with corrective interventions, then applies standard outcome-reward RL. The best configuration excludes corrected suffixes, filters for successful continuations, and provides a strong initialization for RL.

  • Training pipeline: InT collects intervention-guided data, applies SFT to patch the base model, and then runs standard outcome-reward RL.The procedure is designed to let subsequent RL learn from difficult problems that previously produced mostly incorrect rollouts.
  • Training objective: SFT teaches the model to internalize corrective patterns so it can generate similar interventions when reference solutions are unavailable.The design question is which parts of an intervention-guided rollout should be cloned.
  • SFT design choices: Cloning the prefix and intervention while excluding the suffix and filtering for successful continuations yields the highest coverage and accuracy.The configuration is evaluated on 235 problems subsampled from DeepScaleR.
  • Prefix cloning: Cloning the prefix and intervention solves 40 more problems out of 235 than omitting the prefix.The prefix preserves the context in which the intervention is relevant.
  • Suffix cloning: Including the corrected suffix nearly halves the number of unique problems solved compared with training only on the prefix and intervention.The authors attribute this to reduced exploration during subsequent RL.

5. Experimental Evaluation of InT

InT is evaluated as a credit-assignment intervention for difficult reasoning problems, followed by SFT and RL. Across patching, RL initialization, and standardized benchmarks, InT consistently outperforms the base model and competing approaches.

  • Alternative Corrections: InT improves pass@1 and pass@k over Self-Reflection, reference solutions, and DeepSeek-R1 traces across both training and test sets.The comparison includes R1 Think and R1 Summary traces, alongside reference-solution and self-reflection SFT.
  • On-Policy Data: InT trajectories have the highest likelihood under the base model, and performance ordering closely tracks trajectory negative log-likelihood, though the correlation is not necessarily causal.More off-policy traces can distort the base model’s next-token distribution when memorized during fine-tuning.
  • On-Policy Data: InT preserves entropy near the base model by using short interventions, supporting exploration during subsequent RL.By contrast, off-policy reference-solution fine-tuning can produce high-entropy or distorted reasoning distributions and poor RL initialization.
  • RL Initialization: InT reduces incorrect-only rollout problems and produces the largest reward increase when used to initialize RL on curated hard problems.The same effect appears on unseen IMO-shortlist problems, where InT corrects base-model errors qualitatively.
  • Standardized Benchmarks: 33.72 average score across four benchmarks is a ∼59% relative improvement over the base model (21.17) and a ∼19% improvement over standard SFT+RL (28.26).On IMO-AnswerBench, InT scores 25.62 versus 11.68 for the base model and 23.46 for standard RL.
  • Standardized Benchmarks: Reference-solution SFT averages 20.76, below the untuned base model’s 21.17, while Self-Reflection reaches 15.53 on IMO-AnswerBench versus InT’s 25.62.The results are consistent with off-policy fine-tuning hindering exploration or inducing overfitting.

6. Related Work

The related work frames InT against credit-assignment, natural-language-feedback, hint-guided-RL, and intervention-based methods outside LLMs. Its distinguishing feature is using short, targeted corrections to identify and replace a key reasoning error during training.

  • Credit Assignment in LLM Reasoning: Outcome-reward RL obscures which intermediate reasoning steps deserve credit, while PRMs provide denser rewards but remain costly or unsettled.Branched rollouts are expensive, and human-annotated PRMs can suffer from reward hacking.
  • Credit Assignment in LLM Reasoning: InT explicitly locates a single key mistake and generates an improved step, rather than verifying every step or assigning binary process correctness.The method amortizes value estimation with policy optimization to produce an intervention.
  • Learning from Natural Language Feedback: Natural-language-feedback and text-gradient methods use textual signals, but InT’s feedback is short, targeted, and used to improve training rather than only inference-time behavior.Related approaches may combine human feedback, refinement models, or teacher-generated correction trajectories.
  • Hint-Guided RL: Hint-guided RL conditions policies on static partial-solution prefixes, whereas InT targets errors that occur later in the reasoning trace.Over 70% of errors in the cited analysis occur after the first 50 steps, limiting prefix hints’ direct reach.
  • Training with Interventions Outside LLMs: Intervention-based training also appears in imitation learning, self-driving, robotics, and long-horizon control through expert queries at states visited by the learner.DAgger and HG-DAgger are cited as examples outside LLM training.

7. Discussion and Perspectives on Future Work

InT assigns credit to incorrect rollouts by self-verifying reasoning and proposing single-step interventions, then identifies future directions for more autonomous and continual self-improvement.

  • Intervention Training: InT self-verifies incorrect rollouts, identifies critical errors, and proposes single-step interventions before fine-tuning and RL.The intervention is inserted before the critical error to steer the trajectory toward a correct solution.
  • Self-improvement by combining different LLM capabilities: Future work could strengthen verification to reduce reliance on reference solutions and support more autonomous self-improvement.The proposed direction includes explicitly training verification capabilities and potentially removing dependence on human-provided solutions.
  • Credit assignment in continual learning: The current study focuses on single-turn mathematical problem solving, leaving continual learning with evolving memory and context for future work.Open questions include tracing errors to earlier decisions preserved through summaries or neural memory modules.
  • Intervention procedure: The intervention prompt requires detailed verification, classification of the first critical error, and one replacement step that does not reveal the exact answer.The generated response is organized into a verification log, critical error report, and intervention step.
  • Intervention procedure: The intervention procedure checks that the correction is complete, inserted before the error, and free of the reference solution’s exact answer.The draft is revised if any self-check receives a “Yes” verdict.

Critical Error Report

The reported critical error is the unsupported inference that finitely many 2025-tuples imply eventual periodicity, which invalidates the student’s conclusion about |S|.

  • Critical Error Report: The student’s claim that finite S implies eventual periodicity is identified as a factual and logical error.The report states that the implication is false for sequences over infinite alphabets such as Z.
  • Counterexample: Finite-alphabet non-eventually-periodic sequences can still have finitely many length-k blocks, as illustrated by the Fibonacci word.The passage states that such a sequence can have exactly k + 1 distinct blocks of length k.
  • Consequence: Because the student never corrects the assumption, later reasoning accepts ∞ as the answer on the flawed premise.The report explicitly classifies the error as critical and not recoverable.
  • Intervention: The proposed intervention asks the student to consider finite-alphabet, non-eventually-periodic sequences without giving the reference answer.It is inserted at Substep 14, where the critical error occurs.

C. Evaluation Configuration

Experiments with Qwen3-4B-Instruct use a fixed recommended sampling configuration unless otherwise specified.

  • Sampling configuration: Qwen3-4B-Instruct experiments use temperature 0.7, top-p 0.8, and top-k 20 by default.The configuration follows the official recommended settings unless an experiment specifies otherwise.

D. Training Hyperparameters for InT

The supplied passages identify RL and self-reflection comparisons but do not provide the requested InT training hyperparameters.

  • Training hyperparameters: PipelineRL and LLaMa Factory hyperparameters are listed in Tables 5 and 6, respectively.The supplied table passages provide captions but no hyperparameter values.
  • Self-reflection baseline: The self-reflection baseline rewrites the entire solution rather than generating a single-step intervention.The baseline uses a high-level reference solution and asks the base model to produce a complete refined solution.
  • Comparison: InT consistently outperforms the self-reflection baseline in the reported Figure 12 and Table 4 comparison.The supplied passage states the direction of the comparison but does not provide numerical values.

F. Are Interventions Memorized?

The paper tests whether InT learns general self-correction rather than memorizing interventions by examining its reasoning on unseen IMO Shortlist problems. InT-trained traces revise incorrect hypotheses when counterexamples expose them.

  • Generalization: InT and base models were compared on two IMO Shortlist 2024 problems outside the training set to assess generalization.The examples were Problem C1 and Problem C2.
  • Problem C1: On Problem C1, the InT model questioned an incorrect formula after obtaining 3 for n = 3 and updated its hypothesis correctly.
  • Problem C2: On Problem C2, only the InT model tested whether n = 12 might not be cool, leading it beyond the simple multiples-of-four pattern to the right hypothesis.
  • Self-Correction via Counter-Example: The C1 reasoning trace illustrates self-correction through a concrete counterexample that contradicts the conjecture n −1 = 2 for n = 3.
  • Comparison: The evaluation also compares InT with interventions generated by Gemini 2.5 Pro and with distillation of full expert reasoning traces.

G.1. Inference-Only Results

Inference-time interventions substantially improve solution sampling on hard problems, while localizing the mistake itself provides a large share of the gain. The broader experiments evaluate these effects against RL, distillation, and multiple hard-problem benchmarks.

  • Inference-only results: 3.8× improvement in accuracy and 47 more problems solved were obtained by rolling out from Gemini-generated interventions instead of naive rollouts.This earlier setting used 235 DeepScaleR problems with pass@32 = 0.
  • Inference-only results: Interventions doubled the number of problems with at least one correct rollout and improved rollout accuracy by more than an order of magnitude.
  • Inference-only results: 2.4× accuracy gains and 22 additional covered problems came from pinpointing the mistake location alone relative to baseline.
  • Experimental setup: The experiments use hard problems on which a strong model still fails, with Gemini 2.5 Pro serving as an oracle for generating reference interventions.The initial hard set contains problems unsolved by the base model, and the oracle solves 16% in one attempt among 472 unsolved problems.
  • Experimental setup: The study compares InT against standard RL and distillation, and evaluates training, held-out hard-problem, and standardized benchmark performance.Reported outputs use 32,768-token lengths across the evaluation settings.
  • RL initialization: Across 0–150 RL iterations, RL from the InT-patched model consistently improves pass@k, whereas RL from base or distilled models does not.

G.4. InT outperforms distillation on standardized evaluations

The paper examines whether InT gains transfer from hard training problems to standardized mathematics evaluations. InT followed by RL achieves the strongest reported in-distribution pass@8 performance, while intervention patching preserves the base distribution better than full-trace distillation.

  • Evaluation scope: InT gains are evaluated on standardized mathematics benchmarks to test transfer beyond previously unsolved hard training problems.
  • Standardized evaluations: Distillation-based RL can degrade held-out pass@1 as training increases despite continued training-set progress, unlike the reported InT behavior.
  • Standardized evaluations: InT yields gains on both in-distribution hard-problem and standardized hard-problem benchmarks compared with distillation.
  • Standardized evaluations: The paper attributes InT’s advantage over distillation mainly to interventions altering the base-model distribution less than distilling entire reasoning traces.
  • Standardized evaluations: InT followed by RL attains the highest pass@8 performance on the i.i.d. hard-problem test set among the compared patching methods.
Loading 2601.14209v1…