[CoRL 2025] World2Act: Grounding VLA Policies in the Latent Dynamics of World Models

World2Act: Latent Action Post-Training via Skill-Compositional World Models

Summary
Problem
Method
Results
Takeaways
Abstract

The paper introduces World2Act, a post-training framework for Vision-Language-Action (VLA) policies that aligns robot actions with World Model (WM) video-dynamics latents using a contrastive matching objective. By leveraging latent-space alignment and a skill-compositional WM, it achieves state-of-the-art results on RoboCasa and LIBERO benchmarks, improving real-world robot performance by 6.7%.

TL;DR

World2Act is a novel post-training framework that bridges the gap between World Models (WMs) and Vision-Language-Action (VLA) policies. Unlike prior works that trust the "hallucination-prone" pixels of generated videos, World2Act aligns the policy directly with the WM's internal latent dynamics via contrastive learning. Combined with a new skill-decomposition pipeline, it achieves SOTA performance on RoboCasa and LIBERO, while showing significant gains in real-world deployment.

The Core Challenge: Pixels Are Deceptive

Generative World Models are powerful, but they are not perfect. When a WM "imagines" a robot picking up a cup, it might synthesize a duplicate handle or cause the object to flicker (visual hallucinations).

  • The Problem: Conventional post-training methods (like IDMs) attempt to map these noisy pixels back to actions. If the pixels are wrong, the action labels are garbage.
  • The Complexity: Robotic tasks vary in length. A standard video model trained on 2-second clips fails when asked to perform a 30-second multi-stage kitchen task.

Methodology: Latent Alignment & Atomic Skills

The researchers at MBZUAI proposed a two-pronged solution:

1. Skill-Compositional World Model

Instead of generating one long, unstable video, they use an LLM (DeepSeek) to decompose high-level instructions into atomic skills (e.g., "reach," "grasp," "place"). They released RoboCasa-Skill and LIBERO-Skill datasets, which normalize the video length distribution, making the WM training far more stable.

Skill Decomposition Pipeline

2. World2Act Alignment

The framework operates in two stages:

  • Stage 1 (Representational Bridge): They train Video and Action Adapters to map WM latents and robot actions into a shared space using a bidirectional InfoNCE loss. This ensures that "moving the arm left" in action-space and "visual movement to the left" in latent-space are mathematically synonymous.
  • Stage 2 (Residual Post-Training): They freeze the heavy VLA (like GR00T-N1.6) and train a lightweight Residual Policy. This policy tweaks the base actions to better align with the WM's "visual plan" in the latent space.

World2Act Policy Architecture

Experimental Validation

World2Act was tested against a battery of SOTA models including π0, OpenVLA, and Cosmos Policy.

  • Simulation Excellence: On RoboCasa, adding World2Act to GR00T-N1.6-ft boosted success rates to 72.6%, outperforming the best prior post-training baseline (VLA-RFT) by 1.6%.
  • Robustness to Scaling: As shown in the scaling plots, World2Act improves monotonically with more synthetic data, whereas pixel-based methods (like DreamGen) show instability due to image-level noise.

Correlation Results

Real-World Impact

The researchers deployed World2Act on a Franka Research 3 arm. Even when the World Model's visual output was slightly blurry (e.g., a missing drawer handle), the latent dynamics remained physically sound. This allowed the robot to achieve a 6.7% improvement in real-world success rates for tasks like picking cups and closing drawers.

Real World Execution

Conclusion & Insights

The success of World2Act suggests that for Physical AI, the internal features of a world model are more valuable than its final rendered frames. By focusing on "what the model thinks will happen" (latents) rather than "what the model shows" (pixels), we can build far more resilient robotic agents.

Key Takeaways:

  • Atomization is Key: Breaking tasks into skills is essential for long-horizon stability.
  • Latents > Pixels: Latent alignment bypasses the "uncanny valley" of generated video artifacts.
  • Efficient post-training: The residual policy approach allows for fast tuning (>250Hz inference) without destroying the base VLA weights.

Find Similar Papers

Try Our Examples

  • Search for recent papers that utilize latent-space alignment instead of pixel-level reconstruction to improve Vision-Language-Action (VLA) policy robustness.
  • Which study first introduced the concept of skill-decomposition in robotic world models, and how does this paper's LLM-driven atomization differ in scalability?
  • Explore research applying contrastive latent matching between video generative models and motor controllers in high-dimensional humanoid robotics.
Contents
[CoRL 2025] World2Act: Grounding VLA Policies in the Latent Dynamics of World Models
1. TL;DR
2. The Core Challenge: Pixels Are Deceptive
3. Methodology: Latent Alignment & Atomic Skills
3.1. 1. Skill-Compositional World Model
3.2. 2. World2Act Alignment
4. Experimental Validation
5. Real-World Impact
6. Conclusion & Insights