[CVPR/ICLR 2025] ToCoRL: Internalizing "Chameleon-Like" Behavioral Plasticity in LLMs
Revealing Behavioral Plasticity in Large Language Models: A Token-Conditional Perspective
This paper introduces Token-Conditioned Reinforcement Learning (ToCoRL), a framework designed to unlock and stabilize "behavioral plasticity" in Large Language Models. By conditioning generation on specific token prefixes, the authors enable Large Reasoning Models (LRMs) to switch between step-by-step reasoning and direct factual answering, achieving SOTA performance across diverse tasks without capability degradation.
Executive Summary
TL;DR: Researchers have uncovered that Large Language Models (LLMs) possess an inherent "behavioral plasticity" that allows them to radically change their problem-solving strategy based purely on the first few tokens generated. By introducing Token-Conditioned Reinforcement Learning (ToCoRL), they've successfully trained models that can switch from deep, mathematical "thinking" to concise, factual retrieval without losing performance in either—essentially creating a "General Purpose" reasoning engine.
Context: This work moves beyond traditional SFT. It treats LLMs not as static knowledge bases, but as adaptive systems where the initial "prefix" sets a trajectory that can be stabilized through Reinforcement Learning.
The Problem: The "Thinking" Penalty
Modern Large Reasoning Models (LRMs) like OpenAI’s o1 or Qwen-Thinking are optimized for "Deep Thinking." While this is great for calculus, it is often detrimental for simple factual questions (e.g., "In what year was species X described?").
The authors found that LRMs often "overthink" simple facts, leading to:
- Hallucinations: The "thought" process generates spurious connections.
- Efficiency Loss: Massive token counts for simple "yes/no" answers.
- Accuracy Drops: The model creates complex justifications for incorrect retrievals.
Methodology: Steering the Chameleon
The core insight is Token-Conditional Generation. By forcing the model to start with a specific sequence (like a direct answer prefix from an Instruct model), the model’s internal state pivots. It abandons its "Deep Thinking" mode and enters a "Direct Retrieval" mode.
1. Exposing Plasticity
As shown in Figure 2, by simply forcing 3 tokens, a model that usually writes a 1000-word "thought" process suddenly switches to a concise factual response.

2. The ToCoRL Framework
To make this behavior permanent and autonomous, the authors propose ToCoRL. It modifies the standard RL objective (like GRPO or REINFORCE) with a customized KL-divergence term:
\max_{s\sim \mathcal{D}}\bigl {[}\underset {a\sim \pi}{\mathbb{E}}[A^{\pi}(s,a)\log \pi_{ heta}(a|s)] - \lambda \mathrm{KL}( ilde{\pi}_{\mathrm{TC}}||\pi_{ heta})\bigr {]}
This objective guides exploration. Early in training, the model is "pushed" to imitate the successful behavior induced by token-forcing. Over time, it internalizes this, learning to choose the "Direct Answer" mode for facts and "Thinking" mode for math automatically.
Experiments: Breaking the Reasoning-Retrieval Tradeoff
The authors tested ToCoRL on the Qwen3 series. The results are striking:
| Model Version | SimpleQA (Fact) | AIME '25 (Math) | Avg. Length |
|---|---|---|---|
| Qwen3-Thinking (Baseline) | 18.9% | 80.5 | 1255 |
| ToCoRL Applied | 28.3% | 81.5 | Reduced |

Key Behavioral Insight: Recalibrative Reasoning
Post-training, a new behavior emerged. For hard factual problems, the model doesn't just "think"; it performs Recalibrative Reasoning. It repeatedly generates candidate answers it deems correct, uses them as context, and terminates only when it gains confidence.
Critical Analysis & Conclusion
Takeaway: This paper proves that "behavior" in LLMs is not just about what is in the weights, but how the model is "pushed" at the start of a sequence. ToCoRL provides a principled way to stabilize these pushes into permanent capabilities.
Limitations: The current implementation relies on an "Instruct" model to provide the initial prefixes during RL. Future work could explore if the model can discover these "behavioral pivots" entirely through self-exploration (unsupervised behavior discovery).
Future Outlook: This paves the way for truly versatile models that don't need "system prompts" to be told how to act. They will simply look at the problem and shift their internal "behavioral coloring" to match the task at hand.
