ATOD: Annealed Turn-Aware On-Policy Distillation for Multi-Turn Agentic Tasks
ATOD combines annealed schedule and turn-level uncertainty weighting to boost multi-turn agent performance.
Key Findings
Methodology
ATOD employs an annealed schedule that gradually shifts from on-policy distillation (OPD) to reinforcement learning (RL), balancing imitation and exploration. It introduces Turn-level Disagreement-Uncertainty Reweighting (T-DUR), which dynamically adjusts teacher supervision based on turn-level disagreement and uncertainty scores. The approach involves linear scheduling of coefficients κ(s) and ρ(s), and a soft gating mechanism that emphasizes key turns with high divergence or uncertainty, optimizing multi-turn learning efficiency and performance ceiling.
Key Results
- On ALFWorld, WebShop, and Search-QA datasets, ATOD outperforms baselines across student sizes (0.6B, 1.7B, 4B), with success rate improvements of 4.16 points over OPD and 23.62 over GRPO. It surpasses teacher models by an average of 2.16 points, demonstrating strong generalization.
- For weaker models like 0.6B, success rates jump from near-zero (0.78%) to 82.81% (ALFWorld), showing over 100× improvement, validating the effectiveness of annealed scheduling and T-DUR in early training stages.
- Ablation studies confirm that removing scheduling or T-DUR significantly reduces performance, highlighting their critical roles in balancing imitation and exploration.
Significance
This work addresses the longstanding challenge of efficiently training small models for complex multi-turn tasks by intelligently combining imitation and reinforcement learning. It advances the state-of-the-art in interactive agent training, enabling smaller models to achieve near or surpass teacher-level performance, thus reducing deployment costs and broadening application scope in real-world scenarios such as dialogue systems, autonomous agents, and knowledge reasoning.
Technical Contribution
The paper introduces a novel annealed schedule that smoothly transitions from teacher-guided to reward-driven learning, coupled with a turn-level soft gating mechanism (T-DUR) based on disagreement and uncertainty metrics. This combination effectively balances exploration and exploitation, improves training stability, and enhances performance ceiling. The approach is compatible with existing RL and distillation frameworks, offering a flexible, scalable solution for multi-turn tasks.
Novelty
This is the first work to integrate dynamic annealed scheduling with turn-level disagreement and uncertainty reweighting for multi-turn agent training. Unlike prior methods that treat imitation and RL separately, ATOD harmonizes both signals in a unified framework, enabling models to learn efficiently across different training phases and focus on critical decision points.
Limitations
- The scheduling parameters (κ, ρ) require manual tuning and may not generalize well across tasks without adaptation. Adaptive parameter tuning remains an open challenge.
- In extremely complex or lengthy interactions, the current T-DUR mechanism might not fully capture all critical turns, especially when signals are noisy or ambiguous.
- Training complexity and computational costs increase with model size and interaction length, potentially limiting scalability in resource-constrained environments.
Future Work
Future research will explore automatic, data-driven tuning of scheduling parameters, extend T-DUR to multi-modal and multi-task settings, and investigate more sophisticated uncertainty estimation techniques. Additionally, integrating model compression and efficient inference methods could facilitate deployment in real-world applications with limited resources.
AI Executive Summary
The rapid development of large language models (LLMs) has revolutionized natural language understanding and generation, yet deploying these models in resource-constrained environments remains challenging. Multi-turn interactive tasks, such as dialogue, web navigation, and question answering, demand models that can reason over multiple steps while balancing imitation of expert behavior and autonomous exploration. Existing approaches like on-policy distillation (OPD) excel at fast initial learning but plateau near teacher performance, while reinforcement learning (RL) can surpass this ceiling but suffers from sparse rewards and slow convergence.
This paper introduces ATOD (Annealed Turn-aware On-policy Distillation), a novel framework that combines the strengths of both paradigms through a carefully designed annealed schedule. Early training emphasizes teacher guidance via OPD, enabling rapid imitation. As training progresses, the influence shifts gradually towards RL, encouraging exploration beyond the teacher’s behavior. The key innovation lies in the Turn-level Disagreement-Uncertainty Reweighting (T-DUR), which dynamically adjusts supervision weights based on turn-specific signals, prioritizing critical decision points.
Experimental results across three benchmarks—ALFWorld, WebShop, and Search-QA—demonstrate ATOD’s superiority over existing methods. For small models (0.6B), success rates improve from near-zero to over 82%, outperforming pure RL and traditional distillation. Larger models (1.7B, 4B) also benefit, achieving success rates surpassing teacher models by significant margins. Ablation studies confirm that both the annealed schedule and T-DUR are essential for optimal performance.
This work offers a scalable, effective solution for training compact yet capable interactive agents, with promising implications for deploying intelligent systems in real-world applications. Future directions include adaptive scheduling, multi-modal extension, and efficiency improvements, aiming to further democratize AI capabilities in resource-limited settings.
Deep Analysis
Background
Recent advances in large language models (LLMs) have enabled impressive static text generation, but their application to multi-turn interactive tasks remains limited. Early works focused on supervised learning and knowledge distillation, such as teacher-student frameworks, to improve training efficiency. Reinforcement learning (RL), especially policy optimization algorithms like PPO and GRPO, was introduced to directly maximize environment rewards, enabling models to surpass imitation limits. OPD emerged as a promising hybrid, leveraging teacher token distributions for dense supervision, improving sample efficiency. However, these methods face challenges in balancing rapid initial learning with long-term exploration, especially in long-horizon tasks with sparse rewards. Recent research emphasizes dynamic, fine-grained control mechanisms, but comprehensive solutions remain elusive.
Core Problem
The core challenge lies in effectively combining imitation and exploration in multi-turn agent training. Pure distillation accelerates early learning but saturates near teacher performance, limiting potential. Pure RL can surpass this ceiling but struggles with sparse, delayed rewards, leading to inefficient exploration, especially for small models. Additionally, identifying critical decision points within long trajectories is difficult; uniform supervision often wastes resources on routine turns, while key turns may be underweighted. These issues hinder the development of small, efficient models capable of complex multi-turn reasoning, restricting their deployment in real-world scenarios.
Innovation
The paper proposes a hybrid approach with two main innovations. First, a linear annealed schedule smoothly transitions the training focus from teacher-guided distillation to reward-driven exploration, balancing early rapid learning with later performance gains. Second, T-DUR introduces turn-level disagreement and uncertainty metrics, which are combined via a soft OR function to dynamically weight teacher supervision. This mechanism emphasizes turns with high divergence or low confidence, ensuring the model concentrates on critical decision points. Together, these innovations enable more efficient training, better utilization of supervision signals, and improved performance ceiling, especially for small models in complex tasks.
Methodology
- �� Design a linear schedule: define κ(s) and ρ(s) to gradually shift emphasis from OPD to RL over training steps. • Compute turn-level disagreement (dk): token-wise log probability differences between teacher and student, normalized within each trajectory. • Calculate turn-level uncertainty (hk): negative log probability of student tokens, normalized similarly. • Fuse signals: combine dk and hk using a soft OR to produce turn weights wk, emphasizing turns with high divergence or uncertainty. • Formulate advantage function: At = κ(s)AOPDt + ρ(s)AGRPOt, where AOPDt is token-level distillation advantage, and AGRPOt is RL advantage. • Optimize policy: use PPO-style clipped surrogate with advantage At, updating the model iteratively. • Implement annealing: linearly adjust κ(s) and ρ(s) based on training progress p(s), ensuring smooth transition from imitation to exploration.
Experiments
The evaluation involves three datasets: ALFWorld (embodied instruction), WebShop (web navigation), and Search-QA (multi-hop QA). Models include Qwen3-0.6B, 1.7B, and 4B, trained with a 150-step window. Baselines include vanilla, GRPO, SDAR, OPD, SOD, and TCOD. Success rate and trajectory length are primary metrics. Ablation studies test the impact of scheduling, T-DUR, and reweighting strategies. Results show ATOD consistently outperforms baselines across all sizes and tasks, with significant gains especially for smaller models. Sensitivity analyses confirm the importance of the annealing schedule and turn-level reweighting.
Results
ATOD achieves success rates of 82.81% (ALFWorld, 0.6B), surpassing OPD by 6.25 points and teacher models by 2.16 points on average. For larger models, success rates reach over 85%, with notable improvements over pure distillation and RL. Ablation results indicate removing scheduling or T-DUR reduces success by 4-6 points, confirming their critical role. The method effectively balances imitation and exploration, leading to faster convergence and higher performance ceilings. The success in diverse tasks demonstrates robustness and scalability.
Applications
This approach can be directly applied to training efficient multi-turn dialogue agents, autonomous systems, and interactive AI assistants. It requires environment feedback and a teacher model, making it suitable for resource-limited settings. Long-term, the framework can extend to multi-modal tasks, integrating vision and speech, to develop more versatile intelligent agents. Its ability to improve small models opens pathways for deploying AI in embedded devices, customer service bots, and educational tools, democratizing access to advanced AI capabilities.
Limitations & Outlook
The method relies on manually tuned scheduling parameters, which may not generalize across tasks. In highly complex or noisy environments, turn-level signals might be insufficient to identify critical turns. Computational costs increase with model size and interaction length, limiting scalability. Future work should focus on adaptive parameter tuning, more sophisticated uncertainty estimation, and reducing training overhead to broaden applicability.
Plain Language Accessible to non-experts
想象你在教一个朋友玩一款复杂的桌游。刚开始,你会给他很多建议,帮他快速理解规则,就像老师在训练模型时用的指导。随着他逐渐熟悉游戏,你希望他自己多尝试,找到更好的策略,就像用奖励鼓励探索。可是,如果你一直只给建议,他可能只会模仿,不会创新。于是,你设计了一个聪明的系统:一方面,刚开始多指导,帮助他快速入门;另一方面,逐步减少指导,让他自己探索。系统还会特别关注那些不确定或容易出错的关键步骤,优先帮他解决这些难题。这样,他既能快速学会,又能变得更厉害,甚至超越你!
ELI14 Explained like you're 14
想象你在教你的弟弟玩一款很难的游戏。一开始,你会告诉他怎么玩,帮他快速掌握,就像老师给提示一样。后来,你希望他自己多试试,找到更好的方法,就像奖励他探索。可是,如果你只告诉他怎么做,他就只会照着做,不会变聪明。于是,你设计了一个聪明的办法:一方面,刚开始多给提示,帮他学会基本操作;另一方面,慢慢减少提示,让他自己尝试。你还会特别关注那些看起来不确定或容易出错的步骤,优先帮他解决那些难点。这样,他既能快点学会,又能变得更厉害,甚至超越你!
Glossary
On-policy distillation (OPD)(策略内蒸馏)
一种通过模仿教师模型的token分布,提供密集监督的知识蒸馏方法,提升学生模型的学习效率。
论文中用以快速引导学生模仿教师行为,作为训练的早期策略。
退火调度(Annealed schedule)
在训练过程中逐步调整不同学习信号的权重,使模型由模仿向自主探索平滑过渡。
核心机制,用于平衡OPD与RL的贡献。
Turn-level Disagreement-Uncertainty Reweighting(T-DUR)
基于回合的分歧与不确定性指标,动态调节教师监督的强度,以优先处理关键或难点回合。
提升模型对关键回合的关注,改善学习效果。
Group Relative Policy Optimization(GRPO)
一种基于群体相对优势的强化学习算法,利用样本组内的相对奖励进行策略更新。
作为强化信号,与OPD结合使用,提升探索效率。
成功率(Success Rate)
模型在任务中达到预定义目标的比例,衡量任务完成效果。
主要评估指标,用于比较不同方法的性能。
Open Questions Unanswered questions from this research
- 1 如何实现更高效的自适应调度机制,自动调节κ(s)与ρ(s),以适应不同任务和模型规模。
- 2 在极端复杂或长序列交互中,调度与重加权机制的极限与优化策略仍待探索。
- 3 多模态、多任务环境下,调度策略的泛化能力与扩展性不足,未来需研究跨模态调控机制。
Applications
Immediate Applications
智能助理优化
通过ATOD提升小型语言模型在多轮对话中的表现,实现更智能、更自主的交互,降低硬件成本。
机器人自主学习
应用于机器人自主决策系统,结合环境反馈与教师指导,增强机器人在复杂环境中的适应能力。
Long-term Vision
普适智能系统
推动小模型在多模态、多任务场景中的自主学习能力,逐步实现低成本、 高性能的智能系统普及。
Abstract
Training small language-model agents for long-horizon interactive tasks requires both fast imitation and reward-driven improvement. On-policy distillation (OPD) provides dense teacher guidance and typically improves rapidly in the early stage, but its gains saturate once the student approaches the teacher, limiting the final performance ceiling. Reinforcement learning (RL) directly optimizes environment rewards and encourages exploratory improvement toward a higher reward-defined ceiling, but sparse and delayed feedback makes early-stage learning much less efficient than OPD. In this paper, we propose ATOD (Annealed Turn-aware On-policy Distillation), a hybrid online distillation algorithm that explicitly exploits this complementarity. (1) ATOD uses an annealed OPD-RL schedule: OPD dominates early training to approach teacher-level behavior, while RL is gradually strengthened to drive reward-based exploration. (2) ATOD introduces Turn-level Disagreement-Uncertainty Reweighting (T-DUR), which softly gates the distillation sig- nal to prioritize turns with high disagreement or uncertainty in long trajectories. Experiments on ALFWorld, WebShop, and Search-QA show that ATOD consistently outperforms competing post-training baselines: across the three student sizes, ATOD improves average success rate by 4.16 points over OPD and 23.62 points over GRPO, while surpassing the corresponding teacher models by 2.16 points.