WorldVLA 将视觉-语言-动作模型(VLA)与世界模型集成在同一自回归架构中,实现动作预测与未来帧预测的相互增强。针对动作块(action chunk)自回归生成时的误差累积问题,论文提出一种选择性 attention mask 策略,在 LIBERO 基准上将平均成功率(SR)提升至 81.8%,相比 OpenVLA 基线(76.5%)提升显著。WorldVLA integrates the vision-language-action model (VLA) and the world model into one autoregressive architecture, so that action prediction and future-frame prediction reinforce each other. To address error accumulation in the autoregressive generation of action chunks, the paper proposes a selective attention mask strategy, raising the average success rate (SR) on the LIBERO benchmark to 81.8%, a marked gain over the OpenVLA baseline (76.5%).
当前机器人学习中,动作模型(VLA)与世界模型被视为两个相互独立的范式:VLA 从图像和文本预测动作,世界模型从图像和动作预测未来帧。这两者的能力存在天然互补性,但此前没有工作将它们真正统一在同一框架中并验证相互增益。In current robot learning, the action model (VLA) and the world model are treated as two mutually independent paradigms: the VLA predicts actions from images and text, while the world model predicts future frames from images and actions. Their capabilities are naturally complementary, yet no prior work had truly unified them within one framework and verified the mutual gains.
"We integrate action model and world model into a unified framework, demonstrate that action and image generation mutually enhance each other, and propose an attention mask strategy that selectively masks prior actions during the generation of the current action."
在自回归生成多步动作块(action chunk)时,每一步动作都依赖前一步的输出。若前一步出现误差,后续动作会受到污染,导致整体性能显著下降。实验表明,在不加干预的情况下加入 action chunking 会导致成功率下降 10–50 个百分点。When multi-step action chunks are generated autoregressively, every action depends on the output of the previous step. If the previous step is erroneous, the subsequent actions are contaminated, causing a marked drop in overall performance. Experiments show that adding action chunking without any intervention lowers the success rate by 10–50 percentage points.
WorldVLA 基于 Chameleon 架构构建,将图像、文本、动作三类 token 统一在单一序列中进行自回归建模。动作模型负责从视觉和语言条件预测动作序列,世界模型在此基础上额外预测下一帧图像,两者共享参数,以多任务方式联合训练。WorldVLA is built on the Chameleon architecture, unifying image, text, and action tokens into a single sequence for autoregressive modeling. The action model predicts action sequences conditioned on vision and language, and the world model additionally predicts the next image frame on top of that; the two share parameters and are jointly trained in a multi-task fashion.
论文针对 action chunk 自回归生成中的误差累积问题,提出选择性 attention mask:在生成当前动作 token 时,遮盖(mask)同一 chunk 中此前已生成的动作 token,使每个动作仅依赖视觉和文本输入,而非依赖前序动作。To tackle error accumulation in the autoregressive generation of action chunks, the paper proposes a selective attention mask: when the current action token is generated, the previously generated action tokens within the same chunk are masked, so that each action depends only on the visual and text inputs rather than on the preceding actions.
论文从两个维度验证互利关系:(1)加入世界模型预测任务后,动作模型的抓取成功率提升 4%,说明预测未来视觉状态有助于学习更优的动作策略;(2)世界模型以动作为条件(action world model)相比无动作条件的纯世界模型,在 LIBERO 数据集上 FVD 降低约 10%(50 帧评估),说明动作信息改善了未来帧预测质量。The paper verifies the mutual benefit along two dimensions: (1) after the world-model prediction task is added, the grasping success rate of the action model improves by 4%, showing that predicting future visual states helps learn better action policies; (2) conditioning the world model on actions (action world model) lowers FVD by about 10% on the LIBERO dataset compared with an action-free world model (50-frame evaluation), showing that action information improves the quality of future-frame prediction.
主要在 LIBERO 基准上评估,涵盖 Spatial、Object、Goal、Long 四个子任务,指标为成功率(SR)。同时在 LIBERO 上评估世界模型质量(FVD、LPIPS)。Evaluation is carried out mainly on the LIBERO benchmark, covering the four sub-tasks Spatial, Object, Goal, and Long, with success rate (SR) as the metric. World model quality (FVD, LPIPS) is also evaluated on LIBERO.
| Model | Spatial SR | Object SR | Goal SR | Long SR | Average SR |
|---|---|---|---|---|---|
| OpenVLA(基线)OpenVLA (baseline) | 84.7% | 88.4% | 79.2% | 53.7% | 76.5% |
| WorldVLA 256×256 | 85.6% | 89.0% | 82.6% | 59.0% | 79.1% |
| WorldVLA 512×512 | 87.6% | 96.2% | 83.4% | 60.0% | 81.8% |
| Model | FVD↓(10 帧)FVD↓ (10 frames) | FVD↓(50 帧)FVD↓ (50 frames) | LPIPS↓(10 帧)LPIPS↓ (10 frames) | LPIPS↓(50 帧)LPIPS↓ (50 frames) |
|---|---|---|---|---|
| 纯世界模型(World Model only)World Model only | 250.0 | 718.6 | 11.97 | 15.60 |
| 动作世界模型(Action World Model)Action World Model | 255.1 | 674.1 | 11.94 | 15.44 |
Table 3 分析了各组件对动作模型性能的影响:Table 3 analyzes the impact of each component on action model performance:
| 配置Configuration | Goal SR | Object SR | Spatial SR | Long SR | Average SR |
|---|---|---|---|---|---|
| 仅动作(Action only)Action only | 67.3% | 82.9% | 77.8% | 23.0% | 62.8% |
| +世界模型(+World model)+World model | 73.1% | 88.0% | 80.2% | 27.3% | 67.2% |
| +Action chunking(无 mask)+Action chunking (no mask) | 79.6% | 82.9% | 36.7% | 16.9% | 54.0% |
| +Action chunking + attention mask | 84.4% | 90.9% | 81.8% | 49.3% | 76.6% |
| 完整模型(Full model)Full model | 85.1% | 90.9% | 84.0% | 52.4% | 78.1% |
关键发现:仅加入 action chunking(不加 mask)会导致平均 SR 从 67.2% 骤降至 54.0%(尤其 Spatial SR 从 80.2% 跌至 36.7%);加入 attention mask 后恢复至 76.6%,再结合世界模型提升至 78.1%。Key finding: adding action chunking alone (without the mask) makes the average SR plunge from 67.2% to 54.0% (Spatial SR in particular falls from 80.2% to 36.7%); adding the attention mask restores it to 76.6%, and combining it with the world model raises it further to 78.1%.
在启用 action chunking 的条件下:1 帧输入 SR 为 74.0%;2 帧输入 SR 为 84.4%;4 帧输入 SR 为 84.7%。选用 2 帧作为默认配置,在性能与计算效率之间取得最优平衡。With action chunking enabled: 1-frame input yields an SR of 74.0%; 2-frame input yields 84.4%; 4-frame input yields 84.7%. Two frames are adopted as the default configuration, striking the best balance between performance and computational efficiency.
论文指出 "scaling of both data and model size emerges as a promising avenue",当前实验规模有限,更大规模训练的潜力尚待验证。The paper notes that "scaling of both data and model size emerges as a promising avenue"; the current experiments are limited in scale, and the potential of larger-scale training remains to be verified.
当前使用的离散图像 tokenizer "exhibits limitations in perceptual expressiveness",作者建议未来开发 "a unified tokenizer capable of both understanding and generating high-quality visual content"。The discrete image tokenizer currently used "exhibits limitations in perceptual expressiveness", and the authors suggest developing in future work "a unified tokenizer capable of both understanding and generating high-quality visual content".
论文认为引入 "an auxiliary action head" 有助于进一步增强抓取能力,但当前版本尚未实现。The paper argues that introducing "an auxiliary action head" would help further strengthen grasping capability, but the current version does not yet implement it.
所有定量实验均在 LIBERO 仿真基准上进行,未在真实机器人硬件上验证泛化性能。(inferred from scope)All quantitative experiments are conducted on the LIBERO simulation benchmark; generalization has not been validated on real robot hardware. (inferred from scope)