This forum post is an in-depth Chinese-language discussion of the paper "DreamFly: Causal Memory and Receding-Horizon Diffusion Planning for Aerial Vision-Language Navigation" (Deng & Xu, 2026, arXiv:2608.12308). Below is a structured English digest preserving the post's key technical claims.
Key points
- Problem: Aerial Vision-Language Navigation (VLN) asks a drone to follow instructions like "find the red-roofed church" using only onboard cameras. It is harder than ground navigation due to top-down foreshortened views, dynamic conditions (wind, battery, propeller noise), partial observability, and linguistic ambiguity.
- Limitations of prior VLA models (RT-2, OpenVLA, Dream-VLA): short historical memory, short planning horizons, and no reliable notion of when to stop, causing models to circle targets or halt early.
- Reported gains: ~28% relative improvement in seen-environment success rate, ~34% in unseen environments, plus the lowest navigation error — evidence of stronger generalization.
- Causal constraints are a foundation for trustworthy AI in any temporal decision system.
- Rolling-horizon planning is a general strategy for partially observable, dynamic environments (robot manipulation, autonomous driving).
- Explicit termination — knowing when to stop, decoupled from the main task — is a key capability for autonomous systems.
- Deng, Y., & Xu, F. (2026). *DreamFly: Causal Memory and Receding-Horizon Diffusion Planning for Aerial Vision-Language Navigation*. arXiv:2608.12308.
- Driess et al. (2023). *PaLM-E*; Brohan et al. (2023). *RT-2*; Kim et al. (2025). *OpenVLA*; Song et al. (2025). *Dream-VLA*; Ho et al. (2020). *DDPM*; Anderson et al. (2018). *R2R VLN*; Chen et al. (2024). *OpenFly*.
DreamFly's three modules
1. Causally aligned historical memory — At every decision time *t*, the model may only use observations strictly earlier than *t*. A masking mechanism (analogous to autoregressive attention, applied along time) plus learned dynamic weighting prevents "future information leakage" during training, so success rates transfer from training to unseen environments rather than relying on lookahead contamination. 2. Receding-horizon diffusion planning (Plan-K, Execute-One) — Inspired by how diffusion models (Stable Diffusion, DDPM) denoise from random noise toward coherent outputs, the planner treats navigation as finding a path from current state to goal state under multimodal uncertainty. It generates a K-step action sequence via diffusion sampling, executes only the first action, then re-plans with new observations in a closed loop. 3. LiteStop: decoupled explicit termination — Instead of deriving a stop decision as a byproduct of action generation, LiteStop estimates stopping probability directly from action logits starting from the fully-masked (no-decision) state. This separates "where to fly" from "whether to stop," reducing circling and premature stops.
Results on the OpenFly benchmark
| Method | Test-Seen SR | Test-Unseen SR | Test-Seen SPL | Test-Unseen SPL | |--------|-------------|----------------|---------------|-----------------| | Previous best (per post) | ~25% | ~22% | ~20% | ~17% | | DreamFly | 32.04% | 29.46% | 28.22% | 23.54% |