Back to Feed
Reasoning / Reinforcement Learning

Learning from Failure to Improve Reasoning

Original: ReflectRL: Learning from Golden Negative Trajectories via Reflective-to-Direct Reasoning

Listen to the summary

Uses a voice available on your device

Audio options
On this page

Key Takeaways

  • ReflectRL improves reasoning performance across 9 benchmarks and 4 different training methods.
  • The approach uses Golden Negative Trajectories (GNTs) to leverage failed expert reasoning instead of discarding them as noise.
  • Models trained with ReflectRL maintain significantly higher policy entropy, which helps avoid early convergence to sub-optimal solutions.
  • The method is compatible with 4 common LLM backbones and is validated across varied benchmarks including math and general reasoning tasks.

Summary & Methodology Analysis

ReflectRL optimizes model training by rethinking how developers use data from expert models. Standard on-policy training methods discard expert trajectories that result in failures. The researchers identify these as Golden Negative Trajectories (GNTs), which are sequences that contain high quality reasoning prefixes even if the final result is incorrect. The system uses two specific interfaces: a Reflective Reasoning template that forces the model to identify and repair errors found in the GNT, and a Direct Reasoning interface for standard inference. By leveraging these GNTs as a privileged context during training, the student model learns to correct reasoning paths even when it only interacts with the Direct interface during standard execution.

Interactive System Flowchart

Click diagram to expand and zoom

Cross-Examination & FAQs

A deeper dive clarifying mechanics, constraints, and baseline evaluations.

Q1. What is the primary contribution of this paper?

The paper introduces ReflectRL, a method that allows models to learn from expert reasoning trajectories that previously failed, effectively turning discarded data into high quality training samples.

Q2. How does ReflectRL handle failed expert data?

It identifies expert failures that still contain valid reasoning prefixes, labeling them as Golden Negative Trajectories, and uses these to teach the model how to identify and repair mistakes.

Q3. Does this method work with existing LLMs?

Yes, it is compatible with 4 LLM backbones, including Qwen2.5 and Llama 3.1 models.

Q4. How does the training process evolve over time?

The system uses a Reflective to Direct Policy Transition, which utilizes a transition kernel, specifically cosine decay, to shift the training rollout construction from Reflective Reasoning to Direct Reasoning as training progresses.

Q5. What happens to policy entropy during training?

ReflectRL maintains higher policy entropy, reaching approximately 0.15 during training, whereas methods like GRPO often fall below 0.03 by step 250.

Q6. Are there specific requirements for the GNT data?

Yes, the GNT must maintain higher process rewards and valid reasoning prefixes to be effective.

Q7. What are the limitations of this approach?

Reflective guidance must be closely aligned with the target problem; if the GNT is mismatched, such as through length bias, the method may produce a negative reflection gain.

Q8. Which benchmarks were used to validate the model?

The paper evaluated performance on 9 benchmarks, including AIME 2024, AIME 2025, AMC, MATH 500, Minerva, OlympiadBench, ARC-c, GPQA-Diamond, and MMLU-Pro.

Q9. What is the cost of implementing this method in production?

The paper does not specify the dollar cost or compute resource requirements for implementation.