ForgeWM: Progressive Causal Training for Few-Step Action-Conditioned Video World Models
预测游戏下一帧画面的AI,把计算步骤压到1到4步,操控准确度却没打折扣
ForgeWM是一种根据键盘鼠标输入实时生成游戏下一帧画面的AI模型,例如我的世界场景。研究者把原本需要一次看完整段视频才能作画的模型,通过四个阶段的训练改造成只依靠过去信息、每次仅用1步、2步或4步计算就能逐帧生成画面的模型。在配对轨迹测试中,ForgeWM在画质、运动轨迹一致性和操控准确度上都优于对比系统,同样的方法也成功迁移到了手柄操控的射击游戏上。
他们做了什么
- 原模型需要一次性看完整段视频才能作画,难以用于实时游戏,团队提出四阶段训练法,把它改造成只看过去信息、逐帧生成的模型。
- 关键难点是让离散的按键状态和连续的鼠标移动与被压缩的视频片段保持对齐,团队用专门的动作模块分别处理这两类控制信号来解决。
- 四个阶段依次是:让模型适应游戏画面、用真实历史数据教它逐帧生成、把它压缩到能用极少步数生成、最后让它学习自己生成的画面以减少误差累积。
- 在我的世界测试中,ForgeWM在图像质量、与真实运动轨迹的吻合度、反向操作识别准确率和鼠标控制准确率上均领先对比模型,与参考视频的差异(LPIPS)也最小。
- 新增的回放精修功能能对保存好的视频轻微加噪后再打磨,画质接近从零重新生成四步的效果,同时比重新生成更贴近玩家实际经历的场景布局,差距缩小约三倍。


| Stage | Initialization | Training Context | Objective | Output |
|---|---|---|---|---|
| 0 | Base | Full-clip bidirectional | FM | Domain teacher |
| 1 | Base | Clean causal history | Causal FM | Causal teacher |
| 2 | Stage 1 | Clean causal history | Online CD | Few-step initializer |
| 3 | Stage 2 | Self-generated history | DMD | 1/2/4-step students |
| Model | Visual Quality | Temporal Quality | Action Controllability | Efficiency | |||||
|---|---|---|---|---|---|---|---|---|---|
| IQ↑ | LPIPS↓ | AQ↑ | Subj. Cons.↑ | Flow Prof.↑ | KCtrl↑ | Mouse Acc.↑ | Latency (ms)↓ | FPS↑ | |
| Matrix-Game 2.0 | 0.6282 | 0.6443 | 0.4583 | 0.7349 | 0.9343 | 0.9156 | 0.7061 | 370.9 | 32.35 |
| HY-WorldPlay | 0.6133 | 0.6172 | 0.4855 | 0.9466 | 0.8288 | 0.9286 | 0.5818 | 2164.3 | 7.54 |
| ForgeWM-1 (1-step) | 0.6776 | 0.6529 | 0.4807 | 0.8279 | 0.9403 | 0.9545 | 0.7848 | 168.2 | 72.10 |
| ForgeWM-2 (2-step) | 0.6865 | 0.6171 | 0.4814 | 0.8349 | 0.9429 | 0.9740 | 0.8268 | 239.7 | 50.31 |
| ForgeWM-4 (4-step) | 0.6788 | 0.6168 | 0.4860 | 0.7613 | 0.9420 | 0.9740 | 0.8102 | 369.6 | 32.47 |


| Stage 0 | Stage 1 | Stage 2 | Stage 3 | |
|---|---|---|---|---|
| Objective | ℒFM | ℒ1 | ℒ2 | ℒ3 |
| Trainer | FM | causal FM | consist. distill. | DMD |
| Attention | bidir. | causal | causal | causal |
| Init | base | base | Stage 1 | Stage 2 |
| Blk. (latents) | 21 | 3 | 3 | 3 |
| Trainer iterations | 4k | 20k | 6k | 4k |
| Gen. lr | 2e−6 | 2e−5 | 2e−6 | 2e−6 |
| Critic lr | – | – | – | 4e−7 |
| Global batch | 8 | 8 | 8 | 8 |
| EMA | – | – | 0.99/200 | 0.99/200 |


| Stage | Inference regime | LPIPS↓ | IQ↑ | AQ↑ | SC↑ |
|---|---|---|---|---|---|
| 0 | bidirectional teacher (ref.) | 0.814[.809,.819] | 0.455 | 0.463 | 0.677 |
| 1 | teacher-forced causal | 0.806[.799,.812] | 0.508 | 0.454 | 0.700 |
| 2 | causal consistency | 0.605[.600,.610] | 0.659 | 0.483 | 0.760 |
| 3 | distribution matching | 0.617[.613,.620] | 0.716 | 0.489 | 0.760 |
| Game | LPIPS↓ | PSNR↑ | Flow | Ratio |
|---|---|---|---|---|
| Xonotic | 0.5828 | 11.21 | 13.88 | 1.66 |
| Modern Warfare III | 0.6352 | 11.61 | 8.15 | 1.35 |
| Modern Warfare | 0.6479 | 10.99 | 8.29 | 1.46 |
| Warzone | 0.6695 | 10.66 | 9.13 | 1.78 |
| Halo Infinite | 0.6730 | 9.75 | 11.23 | 1.46 |
| Halo | 0.6920 | 9.31 | 13.28 | 1.29 |
| Call of Duty | 0.6933 | 9.67 | 10.40 | 1.16 |
| Macro-average | 0.6562 | 10.46 | 10.62 | 1.45 |
为什么重要
要让AI视频生成器实时响应玩家操作,必须同时解决速度和操控准确性两大难题,这项工作给出了具体可行的训练方案。这为不依赖真实图形引擎、就能实时生成可玩游戏画面的世界模型技术,向实际应用迈出了实用的一步。
本文术语
- 世界模型(World Model) · 仅根据过去画面和操作输入预测并生成下一帧画面的AI,不依赖图形引擎
- 因果生成(Causal generation) · 生成未来画面时只能依次使用过去信息,不能提前看到后续内容
- 蒸馏(Distillation) · 把复杂缓慢模型的能力迁移到更轻量快速模型上的训练技巧
- LPIPS · 衡量两段视频在人眼看来有多相似的指标,数值越低越接近参考视频
- 回放精修(Replay-Time Refinement) · 对已保存的视频草稿轻微加噪后再重新去噪打磨,以提升画质的后处理方法
论文原文摘要(英文)
Action-conditioned video world models require low-latency causal generation and reliable responses to game-native controls. Although causal distillation enables one- or few-step video synthesis, extending it to interactive world models remains challenging, as discrete keyboard states and continuous mouse motion must remain aligned with temporally compressed latent chunks during causal training and autoregressive rollout. We introduce ForgeWM, a progressive framework that transforms a bidirectional action-conditioned video generator into efficient few-step world models through domain adaptation, teacher-forced causal training, causal consistency distillation, and on-policy distribution matching with a bidirectional teacher. The resulting budget-specialized students operate at steady-state denoising budgets of 1, 2, and 4 steps. ForgeWM further supports a dual-path deployment protocol combining latency-critical interaction with optional replay-time refinement, where the one-step student re-noises and refines its saved draft. On paired Minecraft trajectories, ForgeWM leads the evaluated systems in Imaging Quality, reference-aligned motion-profile agreement, action-sign accuracy, and mouse-control accuracy, while achieving the lowest reference LPIPS; the same four-stage recipe transfers to gamepad-controlled FPS gameplay. Replay-time refinement matches four-step reference quality while remaining roughly three times closer to the experienced trajectory than regeneration from noise. These results demonstrate ForgeWM's effectiveness for controllable few-step video generation.
在 arXiv 阅读最新论文
- LoRA-GA$^2$: Low Rank Adaptation with Multi-step Gradient Adaptive Alignment在正式微调前先偷看几步训练的梯度,让LoRA的初始化更聪明
- Remember, Verify, or Ask? Cross-Family Evaluation of Memory Commitment in LLM AgentsAI助手在该向你提问的时候,却更愿意自己去核实事实
- Robust Incomplete Multimodal Sentiment Analysis via Iterative Proxy Correction文本信息缺失或损坏时,这个AI不靠一次性猜测,而是反复修正猜测结果,从而更准确地判断情绪
- Generating Diverse Personas for User Simulators to Test Interview Dialogue Systems要测试访谈式对话系统需要大量不同性格的虚拟用户,这项研究用大语言模型自动生成这些虚拟用户人设
- Rethinking Patch Based Multivariate Time Series Forecasting with Semantic Structured Partitioning别再机械切分时间序列,按语义把它切成有意义的块
- Reliable Financial Named Entity Recognition under Domain ShiftAI在正式文件里学到的自信,一到推特上就变得不可信
- Bringing analytic rigor to agentic AI for science: The Brain Researcher platform for neuroimaging data analysis让AI分析脑影像数据时,把“为什么这个结论可信”也一并记录下来
- GenMatch: An End-to-End Generative Matching Framework for Micro-View Order-Dispatching in Ride-Hailing滴滴把打车派单从预测-计算-匹配三段式流程改成一次生成完成,线上效果提升明显
METAL LAB 最新报道
图片来源: Xinye Li et al., arXiv:2608.14022, CC BY 4.0