Back to Feed
Reasoning / Training & Fine-Tuning

Optimizing Reasoning and Response Modes in LLMs

Original: Fusion Training for Mathematical Generalization in Large Language Models

Listen to the summary

Uses a voice available on your device

Audio options
On this page 4 sections
Related concepts 5 concepts

Key Takeaways

  • Mixing reasoning and concise data during training yields higher overall accuracy than training on them sequentially.
  • There is a negative correlation of r = -0.58 between non-thinking and thinking mode accuracy, meaning improving one often hinders the other.
  • Increasing the amount of concise, non-thinking supervision directly reduces the accuracy of the reasoning mode.
  • The authors developed Fusion Bench, a new benchmark combining open reasoning and concise datasets to evaluate these competing modes.

Summary & Methodology Analysis

The study addresses Thinking Mode Fusion (TMF), which aims to unify a long-form reasoning mode with a concise response mode within a single model. Using the Qwen3-4B model, the researchers applied LoRA, a method that performs parameter-efficient supervised fine-tuning by updating only a small subset of weights to minimize compute requirements. They constructed Fusion Bench using OpenMathReasoning for thinking-mode data and GSM8K for non-thinking-mode data. To manage these distinct behaviors, they used chat templates with /think tags, allowing the model to toggle between reasoning and concise outputs during inference.

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 goal of this research?

The goal is to understand and optimize the training dynamics, specifically data ratios and schedules, required to combine reasoning and concise response modes in one model.

Q2. What happens when you train a model to be better at concise answering?

The research shows that increasing non-thinking supervision reduces the accuracy of the reasoning mode.

Q3. What was the most effective training approach?

The Mix training schedule, which interleaves thinking and non-thinking data, achieved the highest overall accuracy across various data ratios.

Q4. How did the researchers implement Thinking Mode Fusion?

They used chat templates with /think tags to clearly distinguish between the reasoning and concise response modes.

Q5. What was the range of data ratios tested?

The thinking to non-thinking data ratio was varied from 1:4 to 4:1.

Q6. Did the study cover general-purpose coding tasks?

No, the study was restricted to mathematical reasoning, and its generalizability to other domains like code generation is currently uncertain.

Q7. What models and datasets were involved in the context of this study?

The study utilized the Qwen3-4B model and datasets including Fusion Bench, GSM8K, OpenMathReasoning, Calc-X, MAWPS, OpenMathInstruct-1, OpenMathInstruct-2, OMNI-MATH, LIMO, Skywork-MathQA, and NuminaMath.

Q8. How did the researchers ensure a controlled comparison?

They fixed the total amount of thinking-mode data while adjusting the ratio of thinking to non-thinking examples.

Q9. What are the limitations regarding training strategies?

Developing effective strategies to mitigate the tension between concise answering and long-form reasoning remains an open challenge.