Research
DreamX-Phi 1.0: Action-Conditioned Video World Model for Robotic Manipulation
DreamX-Phi 1.0: Action-Conditioned Video World Model for Robotic Manipulation Overview Research area: Computer vision and robot learning, specifically action-conditioned video world models for robotic
- arXiv
- 2608.13489
- Published
- 2026-08-13
- Authors
- DreamX Team, Rui Chen, Xiangxiang Chu, Geng Li, Jifan Li, Qingfeng Shi, Datao Tang, Jing Tang, Jun Wang, Pengfei Zhang
AI summary
DreamX-Phi 1.0: Action-Conditioned Video World Model for Robotic ManipulationOverview
- Research area: Computer vision and robot learning, specifically action-conditioned video world models for robotic manipulation (bimanual, end-effector-level control).
- Technical level: Advanced. The work builds on a 5B-parameter video diffusion transformer, injects SE(3) group-action attention (PRoPE-style), adds auxiliary depth and object-centric supervision, and distills the generator into a few-step sampler via distribution-matching distillation (DMD2).
- Scope: One sentence: DreamX-Phi 1.0 is a geometry-aware video world model that predicts future bimanual robot observations from a single frame, a language instruction, and a prescribed action trajectory, and it is evaluated on the WorldArena 1.0 and 2.0 benchmarks.
What This Paper Is About
Modern video generators can produce photorealistic rollouts, but a convincing video is not necessarily faithful to the actions that were commanded — the model may move the wrong arm, miss the object, or confuse grasping with release. This paper builds a world model that takes an observed RGB frame, a language instruction, and a prescribed bimanual action sequence of end-effector poses and gripper states, and predicts the resulting future video while keeping each arm on its commanded path and the manipulated object visually consistent. The goal is a learned simulator that can be used to evaluate candidate actions before physical execution, and to serve as a rollout environment for policy training.
Key Contributions
- Geometry-aware action representation. A PRoPE-style residual attention branch injects per-arm SE(3) transforms directly into attention, so the commanded 3D end-effector motion and its image-space consequences are encoded together rather than compressed into generic action tokens. All arms share one reference frame, each arm keeps a fixed group of attention heads, and gripper state is added separately as a per-arm bias since it is scalar-valued.
- Manipulation-aware supervision. A lightweight auxiliary depth branch (replicating the final M of N transformer blocks, connected one-way by cross-attention to the RGB branch) is supervised against depth targets in latent space, and SAM3 mask reweighting plus a frozen V-JEPA teacher (Gram-matrix relational loss) focus learning on the manipulated object's geometry and temporal evolution.
- Efficient few-step deployment. DMD2 distribution-matching distillation, combined with a noised non-saturating GAN objective, distills the multi-step generator into a few-step student.
- Benchmark results. On the fixed WorldArena 2.0 snapshot (commit cb8f9c2, August 12, 2026), the submission ranks first among 31 Track 1 entries with an EWMScore-P of 60.65 and ties for second on Track 2 with a 67.19% Adjust Bottle success rate; an offline WorldArena 1.0 Track 1 evaluation reaches an EWMScore-P of 76.88.
Main Findings
- WorldArena 2.0 Track 1 (leaderboard snapshot at commit cb8f9c2). DreamX-Phi-1.0-FDM-0730 ranks first on the complete 31-entry leaderboard with an EWMScore-P of 60.65. Alpha-World (60.13) and FlowWAM-FiveAges (59.72) complete the Top 3.
- Component-level Track 1 standout values. DreamX-Phi records Interaction Quality 57.36, Trajectory Accuracy 57.15, Depth Accuracy 98.55, Perspectivity 82.24, Instruction Following 61.62, Semantic Alignment 90.53, JEPA Similarity 92.93, Subject Consistency 71.93, and Background Consistency 84.52. Its Dynamic Degree (22.90), Flow Score (5.81), Motion Smoothness (63.26), Image Quality (63.25), Aesthetic Quality (43.38), and Photometric Consistency (14.29) are near, but not the highest among, the displayed systems.
- WorldArena 2.0 Track 2. Using the submitted world model as the rollout environment to optimize a π0.5 policy, the resulting policy achieves a 67.19% success rate on held-out Adjust Bottle episodes, tying Lute for second. WOVR-PLUS leads with 68.75%. Other displayed systems include CtrlWorld (62.50), IRASim (61.33), RoboScape (60.74), OpenSora (60.16), Cosmos-Predict-2.5 action (59.38), and iVideoGPT (56.25).
- WorldArena 1.0 Track 1 (offline evaluation). The offline DreamX-Phi result is 76.88, which the paper states is 3.24 points above the leading official entry in the July 15, 2026 snapshot (UNIS at 73.64, followed by SisyphusWorld at 73.06 and BWM-Fast at 72.71). Component scores include Depth Accuracy 93.17, Trajectory Accuracy 58.98, Perspectivity 96.30, Instruction Following 84.92, Interaction Quality 77.90, and Semantic Alignment 89.68.
- Note on the aggregate. The paper reports that averaging the 15 component values visible at four decimal places yields 76.89 after rounding, but it reproduces the reported aggregate of 76.88 rather than substituting the recomputed value.
- Qualitative behavior. The paper states that predicted rollouts keep arms, grippers, and manipulated objects coherent, including under domain-randomized backgrounds, textures, lighting, and distractor layouts, as shown in Figure 3.
- No ablation numbers are reported. The paper explicitly notes that leaderboard scores evaluate the full system and do not isolate the contribution of individual components, and that matched ablations are still needed.
Methodology in Plain English
The model is built on Wan2.2-TI2V-5B, a pretrained video diffusion transformer, and learns to predict future video latents from the first frame's latent under a flow-matching objective.
Action conditioning. Instead of turning the robot action trajectory into a small control vector, the authors treat each arm's end-effector poses as ordered SE(3) transformations. Each arm's pose is expressed relative to arm 1's initial pose so all arms live in a shared frame, translations are normalized by a single motion-amplitude factor (so the resting distance between arms does not dominate the scale), and the normalized poses are inverted into matrices A. These matrices are used as PRoPE projective transforms inside a parallel attention branch: queries, keys, and values are rotated by token-specific operators, so any pair of tokens is coupled through their relative motion rather than an absolute frame. Attention heads are split into fixed contiguous groups, one group per arm, which keeps arm identity persistent. Gripper opening is a scalar, so it cannot be an SE(3) element; it is added after the inverse geometric map as a per-arm bias on that arm's heads. This branch is a residual added to the pretrained self-attention output, and both the gripper adapter and the output projection start at zero, so the branch begins silent.
Depth supervision. A lightweight depth branch is formed by replicating the final M of the transformer's N blocks, sharing the first N−M blocks as a trunk and initializing each depth block from its pretrained RGB counterpart. At each adapted layer, cross-attention lets the depth pathway read the RGB keys and values. Crucially, the connection is one-way: RGB never reads depth, so the RGB computation is unchanged and depth is optional at inference. Depth targets come from Depth Anything 3 (DA3) maps encoded by the same frozen video VAE, and the branch is supervised directly in latent space by mean-squared error.
Object-centric supervision. Offline SAM3 processing produces a binary mask video of the manipulated object (used only in training, never at inference). After projection to the latent grid, masked tokens receive a weight based on an object-to-background ratio greater than one, with mean-weight normalization to stabilize loss scale as mask area changes; clips without a valid mask keep uniform weights. Separately, a frozen V-JEPA teacher supplies relational supervision: a temporally stratified set of teacher tokens (capped at M_max) is selected, student hidden tokens are interpolated to the same coordinates, and the loss aligns the Gram matrices of the two feature sets rather than the feature coordinates themselves, which avoids tying the student to the teacher's feature basis. A sample only contributes if its mask yields enough tokens (M_b ≥ M_min) and its flow-matching noise is not too large (σ_b ≤ σ_max). The teacher stays frozen; gradients stop at the hidden state during an initial projector-only phase and are opened linearly later. The paper does not report the specific numeric values used for the ratio, M_max, M_min, or σ_max.
Few-step post-training. DMD2 distills the multi-step generator into a few-step student by minimizing a KL divergence between the student's and data's conditional marginals at sampled noise levels, complemented by a noised non-saturating GAN objective. The student, frozen teacher, and online fake-score denoiser all receive the same conditioning tuple (observed frame, action trajectory, instruction), while the adversarial head reads the denoiser's bottleneck features. The few-step student uses the same fixed denoising schedule in training and inference.
Training data. The corpus mixes action-agnostic egocentric video (Ego4D, 3,700 h), real-robot data (AgiBot World 2026, 1,900 h; Cosmos3-DROID, 350 h; RoboCOIN, 618 h), real/simulated InternData-A1 (78 h real, 3,747 h simulated), and RoboTwin 2.0 (25,000 action-annotated clips, reported in clips because duration is unavailable). After removing mobile-base and stationary segments, the filtered AgiBot imitation-learning split contains 178.7 hours. Failed task executions were deliberately retained. Action-annotated sources are normalized into LeRobot v2.1; synchronized multi-view streams are spatially concatenated, single-view streams stay single-view. RoboTwin videos were super-resolved with the authors' DreamX-Refiner before entering the action-conditioned pool.
Why This Matters
Action-conditioned world models let researchers test candidate actions in imagination before spending real robot time. This paper argues that the hard part is not realism but faithfulness — the rollout must follow the commanded arm and keep the manipulated object coherent — and it shows a concrete interface (per-arm SE(3) attention plus gripper bias) for making that faithfulness structural rather than hoped-for.
- Robot manipulation planning: using predicted rollouts to screen candidate bimanual trajectories before physical execution.
- Policy training in simulation-like environments: Track 2 shows the model can act as the rollout environment for optimizing a π0.5 policy, with the policy then evaluated on held-out Adjust Bottle episodes in RoboTwin 2.0.
- Data augmentation and demonstration synthesis: high-fidelity rollouts conditioned on recorded trajectories could supplement scarce real manipulation data.
- Sim-to-real development: domain-randomized RoboTwin scenes with varied backgrounds, textures, lighting, and distractors are already part of the evaluation, pointing toward robustness testing.
- Benchmarking infrastructure: WorldArena reports 15 normalized component metrics spanning visual quality, temporal dynamics, content consistency, physical interaction, 3D structure, and conditioning fidelity, giving the field a shared diagnostic surface beyond a single score.
Industry relevance. Video world models are directly relevant to robotics companies and embodied-AI labs that need scalable ways to validate control policies without exhaustive physical trials. A few-step distilled student, produced by DMD post-training, matters for deployment latency, and the paper states that model weights and inference code will be made publicly available after the WorldArena 2.0 IROS Challenge concludes (GitHub: github.com/AMAP-ML/DreamX-Phi).
Future Directions
- Matched ablations. The paper states that leaderboard scores evaluate the whole system and that matched ablations are needed to quantify the contribution of each component — arm-grouped PRoPE, the depth branch, SAM3 weighting, V-JEPA relational supervision, and DMD distillation are not yet isolated.
- Broader evaluation. Current evaluation is limited to WorldArena and RoboTwin, with Track 2 covering only the Adjust Bottle task, so generalization to other tasks, embodiments, and real robots remains unverified.
- Closed-loop control. DreamX-Phi predicts from externally provided actions rather than generating them. Track 2 shows it can serve as a rollout environment for a separate policy, but it has not been evaluated as a closed-loop controller.
- Continued forward-dynamics work. The conclusion notes that DreamX-Phi 1.0 is formulated as a Forward Dynamics Model (FDM), predicting future observations from an externally provided action sequence; the Future Work section text is truncated in the provided content, so the specific planned extensions beyond this framing are not reported.
Target Audience
Researchers and engineers working on video world models, embodied AI, and robot manipulation — particularly those interested in how to inject structured geometric (SE(3)) action conditioning into a diffusion transformer instead of relying on compact action tokens. It is also relevant to practitioners who care about auxiliary supervision design (depth, object masks, predictive-video teachers) and to benchmark followers tracking WorldArena 1.0 and 2.0. Because the method relies on diffusion transformers, flow matching, PRoPE attention, and DMD distillation, the paper is best suited to readers with an intermediate-to-advanced background in generative modeling and robotics; casual readers will get the most value from the framing of action fidelity versus visual realism, and from the benchmark tables.
Authors’ abstract
We present \textbf{DreamX-Phi 1.0}, an action-conditioned video world model for robotic manipulation that, given an observed frame, a language instruction, and a prescribed action sequence comprising end-effector poses and gripper states, predicts the resulting future observations. Yet realism alone does not guarantee faithfulness: a convincing rollout can still move the wrong arm or lose the manipulated object. To ensure the prediction respects each arm's commanded path, we inject per-arm $\mathrm{SE}(3)$ transformations into attention via \textbf{PRoPE-style geometric encoding}, preserving arm identity and rigid-motion structure. Action control alone does not fully constrain scene geometry or the evolution of small manipulated objects. We therefore add a lightweight \textbf{depth branch} for scene-level geometry and use \textbf{SAM3 masks} with a frozen \textbf{V-JEPA teacher} to maintain object consistency throughout grasping. We further distill the multi-step generator into a few-step student via distribution-matching distillation for efficient deployment. At the time of writing, \model{} achieves first place on Track~1 and second place on Track~2 of the WorldArena~2.0 Challenge. Our model and code will be publicly available.