Slow-Fast Navigation Model Improves Urban POI Arrival

Explicit reasoning and pixel-goal anchors decouple cognition from control, raising POI arrival to 77.3% with a reported 35.0% gain.

Editorial Desk·July 28, 2026·4 min readstrong

Underlying Paper

ABot-N1: Toward a General Visual Language Navigation Foundation Model

Visual Language Navigation foundation models aim to unify deep reasoning for grounded spatial decisions with broad versatility for diverse embodied tasks. Current approaches typically achieve this integration via monolithic policies that map observations directly to actions, yet they often suffer from coordinate drift and poor handling of long-tail semantics. Furthermore, these black-box mappings lack interpretability, hindering the simultaneous achievement of generality, robustness, and transparency. We present ABot-N1, a step toward a general Visual Language Navigation foundation model, that addresses these challenges by decoupling cognition from control via a slow-fast architecture guided by dual visual-language signals. More specifically, a slow vision-language reasoner performs explicit Chain-of-Thought reasoning while producing a pixel goal. This compact set of image-space anchor points serves as a universal interface for diverse tasks, including point-goal, object-goal, poi-goal, instruction-following, and person-following. Subsequently, a fast action expert leverages both the textual cues and the pixel guidance to generate continuous waypoints at the native control frequency. By bridging high-level intents and low-level control through pixel-grounded anchors paired with explicit linguistic traces, our approach ensures robust, generalizable, and interpretable navigation across simulation and real-world benchmarks. ABot-N1 establishes new state-of-the-art records, delivering massive gains specifically in urban-scale navigation: boosting POI arrival by 35.0% (to 77.3%) and achieving 95.4%/92.9% SR in complex indoor and outdoor scenes. It also maintains superior robustness across object-reaching, person-following, and instruction-following tasks. New Point-Goal/POI-Goal benchmarks are released as open source to advance the field of urban-scale navigation.

arXiv:2607.10383Submitted: Jul 20, 2026v3

Visual-language navigation systems have to connect two different problems: semantic reasoning over goals and reactive control under changing observations. Many recent policies compress that path into a single observation-to-action model, which can work on benchmark tasks but leaves two recurring failure modes: accumulated coordinate drift and weak handling of rare or semantically specific targets. ABot-N1 addresses that split directly. The paper proposes a navigation foundation model in which a slow vision-language reasoner decides where the agent should go, while a faster action expert turns that guidance into continuous waypoints.

Core Contribution

The central contribution is the interface between cognition and control. Instead of asking one policy to infer intent, localize a target, and output motion in one step, ABot-N1 emits two forms of guidance: explicit chain-of-thought text and image-space anchors. The slow system produces a target pixel and an affordance pixel; the fast system consumes those anchors, the language trace, and the current visual observation to drive the agent.

That choice is more than an interpretability feature. Pixel goals give the controller a compact spatial target that is shared across point-goal, object-goal, POI-goal, instruction-following, and person-following tasks. The paper argues that this reduces the burden on the low-level policy: it no longer has to recover the entire semantic plan from raw observations at every control step.

Figure 1 summarizes the overall design and evaluation scope: ABot-N1 is trained on 30M samples across five tasks, then tested on two new ABotN benchmarks and three existing navigation benchmarks.

Figure 1. Figure 1 Overview of ABot-N1. The model trained on 30M samples across five tasks adopts a slow–fast control architecture: a slow system performs CoT reasoning and emits pixel goals, while a fast action expert consumes this dual language-and-vision guidance to execute safe waypoints. Closed-loop evaluation is conducted on our newly proposed ABotN-PointBench and ABotN-POIBench, together with three established benchmarks (VLN-CE R2R/RxR, Short-Horizon OVON, and EVT-Bench). ABot-N1 achieves leading performance across all 5 benchmarks.

Technical Approach

ABot-N1 uses a slow-fast dual-system architecture. The slow system is a vision-language reasoner that operates at low frequency over historical frames and the task prompt. It produces an explicit reasoning trace and two visual anchors, which become the communication channel to the controller. The fast system runs at the native control frequency. It uses a lightweight vision-language model, integrates the slow system's textual and pixel-level guidance with live observations, and predicts continuous waypoints.

The action expert is not just a small classifier attached to the reasoner. The architecture shown in Figure 2 includes a learnable action query, a QFormer module that attends to hidden states, and an MLP that decodes those queries into waypoints. This separates deliberation from execution: slow reasoning can be expressive without blocking high-frequency control.

Figure 2. Figure 2 The Slow-Fast Dual-System Architecture of ABot-N1. Navigation is decoupled into asynchronous cognition and high-frequency control. Slow System (left): A vision-language reasoner processes historical frames and task prompts at low frequency, producing explicit CoT reasoning and visual anchors (Target Pixel and Affordance Pixel). Dual Vision-Language Interface (middle): The language and visual outputs form a unified bridge between the two systems. Fast System (right): A lightweight-VLM-based action expert integrates the dual guidance with real-time observations; a learnable action query attends to the output hidden states via a QFormer module, and an MLP decodes the queries to predict continuous waypoints. The system is trained with pretraining and GRPO, enabling complex reasoning without blocking the reactive control loop.

The data pipeline is also part of the method. The paper describes a simulation-based data engine covering indoor and outdoor scenes, with trajectories generated from expert and DAgger rollouts. The resulting corpus spans five pretraining tasks, followed by post-training data stratified into safe, critical, danger, and discarded categories. The authors report both pretraining and GRPO post-training, which matters because the claimed safety and benchmark gains depend on more than the architectural split.

Results and Analysis

The strongest reported numbers are in urban-scale navigation. The paper reports POI arrival rising to 77.3%, described as a 35.0% gain, and success rates of 95.4% and 92.9% in complex indoor and outdoor scenes. It also reports leading performance across five benchmarks: ABotN-PointBench, ABotN-POIBench, VLN-CE R2R/RxR, Short-Horizon OVON, and EVT-Bench.

The interpretation is that ABot-N1 is most convincing where the task needs both semantic grounding and local control. POI navigation is a good stress test for that claim because it requires recognizing a long-tail place target, keeping spatial intent stable, and reacting to visual context. A pixel-anchor interface is a plausible mechanism for the reported gains: it gives the action expert a spatially grounded target rather than relying only on a latent instruction embedding.

The evidence is broad rather than minimal. The model is evaluated across five benchmarks and multiple task types, and the training scale is substantial at 30M samples. The paper also introduces ABotN-PointBench and ABotN-POIBench, which directly target point-goal and POI-goal navigation rather than relying only on legacy instruction-following benchmarks.

The caveat is that the visible results still leave practical questions. The method depends on the slow system producing useful pixels; if those anchors are wrong, the fast controller inherits the error. The training recipe is large and multi-stage, so the compute and data requirements may limit reproduction. The reported benchmark coverage is strong for navigation evaluation, but the paper material provided here does not establish how the system behaves under severe perception noise, changing real-world maps, or tight latency budgets.

Evidence Box

strong

Key Claims

  • Slow-fast decomposition improves general visual-language navigation
  • Pixel-goal anchors reduce drift between high-level intent and low-level control
  • Dual language-and-vision guidance supports point-goal, object-goal, POI-goal, instruction-following, and person-following
  • ABotN-PointBench and ABotN-POIBench evaluate urban-scale navigation

Key Results

  • POI arrival reaches 77.3% with a reported 35.0% gain
  • Success rates reach 95.4% and 92.9% in complex indoor and outdoor scenes
  • Training uses 30M samples across five navigation tasks
  • Evaluation covers 5 benchmarks: ABotN-PointBench, ABotN-POIBench, VLN-CE R2R/RxR, Short-Horizon OVON, and EVT-Bench

Limitations & Caveats

  • Performance depends on accurate slow-system pixel anchors
  • Training requires a 30M-sample multi-task navigation corpus
  • Multi-stage recipe combines pretraining, DAgger rollouts, and GRPO post-training
  • Visible material does not quantify latency, compute cost, or failure rates under severe perception noise

Related Articles

Readers are encouraged to consult the original arXiv paper for complete details. SOTA Papers does not make claims beyond what is supported by the authors' reported evidence.