本文提出 Cosmos Policy,一种将大型预训练视频生成模型(Cosmos-Predict2-2B)通过单阶段 fine-tuning 转化为机器人控制策略的方法。 通过将机器人动作编码为 diffusion 过程中的 latent frames,无需修改基础模型架构即可学习复杂的动作分布;同时支持 model-based planning, 在 LIBERO 仿真(98.5%)、RoboCasa(67.1%,仅需 50 条演示)及真实 ALOHA 双臂机器人(93.6%)任务上取得最先进性能。This paper presents Cosmos Policy, a method that turns a large pretrained video generation model (Cosmos-Predict2-2B) into a robot control policy through single-stage fine-tuning. By encoding robot actions as latent frames inside the diffusion process, it learns complex action distributions without modifying the base model architecture, and it further supports model-based planning, reaching state-of-the-art performance on LIBERO simulation (98.5%), RoboCasa (67.1%, with only 50 demonstrations) and a real ALOHA bimanual robot (93.6%).
大型预训练视频生成模型捕获了丰富的时序动态与隐式物理先验,理论上是理想的机器人策略骨干网络—— 然而如何将其高效转化为可执行的控制策略,此前仍缺乏简洁的单阶段解决方案。Large pretrained video generation models capture rich temporal dynamics and implicit physical priors, which in principle makes them ideal backbones for robot policies — yet a concise single-stage solution for turning them efficiently into executable control policies was still missing.
"large pretrained video generation models have shown impressive ability to generate physically plausible and temporally coherent videos"—— 这一能力与机器人任务高度契合,但既有方法往往需要多阶段训练或大量架构改动。"large pretrained video generation models have shown impressive ability to generate physically plausible and temporally coherent videos" — this ability aligns well with robotic tasks, but prior methods usually require multi-stage training or extensive architectural changes.
Cosmos Policy 的核心思路是将机器人动作、本体感知与价值估计编码为视频模型 diffusion 过程中的 latent frames, 从而在不修改任何模型权重结构的前提下,通过单阶段 fine-tuning 同时学习策略、世界模型和价值函数。The core idea of Cosmos Policy is to encode robot actions, proprioception and value estimates as latent frames within the diffusion process of the video model, so that policy, world model and value function are learned jointly through single-stage fine-tuning without altering any model weight structure.
区别于添加新模块的传统做法,Cosmos Policy 将所有额外模态——机器人动作、本体感知、价值估计—— 编码为 latent 空间中的"帧",直接嵌入原始 diffusion 序列。 以多相机 ALOHA 为例,latent 序列依次包含:空白占位帧、机器人本体感知、腕部相机、第三视角相机、 动作 chunk、未来本体感知、未来图像与未来状态价值。 输出可并行生成(更快,适合直接策略执行)或自回归生成(质量更高,适合 planning)。Unlike the conventional practice of adding new modules, Cosmos Policy encodes every additional modality — robot actions, proprioception, value estimates — as "frames" in latent space and embeds them directly into the original diffusion sequence. Taking the multi-camera ALOHA setup as an example, the latent sequence contains, in order: a blank placeholder frame, robot proprioception, the wrist camera, the third-person camera, the action chunk, future proprioception, the future image and the future state value. Outputs can be generated in parallel (faster, suited to direct policy execution) or autoregressively (higher quality, suited to planning).
为避免策略过度依赖单一监督信号,训练 batch 按比例混合三类目标:To keep the policy from over-relying on a single supervision signal, the training batch mixes three kinds of objectives in fixed proportions:
辅助监督(未来状态预测 + 价值估计)显著提升了策略质量。消融实验显示,去掉辅助 loss 后 LIBERO 平均成功率从 98.5% 降至 97.0%(-1.5%)。Auxiliary supervision (future state prediction + value estimation) markedly improves policy quality. Ablations show that after removing the auxiliary loss the LIBERO average success rate drops from 98.5% to 97.0% (-1.5%).
推理阶段,Cosmos Policy 实现 best-of-N 采样:并行采样多个动作候选,由 planning 模型预测每个动作 导致的未来状态与价值,选择价值最高的动作执行。聚合策略采用 "majority mean"—— 先根据阈值判断多数预测是成功还是失败,再对多数群体内的预测取均值,以提高鲁棒性。 实验表明,model-based V(s′) planning 优于 model-free Q(s, a) planning, 归因于在有限 rollout 数据下更高效的学习。At inference time, Cosmos Policy performs best-of-N sampling: multiple action candidates are sampled in parallel, the planning model predicts the future state and value induced by each of them, and the action with the highest value is executed. Aggregation uses a "majority mean" — a threshold first decides whether the majority of predictions are successes or failures, then the predictions inside the majority group are averaged, which improves robustness. Experiments show that model-based V(s′) planning outperforms model-free Q(s, a) planning, attributed to more efficient learning under limited rollout data.
在三个基准上评估:LIBERO 仿真(4 个任务套件)、RoboCasa 仿真(24 个厨房任务)以及真实 ALOHA 双臂机器人(4 个复杂操作任务)。 与 CogVLA、OpenVLA-OFT、π₀.₅、π₀、Video Policy、FLARE、GR00T-N1.5 等最先进方法对比。Evaluation covers three benchmarks: LIBERO simulation (4 task suites), RoboCasa simulation (24 kitchen tasks) and a real ALOHA bimanual robot (4 complex manipulation tasks). Comparisons are made against state-of-the-art methods such as CogVLA, OpenVLA-OFT, π₀.₅, π₀, Video Policy, FLARE and GR00T-N1.5.
| 方法Method | Spatial | Object | Goal | Long | 平均Average |
|---|---|---|---|---|---|
| OpenVLA-OFT | — | — | — | — | 97.1% |
| CogVLA | — | — | — | — | 97.4% |
| π₀.₅ | — | — | — | — | 96.9% |
| Cosmos Policy | 98.1% | 100.0% | 98.2% | 97.6% | 98.5% |
| 方法Method | 演示数量Demonstrations | 平均成功率Average success rate |
|---|---|---|
| Video Policy | 300 条300 demos | 66.0% |
| FLARE | 300 条300 demos | 66.4% |
| GR00T-N1.5 | 300 条300 demos | 64.1% |
| Cosmos Policy | 50 条50 demos | 67.1% |
Cosmos Policy 仅使用 50 条演示(为对比方法的 1/6),便超越了使用 300 条演示的所有基线,显示出强大的 data efficiency。Cosmos Policy uses only 50 demonstrations (1/6 of what the compared methods use) yet surpasses every baseline trained on 300 demonstrations, showing strong data efficiency.
| 任务Task | OpenVLA-OFT+ | π₀ | π₀.₅ | Cosmos Policy |
|---|---|---|---|---|
| Put X on plate | — | — | — | 100.0 |
| Fold shirt | — | — | — | 99.5 |
| Put candies in bowl | — | — | — | 89.6 |
| Put candy in ziploc bag | — | — | — | 85.4 |
| 平均Average | 62.0 | 77.9 | 88.6 | 93.6 |
Model-based planning 模式下,每次产生一个 action chunk 约需 5 秒, 限制了该方案在动态、时间敏感任务上的适用性。对于需要快速反应的场景,当前 planning 延迟是主要瓶颈。In model-based planning mode, producing one action chunk takes about 5 seconds, which limits the applicability of the approach to dynamic, time-sensitive tasks. For scenarios that require fast reactions, the current planning latency is the main bottleneck.
有效的 planning 需要超出演示分布的大量 rollout 数据,以实现对分布外状态的准确预测。 当 rollout 数据不足时,世界模型的泛化能力受限,planning 的收益也随之下降。Effective planning requires a large amount of rollout data beyond the demonstration distribution in order to predict out-of-distribution states accurately. When rollout data is insufficient, the generalization of the world model is limited and the benefit of planning decreases accordingly.
当前方案采用"best-of-N planning with one layer in the search tree"的单步规划策略, 无法进行多步前瞻。作者指出,扩展预测 horizon 以及多层规划树有望进一步提升性能,但尚未实现。The current design adopts the single-step planning strategy "best-of-N planning with one layer in the search tree" and cannot look several steps ahead. The authors note that extending the prediction horizon and using a multi-layer planning tree is expected to improve performance further, but this has not yet been implemented.