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.
Key claims
Section titled “Key claims”- 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].
Method
Section titled “Method”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.
Results
Section titled “Results”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.
Why it’s interesting
Section titled “Why it’s interesting”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.
See also
Section titled “See also”- World Foundation Models — RynnWorld-4D is a world-foundation-model-as-policy-substrate release with an inverse-dynamics head
- VLA Models — RynnWorld-4D-Policy sits in the “world-model-conditioned VLA” branch (video prior + inverse dynamics)
- 4D Scene Generation — the paper’s “4D” claim is exactly synchronized RGB + depth + flow evolution over time
- Dual-stream diffusion transformer — tri-branch cross-modal attention is a natural generalization of dual-stream MMDiT to three modalities
- Pretrained to Imagine, Fine-Tuned to Act: The Rise of World-Action Models — the “World-Action Model” recipe taxonomy this paper instantiates
- Direct Video-Action Models — Causal Video Models Are Data-Efficient Robot Policy Learners — the cleanest wiki articulation of video-model-as-policy + inverse-dynamics as translator
- Rethinking Video Generation Model for the Embodied World (ReVidGen / RBench / RoVid-X) — RoVid-X argues optical flow + robotic data at scale is the missing ingredient; RynnWorld-4D scales that intuition into training targets
- Geometric Action Model for Robot Policy Learning — same single-forward-pass inverse-dynamics head trick, different world-model backbone
- In-Context World Modeling for Robotic Control — RGB-only in-context world model; RynnWorld-4D argues geometry+motion should be first-class outputs