Why do language models collapse into generic templates?
Explores whether low reward variance during RL training causes policies to abandon input-specific reasoning in favor of boilerplate responses, and whether filtering for high-variance prompts can prevent this failure.
Naming template collapse is diagnostic; RAGEN-2 also gives a mechanism for why it happens, framed as a signal-to-noise ratio problem in RL. The task-learning signal comes from reward variance across samples of the same prompt. When that within-input reward variance is low — the prompt is too easy, too hard, or otherwise uninformative — the task gradient it produces is weak. With the task signal weak, the regularization terms in the objective (entropy bonuses, KL penalties, and similar) dominate the update, and their effect is to smooth the policy toward generic outputs. The result is that the policy is pushed toward input-agnostic templates: the collapse is not a random drift but the predictable outcome of regularization out-muscling a starved task gradient.
This turns a mysterious failure into a controllable one. Because reward variance is the culprit and it is cheap to compute, the paper proposes SNR-Aware Filtering — selecting high-signal prompts (high reward variance) before each parameter update — which improves performance across tasks, scales, and modalities and slots into existing pipelines. The mechanism generalizes a familiar theme: Does policy entropy collapse limit reasoning performance in RL? describes regularization/optimization forces flattening a policy, and here the same regularization-dominates dynamic produces collapse along a different axis (cross-input distinguishability rather than token entropy). It also motivates curriculum-by-variance: the useful training signal lives at the prompts where reward is neither guaranteed nor impossible, echoing why Why does RL succeed more on some tasks than others? — signal quality, not signal presence, is what trains reasoning.
Inquiring lines that read this note 13
This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.
How do policy learning algorithm choices affect multi-objective optimization stability? What makes weaker teacher models effective for stronger student training?- What causes on-policy distillation to become unstable at scale despite dense rewards?
- What makes student-teacher distributional mismatch derail on-policy distillation?
Related concepts in this collection 3
This note in its neighbourhood — explore the map, then jump to a related concept in the list below.
Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph
-
Does policy entropy collapse limit reasoning performance in RL?
As reinforcement learning models become more confident in their policy choices, entropy drops and performance plateaus. Can we identify and counteract this bottleneck to sustain scaling?
extends: same regularization-dominates dynamic, but collapse along cross-input distinguishability rather than token entropy
-
Why does RL succeed more on some tasks than others?
Reinforcement learning shows wildly different improvement rates across conversational tasks—from near-total capability unlock to modest gains. What determines whether RL will transform performance or produce incremental progress?
relates: both hinge on reward-signal quality, not mere presence, as the driver of learning
-
Can entropy metrics detect when reasoning becomes formulaic?
Entropy measures diversity within single inputs, but cannot reveal whether a model's reasoning actually varies across different inputs. This matters because high entropy can mask template collapse, where reasoning looks varied but is fundamentally the same.
grounds: this note supplies the causal mechanism for the failure that note diagnoses
Related papers in this collection 8
Papers most semantically related to this note, ranked by cosine similarity in the embedding space.
- RAGEN-2: Reasoning Collapse in Agentic RL
- Reinforcement Learning Finetunes Small Subnetworks in Large Language Models
- Mechanistically Interpreting the Role of Sample Difficulty in RLVR for LLMs
- Echo Chamber: RL Post-training Amplifies Behaviors Learned in Pretraining
- The Surprising Effectiveness of Negative Reinforcement in LLM Reasoning
- A Survey on Test-Time Scaling in Large Language Models: What, How, Where, and How Well?
- Efficient Reinforcement Learning via Large Language Model-based Search
- Critique-GRPO: Advancing LLM Reasoning with Natural Language and Numerical Feedback
Original note title
low reward variance is what drives reasoning toward input-agnostic templates — weak task gradients let regularization erase cross-input differences