Papers
Topics
Authors
Recent
Search
2000 character limit reached

WorldVLN: Autoregressive World Action Model for Aerial Vision-Language Navigation

Published 15 May 2026 in cs.RO and cs.CV | (2605.15964v1)

Abstract: Aerial vision-language navigation (VLN) requires agents to follow natural-language instructions through closed-loop perception and action in 3D environments. We argue that aerial VLN can be formulated as a prediction-driven world-action problem: the agent should anticipate latent world evolution and act according to the predicted consequences. To this end, we propose WorldVLN, the first autoregressive world action model for aerial VLN. Unlike full-sequence video-generation world models that generate an entire visual clip, WorldVLN adapts a latent autoregressive video backbone to predict short-horizon world-state transitions and directly decodes them into executable waypoint actions. After each action segment is executed, newly received observations are encoded back into the autoregressive context, enabling closed-loop world-action prediction. We further introduce a two-stage training framework that first grounds the video prior in instruction-conditioned navigation dynamics and then develops Action-aware GRPO, the first reinforcement learning method tailored to autoregressive WAMs, to optimize waypoint decisions through their downstream rollout consequences. On public outdoor and indoor benchmarks, WorldVLN consistently outperforms existing Vision-Language-Action baselines with 12\%+ success-rate gains and larger advantages on challenging cases. It further transfers zero-shot to real drone deployment, suggesting that the proposed WorldVLN offers a promising route for spatial action tasks. Demos and code are available at https://embodiedcity.github.io/WorldVLN/.

Summary

  • The paper presents an autoregressive world action model that couples latent world prediction with UAV waypoint generation to enhance spatial reasoning.
  • It employs a two-stage training framework, combining supervised grounding with action-aware GRPO for improved trajectory accuracy and spatial fidelity.
  • The method outperforms traditional VLA baselines, demonstrating significant gains in both synthetic benchmarks and zero-shot real-world UAV deployments.

WorldVLN: Autoregressive World Action Model for Aerial Vision-Language Navigation

Motivation and Background

Vision-Language Navigation (VLN) lies at the intersection of spatial intelligence and embodied AI, requiring agents to interpret natural language instructions and execute navigation in complex 3D environments. Traditional Vision-Language-Action (VLA) architectures, extending Vision-LLMs (VLMs) with action heads, are effective in object recognition and instruction parsing but fundamentally limited in modeling the temporal, geometric, and causal world dynamics induced by an embodied agentโ€™s actions. While the emergent capabilities of large-scale video generation models suggest the potential to capture spatiotemporal predictions, applying these generative priors directly to navigation exposes misalignmentsโ€”primarily a gap between bidirectional full-sequence synthesis and the causal, closed-loop nature of navigation.

To address these challenges, the "WorldVLN: Autoregressive World Action Model for Aerial Vision-Language Navigation" (2605.15964) introduces an autoregressive world action model (WAM) with tailored training objectives and system architecture, directly coupling latent world state prediction with executable waypoint generation. The resulting approach demonstrates marked advancements on both synthetic benchmarks and in zero-shot real-world UAV deployment.

Core Architecture

WorldVLN reframes aerial VLN as a prediction-driven world-action problem with a hierarchical, autoregressive control policy. The model comprises the following principal components:

  • Latent Autoregressive Video Backbone: Leveraging a spacetime autoregressive video Transformer, WorldVLN predicts short-horizon latent state transitions conditioned on both the history of egocentric visual observations and the navigation instruction.
  • Action Decoder: A specialized Transformer-based architecture that receives predicted world-state latents and decodes them into continuous low-level UAV waypoint actions.
  • Closed-Loop Autoregression: After each executed segment, new real observations are encoded and incorporated into the autoregressive context, tightly coupling perception and prediction with action. Figure 1

    Figure 1: WorldVLN architectureโ€”latent world transitions predicted from history and instruction, decoded to actions, and autoregressively updated with new observations.

The model eschews full-sequence bidirectional video generation in favor of causal, segment-by-segment prediction and plan refinement, yielding effective temporal memory and facilitating recovery from accumulated state estimation errors especially prevalent in UAV navigation. Figure 2

Figure 3: Latent-space spatiotemporal autoregressive world backbone modeling visual pyramid conditions to predict future clip pyramids as structured latents.

Figure 4

Figure 5: The action decoder translates world-model latents into UAV navigation actions via factorized temporal and spatial attention.

Two-Stage Training Framework

Stage 1: Supervised Grounding

Initially, the world-model backbone and action decoder are supervised using instruction-video and video-trajectory pairs, respectively. By directly optimizing for instructional consistency and trajectory accuracy in latent space, the model learns to generate latent world transitions that are directly action-decodable:

  • The video backbone is fine-tuned to autoregressively predict future visual latents conditioned on both instructions and ground-truth history.
  • The action decoder, initialized with video decoder and visual odometry priors, is trained to map latent transitions to expert actions.

Stage 2: Action-Aware GRPO

Standard imitation distillation proves brittle due to covariate shift and inability to optimize action consequences. WorldVLN introduces Action-Aware Group Relative Policy Optimization (GRPO):

  • Online Rollout: Multiple agent rollouts are executed in a simulator, following the autoregressive observeโ€“actโ€“update sequence.
  • Composite Reward Assignment: Segment-level rewards, with temporal decay, are computed based on trajectory coherence, task-level goal attainment, and reference policy agreement. The decay factors prioritize early-stage decisions, critical for long-horizon corrections.
  • Optimization: The policy is updated via a clipped, group-normalized policy gradient objective directly tied to action outcomes across sampled rollouts. Figure 3

    Figure 6: Two-stage training: supervised grounding followed by rollout-based Action-aware GRPO.

Empirical Evaluation

Quantitative Benchmarks

WorldVLN's performance is evaluated on UAV-Flow (outdoor) and IndoorUAV-VLA (indoor), benchmarks that measure fine-grained language-conditioned UAV control.

Key results:

  • On UAV-Flow-Sim, WorldVLN achieves 79.12%79.12\% (fixed instructions) and 78.02%78.02\% (open-vocab) success rateโ€”over $12$ percentage points above the strongest VLA baselines.
  • On IndoorUAV-VLA, WorldVLN attains 41.76%41.76\% success rate, outperforming the next-best method by $14.6$ points. Gains are even more pronounced on complex, multi-step settings.

These advances are consistent across both settings, with especially significant improvements on tasks demanding precise spatial composition and robust multi-step control.

Qualitative and Ablative Analyses

Figure 5

Figure 7: Qualitative case analysis highlighting superior spatial reasoning and action accuracy compared to VLA models in outdoor and indoor scenarios.

  • The ablation study indicates that WAMs not only converge faster but also generalize better when compared to direct VLA policy distillation.
  • Autoregressive closed-loop updating confers increased stability in latent representation and mitigates the semantic drift observed in full-sequence generators.
  • Action-aware GRPO yields a further $10$-point gain post-supervised training and produces trajectories that better adhere to intended spatial behaviors. Figure 6

    Figure 2: Ablation studiesโ€”effects of autoregression and Action-aware GRPO on sample efficiency, spatial fidelity, and behavior accuracy.

Zero-Shot Real-World UAV Transfer

WorldVLN policies, trained exclusively in simulation, demonstrate successful zero-shot transfer to a real UAV platform in both indoor and outdoor conditions. The system requires only egocentric RGB observations and delivers executable waypoint commands, with low-level stabilization managed by standard PX4 controllers. Figure 7

Figure 4: Real-world UAV deployment of WorldVLNโ€”sim-to-real transfer of language-guided navigation in challenging environments.

Figure 8

Figure 9: Real-world UAV platform and system architecture for closed-loop visual-language control.

These empirical results substantiate the modelโ€™s robustness and generalization capability, particularly critical for aerial robotics applications.

Practical and Theoretical Implications

The WorldVLN formulation demonstrates substantial progress in embodied AI and spatial reasoning:

  • From Reactive to Predictive Embodied Agents: By centering navigation on latent world prediction and consequence-aware decision-making, WAMs overcome the limitations of purely reactive language-to-action mappings.
  • Autoregressive Design for Geometric Consistency: Segment-wise, autoregressive updating curtails compounding state prediction errorโ€”a key challenge in aerial navigation domains with substantial egocentric displacement.
  • Policy Optimization for Embodied Rollouts: Action-aware GRPO exemplifies a substantial methodological advance by closing the gap between visual plausibility and goal-directed action utility within the world-modeling paradigm.

On a theoretical front, explicit latent modeling of world transitions, tightly coupled with instruction and perceptual context, aligns with cognitive neuroscience evidence for predictive representations in spatial navigation.

Future Directions

The principal limitations identified involve model scalability for long-horizon VLN, compression for onboard inference, and robustness under adverse real-world conditions. Key directions include:

  • Long-Horizon and Large-Scale Navigation: Extending the latent autoregressive capacity for complex, multi-stage instruction following.
  • Model Compression and Edge Deployment: Developing more efficient architectures suitable for fully onboard, real-time UAV operation.
  • Robustness and Safety: Augmenting training with domain randomization, uncertainty estimation, or auxiliary real-world datasets to enhance transfer and fail-safes.

Conclusion

WorldVLN introduces a principled advancement in aerial VLN by coupling an autoregressive world-model backbone with action-aware policy optimization, achieving strong gains over VLA methods in both simulation and zero-shot real-world deployment. The approach highlights the effectiveness of closed-loop, consequence-aware prediction in embodied AI and paves the way toward more capable, generalizable, and robust spatial intelligence systems. Further exploration of long-horizon, large-scale navigation and deployment under practical constraints will define subsequent progress in this domain.

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

No one has generated a whiteboard explanation for this paper yet.

Open Problems

We haven't generated a list of open problems mentioned in this paper yet.

Collections

Sign up for free to add this paper to one or more collections.