DreamZero: A New Architecture for Jointly Predicting Actions and the Future
NVIDIA’s DreamZero is defined as a “world-action model,” with its core innovation lying in changing how the model learns and predicts. Traditional world models typically learn a mapping from the current state and an action to the next state (x' = f(x, a)), whereas DreamZero adopts a more direct, joint prediction approach.
The function this model learns is (x', a) = f(x), meaning that given the current observation x, the model simultaneously outputs both the predicted future state (video frame) x' and the action to be executed a within the same network. This design allows the robot to internally generate a visual forecast of the future before acting, thereby tightly coupling the action with its resulting visual consequences. This provides a much richer supervision signal than simply predicting the action alone.
The Significance of Topping Two Benchmarks
DreamZero’s superior performance has been validated on two major robotics benchmarks. First, it topped the leaderboard on RoboArena, a distributed real-world benchmark built on the Droid robot system. On this platform, human evaluators worldwide perform open-ended tasks in similar environments to compare models in a “head-to-head” fashion.
Second, it achieved a leading position on MolmoSpaces, a high-fidelity physics simulation platform. This benchmark procedurally generates diverse environments to systematically test a model’s generalization ability on a series of basic and combined tasks like grasping, placing, and toggling. Achieving first place on both of these new, non-saturated benchmarks, which still have significant room for improvement, demonstrates the effectiveness and robustness of the DreamZero architecture in both the real world and complex simulated environments.
Performance Analysis: The Key Roles of Data, Scale, and Context
Compared to the current second-place model, pi-0.5, DreamZero’s advantages are evident across multiple dimensions. The first is the model backbone. DreamZero is based on a 14-billion-parameter video generation model (Wan2.1-I2V-14B-480P), while pi-0.5 is based on a 3-billion-parameter Vision-Language Model (PaliGemma). This nearly five-fold difference in parameter scale highlights the potential of larger models in handling complex robotics tasks.
The second is the use of temporal context. DreamZero can process up to 8 frames of video input, enabling it to understand an object’s motion trends and dynamic processes. In contrast, pi-0.5 relies on only a single image for decision-making, which limits its understanding of time-related physical laws like inertia and velocity.
Regarding training data, analysis suggests that data distribution may be more important than data volume. Although pi-0.5 used over 10,000 hours of robot data, DreamZero’s superior performance on specific datasets (like AgiBot) implies that high-quality data whose distribution aligns with the target task may be more valuable than massive amounts of heterogeneous data from different robot morphologies.
Video Generation: Dense Supervision Beyond Sparse Signals

A core hypothesis on how to effectively train such a massive model is that the video generation task plays a crucial role as an auxiliary loss. In the field of robotics, feedback signals for task success are often sparse. Video prediction, however, provides a dense, pixel-wise supervision signal.
This dense supervision forces the model to learn an internal representation of how the world works—an implicit world model. This not only imposes a beneficial structural constraint on the model, preventing it from overfitting on the relatively limited robot data, but also significantly enhances its ability to generalize to unseen environments, such as the diverse scenes in MolmoSpaces.