Skip to content
RobotWorld
Back to Papers

PAPER DEEP DIVE

VLA世界模型自动驾驶

HyWorldVLA: A Vision-Language-Action Model with Hybrid World Modeling for Autonomous Driving

Vision-Language-Action (VLA) models augmented with world modeling represent a promising paradigm for end-to-end autonomous driving. While pixel-level future prediction enables fine-grained spatiotemporal reasoning, it compromises robustness in noisy driving scenarios. Conversely, latent-based world models alleviate this sensitivity but often incur limited interpretability and representational degradation due to absent pixel-level grounding. To reconcile this trade-off, we propose HyWorldVLA, a hybrid world-VLA framework that unifies pixel-level supervision and latent representation learning. In the pre-training stage, HyWorldVLA predicts video latents encoded by a pre-trained video VAE, while simultaneously reconstructing video frames to provide precise pixel-level grounding. During the subsequent co-fine-tuning phase, the model exclusively predicts latent features, which are fed into an action expert to generate trajectories. Extensive experiments on NAVSIM v1 and v2 benchmarks demonstrate that HyWorldVLA significantly outperforms both pixel-based and latent-based world model baselines. Notably, we present the first comprehensive qualitative and quantitative analysis of world model noise robustness in autonomous driving, establishing a new benchmark for evaluating future architectures.

Quanfu Yu, Xian Wu, Hao Xu, Liulong MaJuly 23, 20264 min read
中文

HyWorldVLA: A Vision-Language-Action Model with Hybrid World Modeling for Autonomous Driving

Institution: BYD Automotive New Technology Research Institute  |  arXiv: 2607.20988v1


One-Sentence Summary

HyWorldVLA proposes a hybrid world-VLA framework unifying pixel-level supervision and latent representation learning: pre-training simultaneously predicts video latents and reconstructs video frames, co-fine-tuning exclusively predicts latent features fed to an action expert, achieving SOTA on NAVSIM v1/v2 with superior robustness under rain/fog noise.


Background and Motivation

VLA models integrate visual perception, language understanding, and low-level action prediction for end-to-end autonomous driving. To enhance spatiotemporal reasoning, world modeling augments VLA with future state prediction. Existing paradigms have inherent trade-offs: pixel-based world models provide dense geometric/physical constraints but are sensitive to noise; latent-based models are robust but lack pixel-level grounding, causing representational degradation.

Figure 1: Pixel vs latent trade-off

Figure 1: Pixel-based WM provides fine-grained reasoning but is noise-sensitive; latent WM is robust but lacks grounding.

Problem Definition

At each time step $t$, the model receives front-view images $\mathbf{V}_{t-H:t} = \{v_{t-H}, \dots, v_t\}$, historical waypoints $\mathbf{W}_{t-H:t} = \{w_{t-H}, \dots, w_t\}$ where $w_t = (x_t, y_t, \theta_t)$, and navigation commands $\mathbf{L}_{t-H:t}$. It outputs future waypoints:

$$\mathbf{W}_{t+1:t+T} = f(\mathbf{V}_{t-H:t}, \mathbf{W}_{t-H:t}, \mathbf{L}_{t-H:t})$$

Method

Text-Guided Latent Feature Learning

A video VAE compresses future frames. Video $\mathbf{v} \in \mathbb{R}^{C \times T \times H \times W}$ undergoes spatial encoding (Stable Diffusion VAE + 3D conv, 8× spatial) to $\mathbf{z}_1$, then temporal compression (3D ResNet, 4× temporal) to $\mathbf{z}_2 \in \mathbb{R}^{c' \times \frac{T}{4} \times \frac{H}{8} \times \frac{W}{8}}$.

Figure 2: Framework overview

Figure 2: HyWorldVLA three-stage training — video VAE, world model pre-training, co-fine-tuning.

VAE loss balances reconstruction, adversarial, and KL:

$$\mathcal{L}_{\text{vae}} = \mathcal{L}_{\text{rec}} + \lambda_{\text{GAN}} \mathcal{L}_{\text{GAN}} + \lambda_{\text{KL}} \mathcal{L}_{\text{KL}}$$

Multi-layer text cross-attention with Flan-T5 embeddings suppresses motion ghosting, edge blurring, and temporal flickering.

Pre-training

Simultaneous pixel-level and latent-level world modeling with learnable query $Q$. Pre-training loss combines visual token prediction ($\lambda_1$) and latent motion prediction ($\lambda_2$):

$$\mathcal{L}_{\text{pre}} = \lambda_1 \mathcal{L}_{\text{pixel}} + \lambda_2 \mathcal{L}_{\text{latent}}$$

Optimal: $\lambda_1 = 0.5$, $\lambda_2 = 0.1$. Excessive $\lambda_1 = 1.0$ drops score from 90.59 to 89.83.

Co-Fine-Tuning

Model exclusively predicts latent features fed to action expert via joint attention. Latent supervision ($\lambda_3$) prevents semantic collapse:

$$\mathcal{L}_{\text{co-ft}} = \mathcal{L}_{\text{action}} + \lambda_3 \mathcal{L}_{\text{latent-sup}}$$

$\lambda_3 = 0.1$ optimal — appropriate supervision prevents degradation, but excessive supervision (1.0) hinders autonomous latent semantic learning.

graph TD
    A["Video VAE Training
Text-guided spatio-temporal compression"] --> B["Pre-training
Pixel + Latent World Modeling"] B --> C["Learnable Query Q predicts future latents"] B --> D["Simultaneous frame reconstruction
Pixel-level grounding"] C --> E["Co-Fine-Tuning
Latent-only prediction"] D --> E E --> F["Action Expert
VLM hidden states + future latents + history"] F --> G["Output waypoints W_{t+1:t+T}"]

Experiments

NAVSIM Benchmark

TypeMethodPDMS (v1) ↑EPDMS (v2) ↑
End-to-endDiffusionDrive88.184.5
VLAReCogDrive-8B90.583.6
Pixel WMDriveVLA-W090.286.1
Latent WMLatent-WAM87.7
HyWorldVLAOurs90.5989.71

SOTA on both v1 and v2, significantly outperforming pixel-based and latent-based WM baselines.

Ablation Study

ConfigPDMS ↑Notes
Pure LWM (no pixel regression)87.50Lowest — spatiotemporal modeling critical
Pure WAM (no latent)89.91High-level semantics limited
w/o language guidance90.35Language guides planning semantics
w/o latent in action expert90.29Future info benefits action
w/o latent supervision in co-ft90.17Prevents semantic collapse
Full model90.59All components synergistic

Scene Noise Robustness

On 655 rain/fog noise cases, HyWorldVLA achieves 86.87 PDMS vs WoTE 60.65, DriveLaW 67.49, DriveVLA-W0 61.18. Pure WAM (69.95) and w/o latent supervision (73.18) confirm latent representation is the key robustness source.

Figure 3: Noise robustness

Figure 3: Hybrid world modeling improves noise robustness — DriveVLA-W0 is unstable under illumination changes; our method remains consistent.

From an information-theoretic perspective, the hybrid approach provides complementary information:

$$I_{\text{hybrid}} = I_{\text{pixel}} + I_{\text{latent}} - I_{\text{overlap}}$$

Pre-training maximizes $I_{\text{hybrid}}$ using both supervisions; co-fine-tuning retains only latent supervision to reduce noise-sensitive pixel redundancy. VAE compression to $\frac{1}{256}$ of original size acts as a low-pass filter, reducing noise variance by approximately 256×:

$$\sigma^2_{\text{latent}} \approx \frac{\sigma^2_{\text{pixel}}}{K}, \quad K = 8 \times 8 \times 4 = 256$$

This explains why HyWorldVLA's PDMS drops only ~3.7 points (90.59→86.87) under noise, while pixel-based DriveVLA-W0 drops ~29 points (90.2→61.18).

Limitations

  1. Monocular-based framework not yet extended to multi-modal sensors (LiDAR, surround cameras)
  2. Latent dynamics coupling with critical traffic elements needs strengthening
  3. Noise robustness test set only covers rain/fog; other noise types (snow, night) insufficiently validated
  4. Video VAE text cross-attention increases training complexity

Conclusion and Outlook

HyWorldVLA combines pixel-level fine-grained spatiotemporal modeling with latent noise robustness. Pixel reconstruction preserves detailed spatial/dynamic information; latent prediction in VAE space inherently improves noise resilience. NAVSIM v1/v2 experiments achieve SOTA, with rain/fog validation confirming robustness. Future work includes multi-modal sensor extension and stronger latent-traffic element coupling.

Key Insight: Pixel-based world modeling provides fine-grained spatiotemporal reasoning but fears noise; latent world modeling is robust but lacks grounding — hybridizing both is the optimal solution for autonomous driving VLAs.

Related Papers

FlashVLA: Streaming Action Decoding for Fast and Asynchronous VLA Inference

FlashVLA: Streaming Action Decoding for Fast and Asynchronous VLA Inference

Vision-Language-Action (VLA) models are increasingly promising for robotic manipulation, yet their real-world deployment remains bottlenecked by high inference latency and unstable asynchronous execution. This challenge is particularly pronounced in flow-matching-based VLA models, where action decoding requires multiple iterative steps conditioned on the VLM context. While efficient inference methods improve control frequency and asynchronous methods reduce execution idle time, existing approaches often fail to jointly achieve low-latency inference and accurate, temporally consistent asynchronous execution. We introduce \textbf{FlashVLA}, a streaming action decoding framework that addresses both challenges in a unified formulation. FlashVLA maintains a streaming action buffer with multiple chunks at different noise levels and decodes them using chunk-wise causal attention. This design allows FlashVLA to produce one executable action chunk per inference step. Moreover, its chunk-wise autoregressive formulation implicitly preserves action continuity, enabling smooth asynchronous execution without extra future-state conditioning. Across extensive simulated and real-world experiments, FlashVLA substantially improves inference speed while maintaining strong task performance. It can achieve $\geq$30\,Hz control frequency on a single GPU with smooth asynchronous inference in real-world deployment.

VLAflow matching流式解码Aug 27, 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
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
TemporalFlow-VLA: Learning Physically Grounded Execution History for Long-Horizon Robot Manipulation

TemporalFlow-VLA: Learning Physically Grounded Execution History for Long-Horizon Robot Manipulation

Vision-language-action (VLA) models leverage pretrained vision-language representations for robot control, yet simply adding historical frames does not reliably capture recent physical change. This is especially problematic in multi-stage manipulation, where visually similar states may require different actions depending on prior execution. To address this challenge, we present TemporalFlow-VLA, which learns compact execution history through physically grounded temporal supervision. Using recorded robot states, robot geometry, and calibrated cameras, we construct robot-surface temporal flow as a training-only target and supervise two execution-aligned temporal queries that provide structured history to the action expert. The geometric supervision path is not evaluated at deployment. TemporalFlow-VLA achieves 97.63 +/- 0.26% average success on LIBERO, including 96.60 +/- 0.87% on LIBERO Long, and 85.5%/84.2% Clean/Randomized success across 12 RoboTwin tasks. It shows its clearest advantage over prior methods on longer-horizon, multi-stage manipulation. Controlled history interventions show that action prediction depends on both historical content and temporal order. With asynchronous feature caching, temporal conditioning maintains single-frame-level server-side sampling latency without additional historical-encoding overhead. Overall, TemporalFlow-VLA provides a compact, physically grounded interface for exploiting ordered execution history without explicit motion estimation or geometric processing at deployment.

VLA视觉-语言-动作时间流Aug 27, 2026