Skip to content
RobotWorld
Back to Papers

PAPER DEEP DIVE

具身智能PaperEmbodied AI

LeapBot-WA: World-Anchor Action Models via Predictive Latent Alignments

World Action Models (WAMs) have emerged as a powerful paradigm for embodied intelligence, yet the prevailing reliance on pixel-level video generation creates a fundamental bottleneck. Forcing models to reconstruct task-irrelevant visual details dissipates representational capacity and renders policies vulnerable to visual distractors. In this paper, we propose LeapBot-WA, which establishes a novel Predictive-Latent paradigm for WAMs by operationalizing the Joint-Embedding Predictive Architecture (JEPA) as a World-Anchor. Departing from the traditional reliance on visual synthesis, LeapBot-WA shifts the core of world modeling to Predictive Semantic Alignment, extracting abstract physical dynamics directly within a latent foundation space. To bridge the modality gap between non-Gaussian predictive features and diffusion priors, we introduce the Isotropic Semantic Autoencoder (ISAE), which reshapes the anchor's latent space into a diffusion-friendly manifold to prevent off-manifold drift. Furthermore, we design an Asymmetric Mixture-of-Transformers (MoT) architecture. During training, an Anchor Diffusion Transformer acts as a privileged dynamics expert to guide the Action Diffusion Transformer; at inference, this heavy dynamics branch is pruned, enabling zero-overhead execution. LeapBot-WA achieves state-of-the-art performance among predictive models on LIBERO and matches top-tier generative WAMs on RoboTwin 2.0 without requiring large-scale trajectory pre-training. It further demonstrates superior zero-shot robustness to unseen environments and successful real-world transfer, establishing a highly efficient and robust latent-centric paradigm for scalable robotic control. Code: https://github.com/LeapWM/leapbot-wa.

Pei Liu, Nan Zheng, Lang Zhang, Daojie Peng, Yanan Zhang, Feilong Kong, Mingyue Feng, Jiachao Liu, Yaonong Wang, Qifeng Chen, Jun MaJuly 27, 20268 min read
中文

1. Overview: Anchoring World-Action Models via Predictive Latent Alignments

LeapBot-WA, proposed by Pei Liu, Nan Zheng, Lang Zhang et al. in July 2026, establishes a novel Predictive-Latent paradigm for World Action Models (WAMs). Current WAMs rely on pixel-level video generation, forcing models to reconstruct task-irrelevant visual details, dissipating representational capacity and rendering policies vulnerable to visual distractors. LeapBot-WA operationalizes the Joint-Embedding Predictive Architecture (JEPA) as a World-Anchor, shifting the core of world modeling from visual synthesis to Predictive Semantic Alignment—extracting abstract physical dynamics directly within a latent foundation space. To bridge the modality gap between non-Gaussian predictive features and diffusion priors, it introduces the Isotropic Semantic Autoencoder (ISAE), which reshapes the anchor's latent space into a diffusion-friendly manifold to prevent off-manifold drift. An Asymmetric Mixture-of-Transformers (MoT) architecture is designed: during training, an Anchor DiT acts as a privileged dynamics expert guiding the Action DiT; at inference, this heavy branch is pruned for zero-overhead execution. LeapBot-WA achieves state-of-the-art performance among predictive models on LIBERO and matches top-tier generative WAMs on RoboTwin 2.0 without large-scale trajectory pre-training, demonstrating superior zero-shot robustness and real-world transfer.

LeapBot-WA overview

2. Core Problem: The Representation Bottleneck of Pixel-Level Generation

World Action Models enhance policies with foresight by predicting environment evolution, but mainstream methods rely on pixel-level video generation. This creates a fundamental bottleneck: forcing models to reconstruct task-irrelevant visual details such as lighting and background textures dissipates representational capacity and makes policies fragile to visual distractors. LeapBot-WA asks: can the core of world modeling shift from "rendering the future" to "imagining the abstract physical semantics of the future"—retaining foresight while avoiding the reconstruction burden?

3. Method: Dual-Pathway Predictive-Latent Framework

3.1 Framework Overview

LeapBot-WA maps raw observations to control actions via a dual-pathway architecture: a representation pipeline driven by a Predictive Anchor, and a generative pipeline driven by an Asymmetric MoT. Given multi-view observations $\mathbf{o}$, language instruction $l$, and proprioceptive state $s$, the semantic latent $\mathbf{z}$ and shared context $\mathbf{c}$ are defined as:

$$\mathbf{z} = \mathrm{ISAE}(\Phi_{\text{JEPA}}(\mathbf{o})), \qquad \mathbf{c} = \Psi_{\mathrm{enc}}(l, s) \tag{1}$$

where $\Phi_{\text{JEPA}}$ is the Predictive Anchor. LeapBot-WA optimizes a joint diffusion objective coupling the action trajectory $\mathbf{a}$ with the semantic evolution $\mathbf{z}$, ensuring the derived policy is physically grounded by the anchor's predictive priors.

3.2 Diffusion-Friendly Semantic Autoencoding (ISAE)

The fundamental challenge is that predictive anchor features are non-Gaussian while diffusion priors assume Gaussianity. The ISAE reshapes the anchor's latent space into an isotropic manifold, making high-level semantic priors generative-ready for stable action synthesis. Let $\Phi_{\text{JEPA}}(\mathbf{o})$ output semantic tokens $\mathbf{u}$; the ISAE encodes $\mathbf{z} = E_{\text{ISAE}}(\mathbf{u})$ with reconstruction loss:

$$\mathcal{L}_{\text{rec}} = \|\mathbf{u} - D_{\text{ISAE}}(\mathbf{z})\|_2^2 + \lambda_{\text{iso}} \mathcal{L}_{\text{SIGReg}}(\mathbf{z})$$

where $\mathcal{L}_{\text{SIGReg}}$ is isotropic regularization preventing dimensional collapse. Ablations show: without SIGReg the latent rank is only 38.1 with gradient norm variance 1.25; with SIGReg rank restores to 92.3, variance drops to 0.18, and multi-step drift falls from 0.45 to 0.21.

ISAE architecture

3.3 View-Aware Residual Conditioning

The shared-weight ISAE projects multi-view observations into a unified feature space without explicit camera priors, but downstream multi-view dynamics modeling still requires camera identity. To retain multi-view spatial awareness without breaking symmetric encoding, view residuals are introduced directly at the Anchor DiT input. Given a noisy semantic latent $\mathbf{z}^{(v),t}$ at diffusion step $t$:

$$\mathbf{h}^{(v)} = \mathrm{Proj}\!\left(\mathrm{Norm}(\mathbf{z}^{(v),t})\right) + \mathbf{e}^{(v)}_{\mathrm{view}} \tag{8}$$

where $\mathbf{e}^{(v)}_{\mathrm{view}}$ is a learned embedding for view $v$. This decomposition lets semantic content, camera identity, and diffusion conditioning play distinct roles in the downstream transformer.

3.4 Intent-Conditioned Dynamics Modeling

The Anchor DiT branch operates exclusively within the ISAE latent space, aiming to anticipate future semantic states of the world. Bypassing the representation bottleneck of pixel-level generation, it focuses on abstract, action-relevant dynamics (e.g., topological changes of a cloth being folded). Crucially, it is formulated as an intent-conditioned world model: explicitly conditioned on shared context $\mathbf{c}$ (language instruction and proprioception) but entirely independent of the target action trajectory $\mathbf{a}$. By deliberately depriving the world model of step-by-step low-level motor commands, semantic representations are prevented from collapsing into trivial control shortcuts. The model is forced to learn a generalized, intent-driven physical prior—imagining the high-level semantic consequences of a task based solely on the robot's current physical configuration.

3.5 Asymmetric Latent Dynamics Distillation

To transfer abstract dynamics from the intent-conditioned world model to the control policy, an asymmetric distillation mechanism jointly denoises semantic states and actions. Semantic and action sequences are independently corrupted with flow-matching noise at a shared diffusion timestep $t$:

$$\mathbf{z}^t = (1-t)\mathbf{z} + t\boldsymbol{\epsilon}_z, \qquad \mathbf{a}^t = (1-t)\mathbf{a} + t\boldsymbol{\epsilon}_a \tag{9}$$

The noisy tokens are processed by Anchor DiT and Action DiT within the Asymmetric MoT. The core design is asymmetric masked interaction with concatenated tokens $\mathbf{H}^{(\ell)}=[\mathbf{H}_s^{(\ell)}; \mathbf{H}_a^{(\ell)}]$ (Eq. 10) and joint masked self-attention:

$$\mathrm{Attn}_{\mathrm{asym}}(\mathbf{H}^{(\ell)}) = \mathrm{Softmax}\!\left(\frac{\mathbf{Q}\mathbf{K}^\top}{\sqrt{d}} + \mathbf{M}\right)\mathbf{V} \tag{11}$$

The asymmetric mask $\mathbf{M}$ blocks the Anchor DiT from attending to action tokens while preserving the Action DiT's attention to semantic tokens. This induces an elegant hierarchical control structure: the Anchor DiT acts as a visionary dreaming the goal-directed future, while the Action DiT distills dynamics from its semantic foresight. At inference, the Anchor DiT is pruned for zero-overhead execution.

Asymmetric MoT denoising

4. Experiments: Simulation and Real-World

4.1 Simulation Results

On the RoboTwin 2.0 benchmark, LeapBot-WA achieves a 91.46% average success rate, significantly outperforming pre-trained VLAs like $\pi_{0.5}$ and X-VLA. In randomized settings it reaches 92.34%, setting a new SOTA among WAMs and surpassing models using extensive robot pre-training (e.g., Lingbot-VA). On LIBERO suites, LeapBot-WA achieves the best performance within the predictive WAM category at 97.3% success, significantly exceeding predictive baselines like PALM and VLA-JEPA while remaining highly competitive with more computationally expensive generative models such as Motus and ImageWAM.

BenchmarkLeapBot-WACategoryHighlight
RoboTwin 2.0 avg91.46%Predictive WAMBeats $\pi_{0.5}$, X-VLA
RoboTwin 2.0 randomized92.34%WAM SOTABeats Lingbot-VA (needs large pre-training)
LIBERO mean97.3%Best predictive WAMBeats PALM, VLA-JEPA
LIBERO-Plus zero-shot73.1%Predictive WAM SOTALarge margin over VLA-JEPA

4.2 Real-World Results

Deployed on a real UR5 robot, the task requires identifying, picking, and placing various fruits and vegetables into designated containers under different table textures and lighting. Despite the domain gap between simulation and real-world, the agent maintains precise control and exhibits smooth, stable trajectories, confirming that representation quality and the regularized latent space effectively transfer to reliable downstream execution.

RoboTwin 2.0 quantitative results

4.3 Ablation Studies

Cross-Domain Transfer and Representation Quality: Linear probing shows mixed-domain pre-training consistently reduces MSE—action prediction by 4.6%, dynamics prediction by 37.9%, and proprioception by 28.5%. Impact of Isotropic Regularization on Latent Geometry: Without SIGReg, latent rank is 38.1 with gradient variance 1.25 (representation collapse and instability); with SIGReg, rank restores to 92.3, variance drops to 0.18, multi-step drift from 0.45 to 0.21, interpolation jerk from 5.1 to 1.2, and success rate from 42.5% to 71.3%.

Latent Geometry MetricWithout SIGRegWith SIGRegImprovement
Latent Rank38.192.3↑142%
Gradient Variance1.250.18↓85.6%
Multi-step Drift0.450.21↓53.3%
Interpolation Jerk5.11.2↓76.5%
Success Rate42.5%71.3%↑67.8%
LIBERO suite success rates

5. Limitations

  • Foundation model dependency: Performance remains tied to the representational quality of the underlying predictive foundation model; if the foundation under-represents certain domains, LeapBot-WA is limited.
  • Fine-grained contact physics: The current latent-centric approach excels in spatial and semantic understanding, but modeling extremely fine-grained contact physics or high-frequency tactile interactions may require further alignment.
  • Long-horizon planning unextended: The paradigm has not yet been extended to long-horizon task planning, left as future work.
  • Multi-modal priors not integrated: Future work will explore integrating audio-visual or haptic priors into the world-anchor space.

6. Conclusion

LeapBot-WA demonstrates that the core utility of world modeling for robotic manipulation lies in abstract physical anticipation rather than photorealistic rendering. By leveraging a predictive-latent space and the ISAE to bridge representational gaps, it establishes a framework where heavy dynamics branches act as privileged experts during training but are pruned at inference, achieving zero-overhead action generation with superior zero-shot robustness. It achieves predictive WAM SOTA on LIBERO (97.3%), matches top-tier generative WAMs on RoboTwin 2.0 (91.46%) without large-scale pre-training, and reaches 73.1% zero-shot on LIBERO-Plus. The core insight: when a privileged expert that "dreams" future semantics guides the action generator during training and is then pruned at inference, foresight is distilled into the policy—adding no overhead.

flowchart LR
    A["Multi-view obs o"] --> B["Predictive Anchor Φ_JEPA
(fine-tuned JEPA)"] B --> C["Semantic tokens u"] C --> D["ISAE isotropic autoencoder"] D --> E["Diffusion-friendly latent z"] L["Language instr l"] --> F["Shared context c = Ψ_enc(l, s)"] S["Proprioception s"] --> F F --> G["Anchor DiT
(intent-conditioned world model)"] E --> G G -->|"asymmetric masked attention
distill dynamics"| H["Action DiT"] E --> H H --> I["Action trajectory a"] I --> J["Zero-overhead inference
(Anchor DiT pruned)"]
When a privileged expert that dreams future semantics guides the action generator during training yet is silently pruned at inference, foresight is distilled into the policy—the value of a world model lies not in photorealistic rendering, but in abstract physical anticipation.

Related Papers

Humanoid Seated Locomotion on Passive Mobile Chair

Humanoid Seated Locomotion on Passive Mobile Chair

Research on omnidirectional seated locomotion for humanoids on passive chairs. Policies use proprioception only, outperforming standing in tracking. Analyzes regularization effects on convergence.

人形机器人Humanoid坐姿移动Aug 28, 2026
GigaBrain-0.7: Scaling Embodied Foundation Models to Emergent Capabilities with a Three-System Architecture

GigaBrain-0.7: Scaling Embodied Foundation Models to Emergent Capabilities with a Three-System Architecture

Vision-language-action (VLA) models have become a dominant paradigm for generalist embodied agents, demonstrating strong complex and long-horizon task completion in structured settings. Yet it remains an open question whether current VLA systems can benefit from more effective architectural design, scale to substantially larger and more heterogeneous data regimes, and achieve broader generalization across tasks and embodiments. To this end, we present GigaBrain-0.7, an embodied foundation model with substantially improved generalization across diverse robot embodiments. Specifically, GigaBrain-0.7 unifies understanding, prediction, and action through a three-system architecture, scales pretraining to over 37,000 hours of heterogeneous embodied data, and introduces one-stage alignment training that jointly optimizes vision-language understanding and multi-embodiment action generation. Compared with the preceding GigaBrain-0 series and prior state-of-the-art models including $π_{0.5}$, GigaBrain-0.7 achieves substantial improvements in foundation zero-shot capabilities, language-conditioned instruction following, and post-training task success rates. In particular, on our in-house Maker H01 platform and mainstream robot embodiments, GigaBrain-0.7 demonstrates strong task adaptability and completion ability across both home and industrial scenarios. All training code and pretrained model weights will be released.

VLA具身智能世界模型Aug 16, 2026
ABot-N1: Toward a General Visual Language Navigation Foundation Model

ABot-N1: Toward a General Visual Language Navigation Foundation Model

ABot-N1 is a general visual-language navigation foundation model built on a slow-fast dual-system architecture: a 4B slow VLM reasoner emits explicit chain-of-thought plus dual pixel goals (Target Pixel + Affordance Pixel), while a 2B fast action expert decodes continuous SE(2) waypoints via QFormer action queries. The unified pixel-goal interface covers five tasks — point-goal, object-goal, POI-goal, instruction-following and person-following — in a single 30M-sample multi-task checkpoint, further aligned by GRPO post-training with format/target/safety rewards. Two closed-loop benchmarks are released (ABotN-PointBench and ABotN-POIBench). ABot-N1 sets new SOTA on all five benchmarks, boosting POI entrance arrival to 77.3% (+35.0 pp) and reaching 92.9%/95.4% outdoor/indoor point-goal SR, with full deployment on the TuTu quadruped running on a Jetson AGX Orin.

视觉语言导航VLN导航基础模型Jul 11, 2026
Zetta ζ: An Efficient Closed-Loop Embodied Harness for Self-Evolving Physical Intelligence

Zetta ζ: An Efficient Closed-Loop Embodied Harness for Self-Evolving Physical Intelligence

Zetta is a closed-loop embodied harness that keeps the base VLA frozen and evolves code-based runtime critics and recovery skills through three timescale-separated loops: action-frequency governance, rollout-batch failure diagnosis, and validation-gated skill updates. With the Z-Infra rollout infrastructure (20.6x throughput), it reaches 90.8% on LIBERO-Pro and 93.6% on RoboCasa, with zero-shot skill transfer and robotic Aha moments.

具身智能Embodied AIVLAAug 17, 2026