Beyond VLAs: How World Action Models Reshape Robot Manipulation
https://developer.nvidia.com/blog/beyond-vlas-how-world-action-models-reshape-robot-manipulation/📌 【NVIDIA 最新研究】從 VLA 轉向 WAM:機器人如何透過理解物理規律實現泛化?
TL;DR:透過將視覺語言模型(VLM)換成影片世界模型(Video World Model),WAM 能讓機器人具備物理先驗知識,大幅提升泛化能力。
機器人學面臨的核心挑戰在於「泛化」(Generalization)——當環境中的物體形狀、位置或光照發生變化時,訓練好的策略往往會失效。傳統做法是讓機器人模仿動作,但這忽略了一個關鍵:機器人需要理解物理規律,而不僅僅是模仿動作。
🤔 VLA 的侷限:懂語言,但不懂物理動態
目前的標準做法是構建視覺語言動作模型(Vision-Language-Action, VLA),即在預訓練的視覺語言模型(VLM)上添加動作模組。雖然這在語義理解上表現出色,但存在致命缺陷:
- 缺乏動態模型:VLM 的優化目標是描述圖像(例如:「桌上有個杯子」),而不是預測世界如何演變。
- 無法預測物理變化:它不知道夾具閉合時杯子會發生什麼事、毛巾會如何摺疊,或物體掉落後會落在哪裡。
- 數據效率低下:VLA 通常需要針對同一任務提供極其相似的示範數據(Demonstrations)才能學習。
🧩 WAM 的崛起:從「模仿動作」轉向「理解世界演變」
為了克服這點,研究界開始將背景模型從 VLM 換成「影片世界模型」(Video World Model),進而產生「世界動作模型」(World Action Model, WAM)。
根據 NVIDIA 研究顯示,同時預測影片與動作的 WAM 具有 VLA 無法輕易取得的特性:
- 從多樣化數據中學習:只要是交互數據都能提供物理知識(如推動、抓取、丟棄),不一定要完全相同的任務示範,這降低了數據收集成本。
- 具備物理通用性:物理規律比語義更具通用性。一旦模型學會物體滑動或掉落的規律,就能將此知識應用於從未見過的場景。
- 快速適應新硬體:由於模型已有物理交互的先驗知識(Physics Prior),在面對新機械手臂或夾具時,僅需極少量的示範即可完成專業化訓練(Specialization)。
📊 Cosmos 3:構建 WAM 的強大基礎模型
NVIDIA 提出的 Cosmos 3 是一個基於混合專家轉換器(Mixture-of-Transformers, MoT)架構的全能世界基礎模型。
- 架構設計:透過自回歸轉換器(Autoregressive Transformer)進行推理並產生文本;透過擴散轉換器(Diffusion Transformer)處理連續模態(圖像、影片、音訊與動作)。
- 海量數據訓練:包含約 7.67 億張圖像、3.48 億段真實世界動態影片,以及 800 萬份涵蓋機器人操作、自動駕駛與相機運動的動作樣本。
- 模型規模:提供 4B (Edge)、16B (Nano) 與 64B (Super) 三種版本。
💡 從世界模型到機器人策略:Cosmos 3 Policy
透過對 Cosmos 3 進行後訓練(Post-training),可以將其轉化為專業的機器人策略(如 DROID 平臺):
- 邊緣運算與工作站部署:
- Cosmos3-Nano-Policy (16B):適合在工作站運行,透過網路將觀察值傳輸至機器人並接收動作塊。
- Cosmos3-Edge-Policy (4B):適合直接在嵌入式硬體(如 NVIDIA Jetson Thor)上部署,實現 15 Hz 的即時控制。
- 「邊行動邊想像」的能力:當模型輸出動作時,它能同時輸出預測影片——即執行該動作後,相機會看到的畫面。
- 架構完整性:後訓練過程並未移除原始的生成能力,策略模型依然保有推理與生成影片的能力。
📈 實驗數據證明架構的重要性
NVIDIA 透過對比實驗證明,提升效能不僅靠規模,更靠架構: 兩組使用相同配方與算力的 DROID 策略,一組從基礎模型開始,另一組從具備多領域動作能力的「全能檢查點」(Omni Checkpoint)開始,後者的 RoboLab 成功率從 28.1% 提升至 36.8%。
🎯 實務啟示
對於機器人開發者而言,WAM 的出現代表著開發流程的轉變:你不再需要從零開始訓練世界模型,而是可以利用 Cosmos 3 這種具備強大物理先驗的基礎模型,透過將數據轉換為 LeRobotDataset 格式並套用公開的後訓練配方,快速將新硬體(如 Franka、UR、WidowX 等)轉化為具備高度泛化能力的機器人。
🔗 來源
- 標題:Beyond VLAs: How World Action Models Reshape Robot Manipulation
- 作者/機構:Michelle Horton @ NVIDIA Developer
- 連結:https://developer.nvidia.com/blog/beyond-vlas-how-world-action-models-reshape-robot-manipulation/
#AI #Robotics #NVIDIA #Cosmos3 #MachineLearning #WorldModels #VLA #WAM #ComputerVision #EmbodiedAI
原始資料 NVIDIA Developer · 收集於 2026-08-05
摘要原文
A central challenge in robotics is building policies that generalize beyond the demonstrations they’re trained on. A policy that succeeds in a training scene often fails when object shapes, positions, or lighting change. Generalizing to these new conditions requires the policy to understand the tasks underlying physics, not just mimic the demonstrations. This ability comes from the backbone it’s built on. The standard way to build a language-conditioned robot policy is to add an action module to a pretrained vision-language model (VLM) , producing a vision-language-action (VLA) model. This approach has carried generalist manipulation a long way. But a VLM backbone learns to describe the world, not predict how it evolves . That missing dynamics model is exactly what a robot needs when a task depends on anticipating how a scene will change. A growing line of research replaces the language backbone with a video world model , producing world action model (WAM) . NVIDIA researcher Jim Fan explored this shift in his Robotics’ End Game talk—an idea later summarized as “VLAs are dead, long live World Action Models.” This post explores how post-training can turn WAMs into specialized robot policy, how WAMs compare to VLAs, and why the open NVIDIA Cosmos 3 world model provides a strong foundation for building WAMs. How post-trained policies are built today In the VLA paradigm, a pretrained VLM provides semantic understanding of scenes and language instructions, while post-training learns to map that understanding to robot actions. Modern generalist robot policies increasingly build on this approach. However, a VLM is optimized to produce text about images, not to model how a scene will evolve. It does not learn what happens to a mug when the gripper closes, how a towel folds, where an object lands when released. VLAs generalize well semantically but are less effective at physical generalization to unseen behaviors and environments, as their backbones model language and perception rather than world dynamics. What a WAM changes A WAM overcomes that dynamics-modeling limit by building the policy on a video world model. Because the backbone models how the world evolves, post-training does not have to teach dynamics from scratch, it specializes a model that already has a physics prior. The NVIDIA research paper World Action Models are Zero-shot Policies shows that jointly predicting video and action gives a policy properties a VLA cannot easily acquire: It learns from diverse data. A VLA learns to map instructions to trajectories, and often requires near-identical demonstrations of the same task. A WAM learns physics: how objects move when pushed, grasped, or dropped. Any interaction data teaches it something. A varied dataset that would be wasted on a VLA becomes a training signal, and data collection gets cheaper. It generalizes in the open world. Physics is more general than semantics. The way an object falls or slides doesn’t change with the object, so a model that has learned dynamics carries that knowledge into scenes and motions it was never trained on. It adapts to new robots with few demonstrations. A model that already understands physical interaction needs far less task-specific data to specialize to a new arm or gripper. For a team building a policy, these are the practical wins: less data to reach a given capability, better behavior outside the training distribution, and a shorter path to a new embodiment. They are properties of the pretraining backbone , so they show up in every policy post-trained from it. Cosmos 3 is a strong WAM foundation Cosmos 3 is an omni-model world foundation model built on a Mixture-of-Transformers (MoT) architecture. Multimodal input flows through an autoregressive transformer for reasoning producing discrete tokens such as text. This guides a diffusion transformer for continuous modalities, including image, video, audio, and action. Text is generated by next-token decoding; everything else, including actions, is synthesized through iterative denoising. A single model spans these modalities while keeping the generation mechanism best suited to each. Cosmos 3 comes in three sizes: 4B NVIDIA Cosmos Edge, 16B NVIDIA Cosmos Nano, and 64B NVIDIA Cosmos 3 Super. What makes Cosmos 3 a strong foundation for post-training is the breadth of its physical-world data. The dataset includes roughly 767M images,348M videos of real-world dynamics, 8M action samples spanning robot manipulation, autonomous driving, camera motion, and egocentric motion. Figure 1. A VLA generates robot actions from semantic reasoning and robot state, while a WAM jointly predicts actions and future world states From world model to robot policy: Cosmos 3 Policy DROID models Cosmos 3 is the starting point for specialization. Cosmos3-Nano-Policy-DROID is a 16B-parameter policy post-trained from Cosmos 3 Nano for the DROID platform, which is a Franka Panda arm with a Robotiq gripper.A 4B version, Cosmos3-Edge-Policy-DROID , is post-trained the same way, which can be used for on-device deployment. Given a language instruction and multi-camera observations, it generates robot action trajectories. Three properties follow from its omni foundation: It imagines while it acts. When the model outputs actions, it can also output a video: what the robot’s cameras will see if those actions are executed. The action and the predicted outcome come from the same model, at the same time. It keeps the full omni architecture. Post-training removes nothing. The policy checkpoint can still reason and generate video, not just output joint positions. The prior is measurable. The Cosmos 3 technical report compares two DROID policies trained with the same recipe, data, and compute. One started from the base checkpoint, while the other started from an omni checkpoint trained on multi-domain action data. The omni checkpoint raised RoboLab success from 28.1% to 36.8%. This is clear evidence that the improvement comes from the architecture, not just from scale. Figure 2. A robot observes a banana on the desk (left); the model’s predicted action plan is shown as text Deployment considerations A WAM carries the full generative world model, not just an action head. It’s larger than compact VLAs, but Cosmos 3 map to different deployment tiers rather than forcing one trade-off: Workstation serving (Nano, 16B ). Cosmos3-Nano-Policy runs beside the robot rather than on board. Real-world DROID deployment serves it on a single NVIDIA RTX PRO 6000, with the robot streaming observations over the network and receiving action chunks back. On-device (Edge, 4B). Cosmos 3 Edge runs the same policy workload directly on embedded hardware. It operates at robot-control resolution (640×360 observations) and generates 32 actions per inference on NVIDIA Jetson Thor while achieving real-time control at 15 Hz. It’s supported across NVIDIA edge computers including RTX PRO GPUs, DGX, GeForce RTX GPUs, and Jetson, including the new Jetson T2000 and T3000 modules. Why build robot policies with Cosmos 3? WAMs represent a shift from learning to act to learning how the world evolves. Cosmos 3 makes this approach practical: Open foundation, SOTA starting point. The base model, datasets, post-training recipe, trained weights, evaluation tools, and serving stack are all released under a license that permits commercial use. Faster adaptation. Strong physical priors cut the task-specific data a new policy needs. Convert your data to the LeRobotDataset format the robot-learning ecosystem already records into, run the published recipe. One foundation, many robots. Each new embodiment, such as Franka, dual-arm setups, UR, WidowX, still requires its own post-training run. But all of them start from the same pretrained foundation rather than pretraining a world model from scratch, reducing the demonstrations needed for each.
由 tencent/hy3:free 自動生成