arXivDaily arXiv每日学术速递 周一至周五更新

AI 大模型

语言大模型 / LLM

大语言模型、预训练、指令微调、后训练和语言模型应用。

今日/当前日期收录 4 信号源:cs.CL, cs.AI, cs.LG
2604.00626 2026-06-19 cs.LG cs.CL 版本更新 90%

A Survey of On-Policy Distillation for Large Language Models

大型语言模型的在线策略蒸馏综述

Mingyang Song, Mao Zheng

发表机构 * Tencent, China(腾讯,中国)

专题命中 后训练 :综述在线策略蒸馏方法,涉及LLM后训练

AI总结 本文综述了大型语言模型的在线策略蒸馏方法,探讨了蒸馏过程中如何通过反馈减少累积误差,提出了基于f-散度最小化的蒸馏框架,并分析了蒸馏与强化学习之间的联系。

Comments Ongoing Work

详情
AI中文摘要

随着大型语言模型(LLMs)在能力和成本上的持续增长,将前沿能力转移到更小、可部署的学生模型已成为核心工程问题,知识蒸馏仍然是这一转移的主导技术。工业流水线中普遍采用的静态模仿教师生成文本的方法存在结构性缺陷,随着任务变得更长且需要更多推理,这种缺陷变得更加严重。因为学生是在完美教师前缀上训练的,但在推理时必须生成自己的文本,小错误往往会积累成学生很少被训练来恢复的轨迹,导致的暴露偏差已被证明与序列长度的平方成比例。在线策略蒸馏(OPD)围绕这一观察重新组织训练循环,通过让教师对学生实际生成的内容提供反馈,以减少累积项趋于线性,并将蒸馏重新定义为迭代修正过程,而不是单次模仿。由此产生的文献在分歧设计、奖励引导优化和自我对抗方面有所扩展,但贡献仍然分散在知识蒸馏、RLHF和模仿学习社区中,缺乏统一的处理。本文提供了这样的处理。我们正式将OPD定义为学生采样轨迹上的f-散度最小化,将该领域沿三个设计轴(优化什么、信号来源在哪里、以及如何在实践中稳定训练)组织起来,并整合成功条件、反复失败模式以及OPD与KL约束强化学习之间的联系。最后,我们提出了由此综合而产生的开放性问题,包括蒸馏扩展定律、不确定反馈、代理蒸馏以及知识蒸馏与强化学习之间的日益增长的重叠。

英文摘要

As Large Language Models continue to grow in both capability and cost, transferring frontier capabilities into smaller, deployable students has become an important engineering problem, and knowledge distillation remains a common technique for this transfer. The prevailing recipe in industrial pipelines, static imitation of teacher-generated text, carries a structural weakness that grows more severe as tasks become longer and more reasoning-intensive. Because the student is trained on flawless teacher prefixes but generates its own at inference, small errors tend to accumulate into trajectories it has rarely been trained to recover from, and the resulting exposure bias has been shown to scale roughly with the square of sequence length. On-Policy Distillation reorganizes the training loop around this observation by having the teacher provide feedback on what the student actually produces, with the goal of reducing the compounding term toward linear and reframing distillation as an iterative correction process rather than single-pass imitation. The resulting literature has expanded along divergence design, reward-guided optimization, and self-play, yet contributions remain scattered across the knowledge distillation, RLHF, and imitation learning communities without a unified treatment. This survey provides such a treatment. We formalize OPD as f-divergence minimization over student-sampled trajectories, organize the field along three design axes (what to optimize, where the signal comes from, and how to stabilize training in practice), and consolidate success conditions, recurring failure modes, and the connection between OPD and KL-constrained reinforcement learning. We close with open problems that emerge from this synthesis, including distillation scaling laws, uncertainty-aware feedback, agent-level distillation, and the growing overlap between knowledge distillation and RL.

2602.22495 2026-06-19 cs.LG cs.AI 版本更新 90%

Reinforcement-aware Knowledge Distillation for LLM Reasoning

面向LLM推理的强化学习感知知识蒸馏

Zhaoyang Zhang, Shuli Jiang, Yantao Shen, Yuting Zhang, Dhananjay Ram, Shuo Yang, Zhuowen Tu, Wei Xia, Stefano Soatto

发表机构 * Meta Guo et al. Lin et al. Xu et al. Shao et al. Schulman et al. Xie et al.

专题命中 后训练 :强化学习感知知识蒸馏用于LLM推理

AI总结 提出RL感知蒸馏(RLAD),通过信任区域比率蒸馏(TRRD)在强化学习后训练中实现选择性模仿,解决分布不匹配和目标干扰问题,在逻辑推理和数学基准上优于现有方法。

详情
AI中文摘要

强化学习(RL)后训练最近推动了长链思维推理大语言模型(LLM)的重大进展,但这类模型的高推理成本促使将其蒸馏到更小的学生模型中。大多数现有的知识蒸馏(KD)方法是为监督微调(SFT)设计的,依赖于固定的教师轨迹或基于教师-学生KL散度的正则化。当与RL结合时,这些方法常常遭受分布不匹配和目标干扰:教师监督可能与学生不断变化的rollout分布不一致,并且KL正则化项可能与奖励最大化竞争,需要仔细的损失平衡。为了解决这些问题,我们提出了RL感知蒸馏(RLAD),它在RL期间执行选择性模仿——仅在改进当前策略更新时引导学生向教师学习。我们的核心组件,信任区域比率蒸馏(TRRD),用基于PPO/GRPO风格似然比的目标替代教师-学生KL正则化项,该目标锚定到教师-旧策略混合,从而在学生rollout上产生优势感知、信任区域约束的蒸馏,并自然平衡探索、利用和模仿。在多种逻辑推理和数学基准上,RLAD始终优于离线蒸馏、标准GRPO和基于KL的在策略教师-学生知识蒸馏。

英文摘要

Reinforcement learning (RL) post-training has recently driven major gains in long chain-of-thought reasoning large language models (LLMs), but the high inference cost of such models motivates distillation into smaller students. Most existing knowledge distillation (KD) methods are designed for supervised fine-tuning (SFT), relying on fixed teacher traces or teacher-student Kullback-Leibler (KL) divergence-based regularization. When combined with RL, these approaches often suffer from distribution mismatch and objective interference: teacher supervision may not align with the student's evolving rollout distribution, and the KL regularizer can compete with reward maximization and require careful loss balancing. To address these issues, we propose RL-aware distillation (RLAD), which performs selective imitation during RL -- guiding the student toward the teacher only when it improves the current policy update. Our core component, Trust Region Ratio Distillation (TRRD), replaces the teacher-student KL regularizer with a PPO/GRPO-style likelihood-ratio objective anchored to a teacher--old-policy mixture, yielding advantage-aware, trust-region-bounded distillation on student rollouts and naturally balancing exploration, exploitation, and imitation. Across diverse logic reasoning and math benchmarks, RLAD consistently outperforms offline distillation, standard GRPO, and KL-based on-policy teacher-student knowledge distillation.

2509.25148 2026-06-19 cs.AI 版本更新 90%

AAPA: Adversarially Anchored Preference Alignment for Post-Training of Large Language Models

AAPA:用于大型语言模型后训练的对抗锚定偏好对齐

Faqiang Qian, Kang An, Weikun Zhang, Ziliang Wang, Xuhui Zheng, Liangjian Wen, Yong Dai, Mengya Gao, Yichao Wu

发表机构 * Southwest University of Finance and Economics(西南财经大学)

专题命中 后训练 :提出对抗锚定偏好对齐框架,增强后训练目标

AI总结 提出AAPA框架,通过固定轻量判别器对策略输出与专家响应进行句子级对抗锚定,增强SFT、GRPO等后训练目标,在指令遵循基准上持续提升性能。

详情
AI中文摘要

大型语言模型的后训练对齐通常结合了专家演示上的监督微调(SFT)和来自偏好或可验证反馈的强化学习(RL)。SFT提供了有用的行为锚点,但可能过拟合静态演示,而RL鼓励探索但可能偏离专家行为或利用不完美的奖励。我们提出\textbf{AAPA}(\emph{对抗锚定偏好对齐}),这是一个插件式框架,通过句子级对抗锚定信号增强现有的后训练目标。AAPA使用固定的轻量判别器将策略生成结果与离线预收集的专家响应进行比较,因此在策略优化期间既不需要在线教师推理,也不需要判别器协同训练。相同的锚定项可以添加到SFT、GRPO和CHORD中,同时保留其原始训练流程。在指令遵循基准上的实验表明,AAPA在不同模型规模上一致地改善了相应的基础目标。特别是,分阶段的AAPA配置在\texttt{Qwen3-0.6B}上比强GRPO基线提高了5.77%,在\texttt{Qwen3-4B}上提高了3.75%。对响应长度、对数概率分布和判别器变体的进一步分析表明,对抗锚定为偏好优化提供了稳定的语义基础信号。代码可在\url{this https URL}获取。

英文摘要

Post-training alignment of large language models often combines supervised fine-tuning (SFT) on expert demonstrations with reinforcement learning (RL) from preference or verifiable feedback. SFT provides a useful behavioral anchor but can overfit to static demonstrations, whereas RL encourages exploration but may drift from expert behavior or exploit imperfect rewards. We propose \textbf{AAPA} (\emph{Adversarially Anchored Preference Alignment}), a plug-in framework that augments existing post-training objectives with a sentence-level adversarial anchoring signal. AAPA compares policy rollouts with offline, pre-collected expert responses using a fixed lightweight discriminator, and therefore requires neither online teacher inference nor discriminator co-training during policy optimization. The same anchoring term can be added to SFT, GRPO, and CHORD while preserving their original training pipelines. Experiments on instruction-following benchmarks show that AAPA consistently improves the corresponding base objectives across model scales. In particular, the staged AAPA configuration improves over a strong GRPO baseline by 5.77\% on \texttt{Qwen3-0.6B} and 3.75\% on \texttt{Qwen3-4B}. Further analyses on response length, log-probability distributions, and discriminator variants suggest that adversarial anchoring provides a stable semantic grounding signal for preference optimization. Code is available at \url{https://github.com/IsFaqq/AAPA}.

2602.09689 2026-06-19 cs.LG 版本更新 80%

Model soups need only one ingredient

模型汤只需一种成分

Alireza Abdollahpoorrostam, Nikolaos Dimitriadis, Adam Hazimeh, Pascal Frossard

发表机构 * EPFL(瑞士联邦理工学院) EPFL LTS4(瑞士联邦理工学院 LTS4)

专题命中 后训练 :MonoSoup方法通过SVD实现单检查点模型汤

AI总结 提出MonoSoup方法,利用SVD分解单检查点的层更新,通过熵有效秩自动重加权成分,实现强分布内-分布外平衡,无需多检查点。

详情
AI中文摘要

在目标分布上微调大型预训练模型通常会提高分布内(ID)准确性,但代价是分布外(OOD)鲁棒性下降,因为表示会专门适应微调数据。权重空间集成方法,如模型汤(Model Soups),通过平均多个检查点来缓解这一影响,但它们在计算上代价高昂,需要训练和存储数十个微调模型。在本文中,我们介绍了MonoSoup,一种简单、无数据、无超参数的事后方法,仅使用单个检查点即可实现强大的ID-OOD平衡。我们的方法对每一层的更新应用奇异值分解(SVD),将其分解为捕捉任务特定适应的高能量方向和引入噪声但可能仍编码对鲁棒性有用的残余信号的低能量方向。然后,MonoSoup使用基于熵的有效秩自动重新加权这些分量,并考虑模型的谱和几何结构的逐层系数。在ImageNet上微调并在自然分布偏移下评估的CLIP模型,以及在数学推理和多选题基准上测试的Qwen语言模型上的实验表明,这种即插即用方法是多检查点方法的实用且有效的替代方案,保留了其大部分好处而无需计算开销。

英文摘要

Fine-tuning large pre-trained models on a target distribution often improves in-distribution (ID) accuracy, but at the cost of out-of-distribution (OOD) robustness as representations specialize to the fine-tuning data. Weight-space ensembling methods, such as Model Soups, mitigate this effect by averaging multiple checkpoints, but they are computationally prohibitive, requiring the training and storage of dozens of fine-tuned models. In this paper, we introduce MonoSoup, a simple, data-free, hyperparameter-free, post-hoc method that achieves a strong ID-OOD balance using only a single checkpoint. Our method applies Singular Value Decomposition (SVD) to each layer's update and decomposes it into high-energy directions that capture task-specific adaptation and low-energy directions that introduce noise but may still encode residual signals useful for robustness. MonoSoup then uses entropy-based effective rank to automatically re-weigh these components with layer-wise coefficients that account for the spectral and geometric structure of the model. Experiments on CLIP models fine-tuned on ImageNet and evaluated under natural distribution shifts, as well as on Qwen language models tested on mathematical reasoning and multiple-choice benchmarks, show that this plug-and-play approach is a practical and effective alternative to multi-checkpoint methods, retaining much of their benefits without their computational overhead.