Skip to content

RynnWorld-4D: 4D Embodied World Models for Robotic Manipulation

RynnWorld-4D is a generative world model from Alibaba DAMO that co-produces future RGB frames, depth maps, and optical flow (RGB-DF) from a single RGB-D image plus language instruction, under one unified diffusion process. The paper’s thesis is that RGB-DF is a “physically grounded” representation aligning appearance, geometry, and motion, closer to low-level end-effector actions than 2D pixel video alone. A tri-branch DiT with cross-modal attention and frame-wise 3D RoPE keeps the three streams consistent, and an inverse dynamics head (RynnWorld-4D-Policy) consumes the model’s internal 4D representations in a single forward pass — skipping multi-step denoising — to output closed-loop robot actions. The release bundles a 254.4M-frame training dataset (Rynn4DDataset 1.0) and Apache-2.0 code, model, and project page.

  • The world model co-generates synchronized RGB frames, depth maps, and optical flow (RGB-DF) from a single RGB-D image + language instruction within a single unified diffusion process [Abstract].
  • Architecture is a tri-branch DiT integrating cross-modal attention with frame-wise 3D RoPE so that appearance, geometry, and motion evolve consistently across the three streams [Abstract].
  • Training data is Rynn4DDataset 1.0: >254.4M frames spanning egocentric human and robotic manipulation videos, with high-quality pseudo-labels for depth and optical flow [Abstract].
  • RynnWorld-4D-Policy is an inverse dynamics head that reads the model’s internal 4D representations in a single forward pass, bypassing expensive multi-step denoising to output actions in closed loop [Abstract].
  • Reported to achieve state-of-the-art performance on real-world dexterous bimanual manipulation tasks, particularly on tasks that demand spatial precision and temporal coordination [Abstract].
  • Release includes Apache-2.0 code (github.com/alibaba-damo-academy/RynnWorld-4D), open weights on Hugging Face (Alibaba-DAMO-Academy/RynnWorld-4D), and a project page [pointer].

RynnWorld-4D unifies three prediction tasks — future RGB frames, future depth maps, and future optical flow — under one diffusion process. Instead of predicting only pixel video and hoping geometry and motion emerge, the model treats depth and flow as first-class outputs alongside RGB. The backbone is a tri-branch DiT: three parallel streams (one per modality) coupled by cross-modal attention, with frame-wise 3D RoPE encoding spatiotemporal position so the three streams stay geometrically aligned across frames. Conditioning is a single RGB-D image plus a language instruction; the model rolls out synchronized RGB-DF futures.

For control, the paper attaches an inverse dynamics head (RynnWorld-4D-Policy) that reads the internal representations of the diffusion model in a single forward pass, avoiding the tens-of-steps denoising cost that normally makes video-based world models impractical as policies. Training data is Rynn4DDataset 1.0 (>254.4M frames), assembled from egocentric human videos and robotic manipulation videos with pseudo-labels for depth and optical flow — depth/flow labels are model-generated rather than ground-truth-captured.

The abstract reports state-of-the-art results on real-world dexterous bimanual manipulation, with pronounced gains on tasks requiring spatial precision and temporal coordination — the failure modes the RGB-DF representation is designed to address. Detailed per-task numbers, ablations (tri-branch vs single-branch, RGB-DF vs RGB-only), and comparisons to prior VLAs / world-action models are in the full paper and were not extracted at filing time.

RynnWorld-4D fits directly into the “World-Action Model” thesis catalogued in Pretrained to Imagine, Fine-Tuned to Act: The Rise of World-Action Models and articulated in Direct Video-Action Models — Causal Video Models Are Data-Efficient Robot Policy Learners — a world model that produces closed-loop actions via an inverse-dynamics head over its internal representations, rather than by pixel rollout + external policy. The distinctive move is what the world model predicts: not just RGB, but a synchronized RGB + depth + optical-flow triple. That echoes the “off-the-shelf UMMs fail to emit plausible depth” observation from Unified Multimodal Models — depth doesn’t emerge from RGB pretraining, so this paper trains it in explicitly. It also contrasts with In-Context World Modeling for Robotic Control (in-context world modeling, RGB-only) and complements Rethinking Video Generation Model for the Embodied World (ReVidGen / RBench / RoVid-X) (RoVid-X’s argument for optical flow + robotic-specific data at scale). The single-forward-pass inverse dynamics head is the same trick Geometric Action Model for Robot Policy Learning uses to make world-model policies real-time, applied here to a tri-modal DiT.