Paper: 2607.24720 Authors: Tianyi Men, Zhuoran Jin, Kang Liu, Jun Zhao Categories: cs.CL, cs.AI, cs.LG

The Gap

Existing research on LLM agents mostly trains on uncontrollable Internet data — web trajectories, human demonstrations scraped from the wild. The problem: we don’t actually know how planning ability gets acquired during pre-training, what post-training methods like GRPO or distillation actually do to planning, or how multi-source training interacts. Prior work either studies these stages in isolation or uses opaque environments where you can’t disentangle variables. Think of it like trying to understand gravity by watching random objects fall in a crowded room — too many confounds.

This paper builds a controlled lab (a deterministic multi-turn environment with tunable complexity) and runs a full physics-style investigation: acquire → shape → integrate, across three clean experimental stages.

Problem: LLM planning is a black box
    |
    v
Assumption: We can decompose it into 3 stages
    |          and study each in a controlled env
    v
Method: Build deterministic multi-turn environment
    |     + isolate pre-training / GRPO-OPD / MOPD
    v
Evidence:
    |  CoT state modeling > atomic skills
    |  OPD > GRPO on long-horizon low-quality
    |  MOPD: pattern compatibility determines
    |         generalization vs interference
    v
Conclusion: Planning follows "physics-like" laws
            you can discover and exploit

The Increment

One sentence: Before this paper, multi-turn planning in LLMs was trained and evaluated in uncontrolled settings with no mechanistic understanding; after this paper, we have a controlled experimental framework that reveals specific, testable laws governing how planning ability is acquired, shaped, and integrated.

Core Mechanism

The paper’s contribution isn’t a single model — it’s an experimental pipeline with three stages, each producing distinct findings.

Stage 1 — Pre-training acquisition. They construct a deterministic multi-turn environment (think: a gridworld with controllable states, actions, and transitions). They vary what data goes into pre-training: atomic skill trajectories (short, modular), long-horizon trajectories (multi-step, goal-directed), and CoT-annotated trajectories (explicit state-transition reasoning). They measure generalization to unseen compositions and longer horizons.

Stage 2 — Post-training shaping. They compare two RL post-training methods: GRPO (Group Relative Policy Optimization) and OPD (On-Policy Distillation from a teacher). Using mutual information analysis, they decompose what the student learns into “planning patterns” (transferable reasoning strategies) vs “task-specific knowledge” (memorized procedures). They map three regimes: where post-training is unnecessary (student already good), effective (post-training helps), and unsupported (post-training can’t fix the gap).

Stage 3 — Post-training integration (MOPD). They train students on *multiple teacher environments simultaneously via On-Policy Distillation. The key variable: how much do the teachers’ planning patterns overlap?

Stage 1: PRE-TRAINING ACQUISITION
    [Raw Data] --> [Controlled Env Pre-train]
         |                    |
    Atomic Skills       CoT State Transitions
    Long-horizon Traces     |
         |                  v
         +-----> [Measure: Compositional
                  Generalization]
                        |
                        v
Stage 2: POST-TRAINING SHAPING
    [Pre-trained Model] --> [GRPO] --+
         |                          |
         +----------------->[OPD]---+
                                      |
                                      v
                             [Mutual Info Analysis]
                             Planning Patterns vs
                             Task Knowledge
                                      |
                                      v
Stage 3: POST-TRAINING INTEGRATION
    [Teacher A] --+                   |
    [Teacher B] --+--> [MOPD] ------->|
    [Teacher C] --+         |         |
                            v         v
                    Compatible --> Generalization
                    Partial    --> Continual Learn
                    Conflicting --> Interference

Here’s a structural metaphor: learning to be a chef by apprenticing in multiple kitchens.

Stage 1 is your culinary school textbooks. If the textbook only has isolated techniques (chop onions, sear fish), you can execute individual skills but freeze when asked to prepare a three-course meal from scratch. But if the textbook includes even a small number of full multi-course meal workflows — showing how techniques chain together — your compositional generalization jumps dramatically. And if those textbook recipes have mistakes (suboptimal trajectories), you internalize bad habits that compound catastrophically when cooking longer meals.

Stage 2 is on-the-job training. GRPO is like learning by trial-and-error in a single restaurant kitchen — you get scored relative to your own attempts. OPD is like shadowing an experienced head chef — you learn by imitating their decision-making in real time. The paper finds that OPD works better when your starting skills are rough and the meals are complex, because the head chef provides consistent, coherent direction. But here’s the catch: if the head chef teaches you a cuisine completely different from your culinary school foundation, you might lose your original skills while not fully acquiring the new ones.

Stage 3 is apprenticing in multiple kitchens simultaneously. If all three kitchens share a common flavor-pairing logic (compatible patterns), you become a versatile chef who can generalize across cuisines. If they partially overlap, you build a growing repertoire (continual learning). But if Kitchen A says “always salt early” and Kitchen B says “never salt until the end” (conflicting patterns), you develop culinary schizophrenia and perform worse than if you’d stayed in one kitchen.

Key Concepts

  • CoT State Transition Modeling: Instead of just training on input-output pairs, you train the model to explicitly narrate intermediate states: “I’m at position X, my goal is Y, so I should take action Z which moves me to state W.” This is like giving someone a GPS with turn-by-turn directions instead of just showing them the destination. The paper shows this dramatically improves long-horizon generalization because the model learns *where it is at each step, not just what to do.

  • On-Policy Distillation (OPD): The teacher and student are both generating actions *in the student’s own environment (on-policy), and the student learns to match the teacher’s distribution. This is different from off-policy distillation where you just clone the teacher’s static dataset. Think of it as: OPD is watching a master chef cook in your kitchen with your ingredients, while off-policy is studying a master chef’s cookbook written for a different kitchen. OPD adapts to the student’s actual state distribution.

  • Pattern Compatibility in MOPD: When you distill from multiple teachers, each teacher encodes a “planning pattern” — a latent strategy for decomposing goals. The paper uses mutual information to measure how much these patterns overlap. Compatible patterns (high overlap) = additive learning. Conflicting patterns (low overlap) = the student’s internal representation gets torn apart, like trying to simultaneously learn two incompatible game strategies.

Framework Shift

Before (mainstream approach):        After (this paper):

  Internet Data                      Controlled Environment
       |                                   |
  Train end-to-end                  Decompose into 3 stages
       |                                   |
  Evaluate on benchmarks      Pre-train --> Shape --> Integrate
       |                                   |
  "Model X scores 85%"        "Here's WHY planning works"
                              "Here's WHAT fails and when"
                              "Here's HOW teachers interact"

From “black-box training on messy data and evaluating on benchmarks” to “controlled experiments that reveal mechanistic laws of planning acquisition,” the core shift is treating LLM planning like a physics problem where you can isolate variables.

Expert Assessment

Problem choice: This is a genuine and important gap. The field has been training agents on web-scale data and hoping for the best. Nobody has seriously asked “what exactly does pre-training teach about planning, and how does post-training modify it?” The question is overdue. It sits at the intersection of mechanistic interpretability and agent training — a sweet spot.

Method maturity: Clever rather than brute force. Building a controlled environment is the kind of unsexy infrastructure work that enables real science. The mutual information decomposition for distinguishing planning patterns from task knowledge is elegant. However, the controlled environment is necessarily simpler than real-world agent tasks — there’s a risk the “physics laws” discovered here don’t transfer to open-ended settings. The authors partially acknowledge this but could be more explicit.

Experimental integrity: The baselines are reasonable — they compare GRPO vs OPD fairly under matched conditions. The three-regime characterization (unnecessary/effective/unsupported) is cleanly defined. One concern: the multi-teacher experiments only test a handful of teacher combinations. The taxonomy of compatible/partially-shared/conflicting patterns is suggestive but not rigorously defined — it’s more of a qualitative observation than a formal framework.

Writing quality: The paper is dense but well-structured. The three-stage decomposition gives it a clean narrative arc. However, the related work section is thin — they don’t adequately connect to the broader literature on curriculum learning, multi-task learning, or knowledge distillation theory. The MOPD section (Stage 3) feels rushed compared to the thoroughness of Stages 1 and 2. Rewriting Section 5 with the same rigor as Sections 3-4 would elevate the whole paper.

Verdict: weak accept — The controlled-environment methodology is genuinely valuable and the Stage 1-2 findings are solid, but the Stage 3 analysis needs more rigor and the generalization to realistic settings remains unproven.

Takeaways

  1. Include even a small fraction of long-horizon trajectories in pre-training. The paper shows that atomic skills alone don’t compose — you need at least some examples showing how skills chain together. This is directly actionable for anyone curating pre-training data.

  2. Use OPD over GRPO when your starting model is weak and your tasks are complex. The consistent gradient signal from teacher distillation outperforms relative reward comparison in these regimes. This is a practical training recipe, not just a research finding.

  3. Audit teacher compatibility before multi-source distillation. If you’re distilling from multiple specialized models, check whether their implicit planning strategies conflict. Conflicting teachers can make the student worse than any single teacher — a critical failure mode for the “ensemble of experts” paradigm.

  4. Suboptimal data is not neutral — it’s actively destructive in long-horizon settings. Errors compound over turns. Filtering for quality matters more in multi-step tasks than in single-turn settings, by a large margin.

论文: 2607.24720 作者: Tianyi Men, Zhuoran Jin, Kang Liu, Jun Zhao 分类: cs.CL, cs.AI, cs.LG

缺口

现有研究在训练 LLM 智能体时,大多依赖不可控的互联网数据——网页轨迹、人工示范。 问题在于:我们其实不知道规划能力在预训练阶段如何获得, 后训练方法(如 GRPO 或蒸馏)对规划能力做了什么, 多源训练之间如何交互。 此前的工作要么只研究单一阶段,要么环境本身是黑箱、无法解耦变量。 这就像在拥挤的房间里随机观察物体下落,试图理解引力——干扰因素太多。

这篇论文搭建了一个可控实验室(确定性的多轮环境,复杂度可调), 做了一次完整的”物理式”探究:获取 → 塑造 → 整合,三个干净的实验阶段。

问题:LLM 的规划能力是黑箱
    |
    v
假设:可拆解为 3 个阶段
    |    在可控环境中逐个研究
    v
方法:构建确定性多轮环境
    |   + 隔离预训练 / GRPO-OPD / MOPD
    v
证据:
    |  CoT 状态建模 > 原子技能
    |  OPD > GRPO(长程低质量场景)
    |  MOPD:模式兼容性决定
    |         泛化 vs 干扰
    v
结论:规划遵循可被发现和利用的"物理定律"

增量

一句话: 这篇论文之前,多轮规划的训练和评估都在不可控环境下进行,缺乏机理理解; 之后,我们有了一个可控实验框架,揭示了规划能力获取、塑造和整合的具体、可检验规律。

核心机制

本文的贡献不是一个单一模型,而是一条三阶段实验管线,每个阶段产出独立发现。

第一阶段——预训练获取。 他们构建了一个确定性的多轮环境(类似可控状态、动作和转移的网格世界)。 他们改变预训练数据的构成:原子技能轨迹(短而模块化)、长程轨迹(多步、目标导向)、 以及带 CoT 标注的轨迹(显式的状态转移推理)。 他们测量模型在未见组合和更长规划上的泛化能力。

第二阶段——后训练塑造。 比较两种后训练方法: GRPO(组相对策略优化)和 OPD(来自教师的在线策略蒸馏)。 通过互信息分析,他们将学生学到的东西分解为”规划模式”(可迁移的推理策略) 与”任务特定知识”(记忆化的程序)。 他们划分了三个区间:后训练不必要的(学生已经很好)、有效的(后训练有帮助)、 以及无能为力的(后训练无法弥补)。

第三阶段——后训练整合(MOPD)。 他们同时在**多个*教师环境中对学生进行在线策略蒸馏。 关键变量:教师的规划模式之间有多少重叠?

阶段 1:预训练获取
    [原始数据] --> [可控环境预训练]
         |                    |
    原子技能           CoT 状态转移
    长程轨迹              |
         |                v
         +---->[测量:组合泛化能力]
                      |
                      v
阶段 2:后训练塑造
    [预训练模型] --> [GRPO] --+
         |                   |
         +------------>[OPD]-+
                             |
                             v
                    [互信息分析]
                    规划模式 vs
                    任务知识
                             |
                             v
阶段 3:后训练整合
    [教师 A] --+              |
    [教师 B] --+--> [MOPD] -->|
    [教师 C] --+      |      |
                       v      v
               兼容 --> 泛化
               部分共享 --> 持续学习
               冲突 --> 严重干扰

下面用一个结构性比喻来解释:学做菜,辗转多个厨房拜师学艺。

第一阶段是烹饪学校的课本。 如果课本只教孤立的技法(切洋葱、煎鱼), 你能执行单项技能,但被要求从头做一桌三道菜时就慌了。 但如果课本里有哪怕少量完整的多道菜流程——展示技法如何串联—— 你的组合泛化能力就会跃升。 而且如果课本里的菜谱有错误(次优轨迹), 你会内化坏习惯,在做更长的宴席时错误会灾难性地累积。

第二阶段是上岗实习。 GRPO 像在一家餐厅厨房里自己摸索、试错——你的得分是相对于自己的尝试。 OPD 像跟着一位经验丰富的主厨——你在实时观摩中学习他们的决策方式。 论文发现,当你起点粗糙、菜式复杂时,OPD 效果更好, 因为主厨提供了一致、连贯的方向指引。 但有个陷阱:如果主厨教的菜系和你烹饪学校的基础完全不同, 你可能会丢失原有技能,同时又没完全掌握新的。

第三阶段是同时在多个厨房学艺。 如果三个厨房共享同一种调味搭配逻辑(兼容模式), 你就成为一个能跨菜系做菜的全能厨师。 如果有部分重叠,你的技艺库就在持续增长(持续学习)。 但如果厨房 A 说”一定要早点放盐”,厨房 B 说”绝不能提前放盐”(冲突模式), 你就会出现烹饪精神分裂,表现比待在一个厨房还差。

关键概念

  • CoT 状态转移建模: 不只是用输入-输出对来训练模型,而是训练模型显式地叙述中间状态:“我在位置 X,目标是 Y,所以应该采取动作 Z,移动到状态 W。” 这就像给你一个带逐步导航的 GPS,而不是只告诉你目的地。 论文表明这大幅提升了长程泛化能力,因为模型在每一步都学到了自己在哪,而不仅仅是该做什么

  • 在线策略蒸馏(OPD): 教师和学生都在**学生自己的环境中生成动作(在线策略),学生学习匹配教师的分布。 这不同于离线策略蒸馏——后者只是克隆教师的静态数据集。 类比:OPD 是看主厨在你的厨房、用你的食材*做菜, 而离线策略是学习一本为另一个厨房写的主厨菜谱。 OPD 会自适应到学生的实际状态分布。

  • MOPD 中的模式兼容性: 从多个教师蒸馏时,每个教师编码一种”规划模式”——一种分解目标的隐含策略。 论文用互信息来衡量这些模式的重叠程度。 兼容模式(高重叠)= 加性学习。 冲突模式(低重叠)= 学生的内部表征被撕裂, 就像同时学习两种互不相容的游戏策略。

框架转变

之前(主流方法):                之后(本文方法):

  互联网数据                     可控实验环境
       |                               |
  端到端训练                     拆解为 3 个阶段
       |                               |
  在 benchmark 上评估            预训练 --> 塑造 --> 整合
       |                               |
  "模型 X 得分 85%"             "规划为什么有效"
                               "什么情况会失败"
                               "教师之间如何交互"

从”在混乱数据上做黑箱训练、在基准上评估”到”可控实验揭示规划获取的机理定律”, 核心转变是把 LLM 规划当作一个可以隔离变量的物理问题来研究。

专家评审

选题眼光: 这是一个真实且重要的缺口。领域一直在用网页规模数据训练智能体,听天由命。没有人认真追问”预训练到底教会了模型什么关于规划的东西?后训练又是如何修改它的?” 这个问题早该被问了。它处于机制可解释性与智能体训练的交叉地带——一个很好的位置。

方法成熟度: 巧劲多于蛮力。搭建可控环境是那种不够炫酷但能催生真正科学的基础设施工作。用互信息分解来区分规划模式和任务知识的手法很漂亮。但可控环境必然比真实世界任务简单——这里发现的”物理定律”能否迁移到开放场景,存在风险。作者部分承认了这一点,但可以更明确。

实验诚意: 基线设计合理——在匹配条件下公平比较了 GRPO 和 OPD。三区间特征刻画(不必要/有效/无能为力)定义清晰。一个顾虑:多教师实验只测试了少量教师组合。兼容/部分共享/冲突模式的分类更像是定性观察,而非严格的形式化框架。

写作功力: 论文内容密集但结构清晰。三阶段拆解给了它干净的叙事弧线。但相关工作部分太薄——没有充分连接到课程学习、多任务学习和知识蒸馏理论的更广泛文献。第五节(MOPD)相比第三、四节的严谨程度显得仓促。如果把第五节写到和三四节同等水平,整篇论文会上一个档次。

判决: 弱接收——可控实验方法论真正有价值,第一和第二阶段的发现很扎实,但第三阶段的分析需要更严格,向真实场景的泛化仍未被验证。

要点总结

  1. 在预训练数据中加入哪怕少量的长程轨迹。 论文表明原子技能本身不会组合——你需要至少一些展示技能如何串联的示例。这对任何在整理预训练数据的人都直接可用。

  2. 当起点模型较弱、任务较复杂时,用 OPD 而非 GRPO。 教师蒸馏提供的一致梯度信号在这些场景下优于相对奖励比较。这是一个可落地的训练方案,不只是研究发现。

  3. 多源蒸馏前先审计教师的兼容性。 如果你要从多个专业模型蒸馏,检查它们隐含的规划策略是否冲突。冲突的教师可以让学生比任何单个教师还差——这是”专家集成”范式的一个关键失败模式。

  4. 次优数据不是中性的——在长程场景下它是主动有害的。 错误会在多轮交互中不断放大。质量过滤在多步任务中比在单轮任务中重要得多,差距巨大。