This post is an in-depth Chinese-language walkthrough of the paper *Hierarchical Denoising For Multi-Step Visual Reasoning* (arXiv: 2607.15278) by researchers from Peking University and UC Berkeley. Below is a structured English summary of the full article.
Background: the dilemma of AI video reasoning
The author frames the problem with a maze analogy: AI video models must solve complex visual reasoning tasks (mazes, Tower of Hanoi, Sokoban) but current architectures force a choice between two extremes:
- Streaming autoregressive diffusion — generates frames sequentially like fast, intuitive "thinking". It is low-latency but myopic: it achieves only 34.22% success on complex reasoning tasks.
- Bidirectional diffusion — sees the whole video for global planning, but requires dense per-frame denoising and is 54.2x slower at inference.
- Video latents are organized into a tree-structured hierarchy of denoising layers.
- Coarse denoising layers act like a CEO: they keep several parallel, uncertain hypotheses alive for global planning without committing early.
- Fine layers progressively refine those hypotheses into concrete video frames, like department managers and frontline staff executing a strategy.
- A Sparse Hierarchical Attention Pattern (SHAP) lets each layer attend only to the most relevant time steps (like selective attention in a crowded meeting), keeping computation bounded.
- Success rate: 34.22% → 60.29%, a 76.2% relative improvement over the streaming baseline; average progress rises from 76.00 to 89.56, meaning more coherent reasoning trajectories even on failures.
- Speed: 0.70 seconds per latent in streaming inference — 54.2x faster than bidirectional diffusion (~38s).
- Data efficiency: with only 2% of training data, HDR retains 82.9% of full-data performance (vs. 52.0% for bidirectional diffusion), suggesting the hierarchy learns problem structure rather than memorizing data.
- Real-world robotics: HDR was deployed on physical robots for manipulation tasks requiring interaction, obstacle avoidance, and path planning, demonstrating potential beyond synthetic puzzles.
- AI is moving from pure "pattern matching" toward structured reasoning: coarse layers resemble working memory's to-do list, fine layers decompose plans into steps, and SHAP provides selective attention.
- HDR points toward systems with an internal world model — AI that can rehearse actions mentally before executing them, and eventually reflect on and revise its own plans.
- Qian, Z., Chi, X., Mak, C. W., et al. (2026). *Hierarchical Denoising For Multi-Step Visual Reasoning*. arXiv:2607.15278.
- Project page: https://hierarchical-diffusion-reasoning.github.io/
- arXiv: 2607.15278
The core idea: thinking in layers
HDR (Hierarchical Denoising for Visual Reasoning) encodes human-like "coarse-to-fine" planning into the diffusion model itself:
Evaluation: a six-task benchmark
The team built a Level-Stratified Multi-Step Video Reasoning Benchmark covering:
1. Maze navigation 2. Tower of Hanoi 3. One-line drawing (Eulerian path) 4. Sliding puzzle 5. Sokoban (PSPACE-complete) 6. Water pouring