Skip to content
RobotWorld
Back to Papers

PAPER DEEP DIVE

Paper世界模型World Model

Towards Dual-Brain Minimal Sufficient Representation for Vision-Language Navigation

Vision-and-Language Navigation in continuous environments (VLN-CE) requires an agent to ground language in egocentric observations and plan in unseen scenes. Although recent multimodal large models and world-model-based methods have improved navigation, they often preserve excessive task-irrelevant detail, weakening generalization and increasing computational burden. We propose BrainNav, a navigation framework grounded in the Principle of Minimal Sufficiency. BrainNav consists of three components: a Logical Anchor Model that implements instruction-aware selective perception to suppress environmental noise, a Minimalist Constraint Alignment module that serves as a compact cross-modal bottleneck, efficiently synchronizing discrete linguistic intent with continuous latent dynamics while filtering out redundant information, and a Compression World Model that predicts action-conditioned states within a condensed, low-rank latent space. These modules align semantic intent with spatial perception, enhancing the agent's robustness and efficiency in complex tasks. Experiments show that BrainNav improves over prior SOTA by 2.0 % / 1.0 in SR/SPL on R2R-CE val-unseen and 0.94 % / 0.78 on RxR-CE val-unseen. These results indicate that minimally sufficient world representations provide an effective foundation for robust VLN.

Yihao Wu, Chenyi Xu, Liqi Yan, Chenhuan Cai, Geyong Min, Bin Lin, Fangli Guan, Jianhui Zhang, Pan LiJuly 25, 20266 min read
中文
Yihao Wu, Chenyi Xu, Liqi Yan, Chenhuan Cai, Geyong Min, Bin Lin, Fangli Guan, Jianhui Zhang, Pan Li
University of Bradford · Beijing Jiaotong University
arXiv:2607.23181

TL;DR

CompactNav is a VLN-CE framework grounded in the Principle of Minimal Sufficiency, with three modules: Logical Anchor Model (instruction-aware selective perception via Focus-Former), Minimalist Constraint Alignment (CP decomposition low-rank bottleneck), and Compression World Model (action-conditioned state prediction in low-rank latent space). It improves SOTA by 2.0%/1.0 SR/SPL on R2R-CE and 0.94%/0.78 on RxR-CE.

Figure 1. Comparison with representative VLN paradigms

Figure 1 — Comparison with representative VLN paradigms. (a) VLM-based policies directly map observations and instructions to actions without future modeling. (b) World-model frameworks include future-state prediction but suffer perceptual redundancy. (c) CompactNav introduces minimal sufficient world representation.

1. Background & Motivation

Vision-and-Language Navigation in Continuous Environments (VLN-CE) requires agents to follow natural language instructions in unseen 3D environments using egocentric RGB-D observations. Despite progress with multimodal large models and world models, existing methods face three fundamental challenges:

  • Semantic Granularity Mismatch: the entropy gap between sparse symbolic instructions and dense perceptual observations causes task-relevant cues to be overwhelmed by visual redundancy — instruction dilution.
  • High-entropy redundancy-induced overfitting: fidelity-oriented world models preserve excessive task-irrelevant details (textures, illumination), reducing generalization.
  • Inefficient intention-perception coordination: lack of efficient mechanisms to synchronize discrete linguistic intent with continuous perceptual dynamics, causing high computational overhead.

2. Core Method

Figure 2. CompactNav architecture overview

Figure 2 — CompactNav architecture overview. Language instruction and RGB-D observations go through the Logical Anchor Model to produce instruction-grounded embedding $\mathcal{Z}$, compressed via Minimalist Constraint Alignment, then the Compression World Model performs action-conditioned transition and decodes navigation actions.

2.1 Logical Anchor Model (Focus-Former)

The core challenge is semantic granularity mismatch: instruction $I$ has moderate global entropy, while observation $O$ forms a high-entropy perceptual space. Traditional Q-Former concatenates features $[F^{(\mathcal{I})}, F^{(\mathcal{O})}]$ for global attention, forcing instruction signals to compete with massive observation noise:

$$\sum \text{Attention}(Q_A, F^{(\mathcal{I})}) + \sum \text{Attention}(Q_A, F^{(\mathcal{O})}) = 1$$

Focus-Former reformulates this as a conditional filtering mechanism $P(F^{(\mathcal{I})} \mid Q_B) \cdot P(F^{(\mathcal{O})} \mid F^{(\mathcal{I})}, Q_B)$, using the low-entropy instruction as prior to deconstruct the perceptual bottleneck, in two stages:

  • Logic Anchoring: Text Q-Former conditions queries $Q_B$ on instruction features $F^{(\mathcal{I})}$, producing logic-aligned queries $Q_B' = \text{Attn}(Q_B, F^{(\mathcal{I})}, F^{(\mathcal{I})})$.
  • Perceptual Selection: Anchored queries $Q_B'$ interact with observation features $F^{(\mathcal{O})}$ — attention becomes targeted selection rather than cross-modal competition.

Distilled representations are fed into MLLM (Qwen2.5-VL-7B): $\mathcal{Z} = \text{MLLM}([\mathbf{H}_B, \mathcal{F}^{(\mathcal{I})}])$.

2.2 Minimalist Constraint Alignment (MCA)

MCA establishes a differentiable low-rank alignment channel via CP Decomposition, approximating the high-order world tensor $\mathcal{Z} \in \mathbb{R}^{N \times M \times D}$ as a sum of $\mathbf{R}$ rank-one tensors from three basis vectors $\mathbf{u}_r, \mathbf{v}_r, \mathbf{w}_r$:

$$\hat{\mathcal{Z}} = \sum_{r=1}^{\mathbf{R}} \mathbf{u}_r \circ \mathbf{v}_r \circ \mathbf{w}_r$$

Reducing representational complexity from $O(NMD)$ to $O(\mathbf{R}(N+M+D))$, creating an explicit information bottleneck.

2.3 Compression World Model (CWM)

CWM performs action-conditioned state transition in a compressed low-rank latent space, maintaining compact predictive belief over future dynamics and decoding the next navigation action. Unlike traditional world models operating on high-dimensional pixel-level reconstructions, CWM works in CP-decomposed factorized latent space.

flowchart LR
    I["Language instruction I"] --> LAM["Logical Anchor Model\n(Focus-Former)"]
    O["RGB-D observation O"] --> LAM
    LAM -->|"Instruction-grounded Z"| MCA["Minimalist Constraint Alignment\n(CP decomposition low-rank)"]
    MCA -->|"Compressed Ẑ"| CWM["Compression World Model\n(action-conditioned transition)"]
    CWM -->|"Navigation action"| A["Action sequence A"]
    CWM -->|"Predictive belief"| CWM
    style LAM fill:#dbeafe,stroke:#2563eb
    style MCA fill:#fef9c3,stroke:#ca8a04
    style CWM fill:#dcfce7,stroke:#16a34a

Figure M1 — CompactNav three-module data flow. Instruction and observation aligned by Logical Anchor Model, compressed via CP decomposition bottleneck, then Compression World Model predicts transitions and decodes navigation actions.

3. Experimental Results

Evaluated on R2R-CE and RxR-CE benchmarks, both instantiated in Habitat on Matterport3D scenes.

3.1 R2R-CE Performance

Table 1. R2R-CE dataset results

Table 1 — R2R-CE dataset results. CompactNav outperforms all methods across splits.

MethodTL↓NE↓OSR↑SR↑SPL↑
ETPNav-FSTTA11.585.27584842
ETPNav-NavMorph11.554.62665950
CompactNav11.484.55686051

CompactNav reaches 66% SR and 54 SPL on Val-Unseen (full), 63% SR and 55 SPL on Test Unseen. NE reduced to 4.36m, TL only 12.56m — avoiding perceptual redundancy of reconstruction-based methods.

3.2 RxR-CE Performance

Table 2. RxR-CE dataset results

Table 2 — RxR-CE dataset results. CompactNav achieves SOTA on the more complex long-instruction benchmark.

On the more complex RxR-CE with longer trajectories and instructions, CompactNav achieves SOTA SR 58.96%, SPL 49.76, NDTW 65.67. CWM's recursive memory maintains compact history in low-dimensional manifold, enabling internal path simulation without perceptual detail interference.

3.3 Inference Efficiency

Despite integrating MLLM and world model, CompactNav maintains 236s inference time, comparable to ETPNav-NavMorph (227s). CWM works in factorized latent space, reserving most computational budget for MLLM semantic reasoning.

3.4 Ablation Study

LAMMCACWMSR↑SPL↑Time(s)
6654236
6552
6553
6452

The full model achieves the best accuracy-efficiency trade-off; removing any module degrades performance, confirming module complementarity.

4. Contributions & Significance

  • A navigation framework based on the Principle of Minimal Sufficiency, balancing representational fidelity with computational efficiency.
  • Focus-Former: reformulates multimodal interaction as instruction-conditioned filtering, resolving semantic granularity mismatch.
  • MCA: builds a low-rank information bottleneck via CP decomposition, reducing complexity from $O(NMD)$ to $O(\mathbf{R}(N+M+D))$.
  • CWM: performs action-conditioned transition in factorized latent space, enabling MLLM inference and world model coexistence without sacrificing efficiency.

5.

注意力A的计算

$$ \mathbf{H}_{A}=\text{Softmax}\left(\frac{(Q_{A}W_{Q})([F^{(\mathcal{I})},F^{(\mathcal{O})}]W_{K})^{\top}}{\sqrt{d}}\right)([F^{(\mathcal{I})},F^{(\mathcal{O})}]W_{V}) $$

注意力B的计算

$$ \mathbf{H}_{B}=\text{Softmax}\left(\frac{(\text{Attn}(Q_{B},F^{(\mathcal{I})},F^{(\mathcal{I})})W_{Q})(F^{(\mathcal{O})}W_{K})^{\top}}{\sqrt{d}}\right)(F^{(\mathcal{O})}W_{V}) $$

张量分解重建

$$ \hat{\mathcal{Z}}=\sum_{r=1}^{R}\mathbf{u}_{r}\otimes\mathbf{v}_{r}\otimes\mathbf{w}_{r} $$

Limitations

  • Relies on MLLM (Qwen2.5-VL-7B) prior knowledge, making the model relatively large.
  • CP decomposition rank $\mathbf{R}$ requires hyperparameter tuning; optimal values may differ across tasks.
  • In visually monotonous or highly unfamiliar environments, compressed representations may lose critical details.

6. Conclusion

CompactNav, grounded in the Principle of Minimal Sufficiency, synergizes the Logical Anchor Model (Focus-Former instruction-aware filtering), Minimalist Constraint Alignment (CP decomposition low-rank bottleneck), and Compression World Model (low-rank latent transition) to improve SOTA by 2.0%/1.0 and 0.94%/0.78 SR/SPL on R2R-CE and RxR-CE respectively, while maintaining inference efficiency comparable to baselines. Focus-Former uses the low-entropy instruction as prior to deconstruct the perceptual bottleneck; MCA reduces representational complexity to $O(\mathbf{R}(N+M+D))$; CWM efficiently performs transitions in factorized latent space. Navigation doesn't need to remember everything, only the minimally sufficient everything — minimal sufficient world representations provide an effective foundation for robust VLN.

Navigation doesn't need to remember everything, only the minimally sufficient everything — minimal sufficient world representations provide an effective foundation for robust VLN.

— Core thesis

Related Papers

Pre-training Visual Dexterity in Simulation

Pre-training Visual Dexterity in Simulation

Large-scale pre-training has made robot policy fine-tuning increasingly data-efficient, but this progress has largely been driven by datasets and embodiments built around simple parallel-jaw grippers. Dexterous, multi-fingered hands remain comparatively data-starved because real teleoperation is costly to scale, while human hand video is off-embodiment and requires lossy pose estimation and retargeting. We introduce Simulation Pre-training for Dexterity (SPD), a pre-training framework for dexterous manipulation that uses data entirely collected in simulation. In SPD, humans manipulate virtual objects inside a VR headset, enabling on-embodiment trajectories and robot-free collection. With the help of five operators, we collect 75 hours of multi-task dexterous manipulation over one week, and use it to pre-train a causal transformer on a sequence modeling objective. We study the benefits of simulation pre-training on real-world tasks by fine-tuning on 1-2 hours of physical demonstrations on a 56-DoF bimanual dexterous setup. We find that our approach outperforms training behavior cloning policies from scratch, showing that simulation teleoperation is a viable pre-training source for real-world dexterous manipulation. We perform ablation studies, measuring the benefits of history conditioning and short action chunks for reactive control.

灵巧操作灵巧手预训练Aug 16, 2026
FA-RDP: A Frequency-Adaptive Reactive Diffusion Policy for Contact-Rich Manipulation

FA-RDP: A Frequency-Adaptive Reactive Diffusion Policy for Contact-Rich Manipulation

In contact-rich manipulation, action multimodality and reactivity dominate different stages of a single episode. Before contact, multiple trajectories might be equally valid, making it important to preserve diverse action modes. After contact, geometric constraints and force limits narrow the solution space, while successful execution demands rapid responses to force feedback. However, standard diffusion policies use a fixed inference frequency and sampling steps throughout the episode, forcing a fundamental compromise: low-frequency, multi-step sampling better preserves pre-contact multimodality but responds slowly to force feedback, whereas high-frequency sampling improves reactivity but tends to collapse distinct pre-contact modes. To resolve this tradeoff, we present FA-RDP, a frequency-adaptive reactive diffusion policy. A shared multi-frequency visual-force Transformer predicts action chunks at both low and high frequencies, while a learned multimodality indicator dynamically selects multi-step low-frequency sampling before contact and one-step high-frequency sampling as action ambiguity decreases. We further introduce Manifold Consistency Distillation (MCD), which reparameterizes the diffusion network to predict actions on the robot action manifold while retaining DDPM-based residual supervision. Experiments on three contact-rich manipulation tasks show that FA-RDP achieves the highest success rate while preserving diverse pre-contact trajectory modes. Code and videos are available at https://fa-rdp.github.io.

PaperJul 30, 2026
PhiZero: A World Model Built Around Physical Language

PhiZero: A World Model Built Around Physical Language

We introduce PhiZero, a physical world model built around physical language, a compact discrete representation of world-state transitions. Existing physical world models typically predict future videos directly in pixel space, leaving the underlying world dynamics implicit within high-dimensional visual predictors. Motivated by humans' ability to abstract predictive structure from visual experience and organize it in natural language for explicit reasoning, we learn physical language from in-the-wild videos through self-supervision and use it to explicitly reason about how the physical world evolves. Accordingly, PhiZero adopts a reason-then-render paradigm: it first infers future world evolution as a physical-language sequence and then renders the inferred transitions into videos. Extensive experiments across generation and understanding benchmarks validate the ability of PhiZero to model physically coherent world evolution. We further show its potential for realistic and interactive world modeling, fine-grained action-conditioned simulation, and zero-shot motion transfer.

PaperJul 30, 2026
Booster Lab: A Data-Centric Pipeline for Learning Deployable Humanoid Locomotion Policies

Booster Lab: A Data-Centric Pipeline for Learning Deployable Humanoid Locomotion Policies

Humanoid robot motion learning requires not only task-oriented control policies but also physically feasible and natural behaviors that can be transferred to real robots. However, robot-feasible motion data are often scarce: raw human demonstrations may be incompatible with the robot morphology, open-source clips vary in quality, and simulation-collected robot trajectories still require feasibility checking. To address these challenges, we propose a data-centric training and deployment pipeline that integrates motion data curation, real-to-sim model adaptation, AMP-based reinforcement learning, and sim-to-real deployment. We validate the framework on the Booster T1 robot and further provide preliminary cross-platform validation on Booster K1.

步态优化人形机器人AMPJun 26, 2026