论文提出 Interactive World Simulator:从中等规模的机器人交互数据集中训练一个动作条件视频预测模型(world model)。核心是用一致性模型同时做图像解码和隐空间动态预测,使模型在单张 RTX 4090 上以 15 FPS 稳定运行超过 10 分钟,并可作为可扩展的示教数据生成器和可复现的策略评估环境使用。The paper introduces Interactive World Simulator: an action-conditioned video prediction model (world model) trained from a moderate-sized robot interaction dataset. Its core idea is to use consistency models for both image decoding and latent dynamics prediction, letting the model run stably at 15 FPS for over 10 minutes on a single RTX 4090, and serve both as a scalable demonstration-data generator and as a reproducible policy evaluation environment.
动作条件视频预测模型(action-conditioned video prediction models,常被称为 world models)在机器人规划、控制、策略引导与评估上展现出潜力,但现有方法要么推理很慢,要么在长时程 rollout 中难以保持物理一致的交互。论文希望用一个既快又稳的世界模型,同时充当可扩展的示教数据生成器和可复现的策略评估环境。Action-conditioned video prediction models (commonly called world models) have shown potential for robot planning, control, policy guidance and evaluation, but existing approaches are either slow at inference or struggle to maintain physically consistent interactions over long-horizon rollouts. The paper aims for a world model that is both fast and stable, and that serves simultaneously as a scalable demonstration-data generator and a reproducible policy evaluation environment.
“Action-conditioned video prediction models (often referred to as world models) have shown strong potential for robotics applications, but existing approaches are often slow and struggle to capture physically consistent interactions over long horizons, limiting their usefulness for scalable robot policy training and evaluation.”
模型训练分两阶段:先把高维图像压缩到紧凑的 2D 隐空间,再在隐空间中做未来预测,从而实现高效的长时程推理。两个阶段都用一致性模型(consistency model),因为它既能高效表示,又能建模机器人交互中多模态的未来分布。Training proceeds in two stages: first compress high-dimensional images into a compact 2D latent space, then predict the future within that latent space, achieving efficient long-horizon inference. Both stages use consistency models, because they provide efficient representation while also modelling the multimodal future distribution of robot interaction.
受 Consistency Trajectory Model (CTM) 启发,编码器 Eφ 把图像 o 编码为隐表示 z,解码器 Dθ 被训练为把两个不同噪声尺度 σt > σs 下加噪的隐变量互相映射(一致性轨迹训练),以获得高效、高保真的图像重建,避免多步扩散的开销。Inspired by the Consistency Trajectory Model (CTM), the encoder Eφ encodes an image o into a latent z, and the decoder Dθ is trained to map between latents noised at two different noise scales σt > σs (consistency-trajectory training), so as to obtain efficient, high-fidelity image reconstruction while avoiding the cost of multi-step diffusion.
冻结自编码器后,动态模型 Fψ 在隐空间中学习给定动作序列和历史上下文条件下预测下一帧隐变量。推理阶段一个关键技巧是向历史上下文注入小噪声:由于自回归预测的误差会累积并作为后续步骤的上下文,模型对噪声上下文的鲁棒性对稳定长时程预测至关重要。上下文窗口自回归滑动,丢弃过旧的隐变量以避免计算量随时程增长。With the autoencoder frozen, the dynamics model Fψ learns in latent space to predict the next-frame latent given an action sequence and historical context. A key trick at inference is to inject small noise into the historical context: since errors of autoregressive prediction accumulate and serve as context for later steps, robustness to noisy context is critical for stable long-horizon prediction. The context window slides autoregressively, discarding overly old latents so that computation does not grow with the horizon.
在 MuJoCo 一个仿真任务与 ALOHA 双臂机器人上的六个真实任务(Mug Grasping、Rope Routing、Rope Collecting、T Pushing、Box Packing、Pile Sweeping,涉及刚体、可变形物体、物体堆和多物体交互)上评估。视频预测基线包括 Cosmos、UVA、Dreamer4、DINO-WM,rollout horizon 为 192 步(19.2 秒)。Evaluation is carried out on one simulated MuJoCo task and six real-world tasks on the ALOHA bimanual robot (Mug Grasping, Rope Routing, Rope Collecting, T Pushing, Box Packing, Pile Sweeping, involving rigid bodies, deformable objects, object piles and multi-object interaction). Video prediction baselines include Cosmos, UVA, Dreamer4 and DINO-WM, with a rollout horizon of 192 steps (19.2 seconds).
| Metric(聚合全部任务)Metric (aggregated over all tasks) | 最优基线Best baseline | Ours |
|---|---|---|
| MSE ↓ | 0.012 ± 0.009(Dreamer4) | 0.005 ± 0.005 |
| LPIPS ↓ | 0.163 ± 0.052(Dreamer4) | 0.051 ± 0.019 |
| PSNR ↑ | 20.81 ± 2.21(Dreamer4) | 25.82 ± 2.72 |
| SSIM ↑ | 0.693 ± 0.045(Dreamer4) | 0.831 ± 0.019 |
| FVD ↓ | 799.34 ± 220.07(Cosmos) | 243.20 ± 103.58 |
(完整六项指标 MSE/LPIPS/FID/PSNR/SSIM/UIQI/FVD 见论文 Table I;上表仅摘取具代表性的几项,Interactive World Simulator 在全部七项指标上均优于全部四个基线。)(The complete six metrics MSE/LPIPS/FID/PSNR/SSIM/UIQI/FVD are given in Table I of the paper; the table above extracts only a few representative ones. Interactive World Simulator outperforms all four baselines on all seven metrics.)

用世界模拟器生成的数据训练 DP、ACT、π₀、π0.5 等模仿学习策略,结果显示:“policies trained on 100% world simulator data perform comparably to those trained on an equivalent volume of real-robot expert data.” 例如 ACT 用模拟器数据达到 76.2% 成功率,用真实数据为 73.6%;DP 分别为 87.9%(100% 模拟器数据)和 90.3%(100% 真实数据)。数据规模从 5 到 100 条示教递增时,模拟器数据训练出的策略与 MuJoCo 真实数据训练的策略呈现相似的 scaling 趋势。Imitation-learning policies such as DP, ACT, π₀ and π0.5 were trained on data generated by the world simulator, and the results show: “policies trained on 100% world simulator data perform comparably to those trained on an equivalent volume of real-robot expert data.” For instance, ACT reaches a 76.2% success rate with simulator data versus 73.6% with real data; DP reaches 87.9% (100% simulator data) and 90.3% (100% real data) respectively. As the data scale grows from 5 to 100 demonstrations, policies trained on simulator data exhibit a scaling trend similar to those trained on MuJoCo real data.

“For tasks other than T pushing, the fitted lines exhibit a slight positive bias, indicating that policies tend to achieve slightly higher scores in the world simulator than in the real world.” 作者认为这不影响策略间的相对排序,但绝对分数并非完全一致。“For tasks other than T pushing, the fitted lines exhibit a slight positive bias, indicating that policies tend to achieve slightly higher scores in the world simulator than in the real world.” The authors argue that this does not affect the relative ranking among policies, but the absolute scores are not fully consistent.
实验默认图像分辨率为 128×128(“our default image resolution is 128 × 128, which is sufficient for most of our tasks”),仅在 ALOHA 双臂机器人上评估 6 个真实任务 + 1 个 MuJoCo 仿真任务,训练数据规模也是“moderate-sized”(每个真实任务约 600 条 episode),尚未验证在更高分辨率、更大规模数据或更多样化机器人平台上的表现。The default image resolution in the experiments is 128×128 (“our default image resolution is 128 × 128, which is sufficient for most of our tasks”), and evaluation covers only 6 real-world tasks + 1 MuJoCo simulated task on the ALOHA bimanual robot, with a training data scale that is likewise “moderate-sized” (about 600 episodes per real task); performance at higher resolution, larger data scale or on more diverse robot platforms has not yet been verified.
结论部分写道:“We plan to extend this framework to more diverse environments and increasingly complex manipulation tasks... An important direction for future work is to study how the performance of world models scales with increasing amounts of interaction data and computational resources.” 这意味着当前工作尚未系统评估更大数据/算力规模下的表现。The conclusion states: “We plan to extend this framework to more diverse environments and increasingly complex manipulation tasks... An important direction for future work is to study how the performance of world models scales with increasing amounts of interaction data and computational resources.” This implies that the current work has not systematically evaluated performance at larger data or compute scales.