Papers
Topics
Authors
Recent
Search
2000 character limit reached

RoboAtlas: Contextual Active SLAM

Published 24 Jun 2026 in cs.RO and cs.CV | (2606.26046v1)

Abstract: We present RoboAtlas, a contextual Active SLAM framework that adaptively balances geometric exploration and semantic reasoning using a scalable 3D semantic mapping system, OpenRoboVox. RoboAtlas integrates frontier exploration, global semantic-map reasoning, and egocentric VLM-based reasoning through a contextual multi-armed bandit that transitions from exploration to semantically guided navigation as scene understanding improves. We evaluate the system in simulation and on a Unitree Go2 robot in large-scale real-world environments exceeding 1800 m2 with approx. 30k mapped semantic instances, achieving a 100% task success rate. On the GOAT-Bench "Val Unseen" benchmark, RoboAtlas achieves state-of-the-art performance with highest reported success rate (SR) of 90.6%, using GPT-4o, improving over the strongest prior baseline by 17.8 percentage points in SR. Using the much smaller Qwen2.5-VL-7B model, it still achieves 88.8% SR, outperforming all baselines using GPT-4o in SR, and revealing the importance of the information gained by our semantic mapping framework over simply replacing the underlying foundation model. The results demonstrate that grounding foundation models with large-scale 3D semantic maps enables robust and efficient contextual Active SLAM.

Summary

  • The paper introduces a Contextual Multi-Armed Bandit policy that adaptively fuses geometric and semantic reasoning for effective active SLAM.
  • It presents OpenRoboVox, a real-time 3D semantic mapping pipeline that efficiently handles large-scale environments under resource constraints.
  • Experimental results show a 90.6% success rate and improved task efficiency over fixed-expert baselines in both simulation and hardware tests.

Contextual Active SLAM via Adaptive Mixture-of-Experts: A Technical Review of RoboAtlas

Introduction and Problem Formulation

"RoboAtlas: Contextual Active SLAM" (2606.26046) introduces an integrated framework for simultaneous localization and mapping (SLAM) that adaptively fuses geometric and semantic reasoning, driven by contextual requirements in real-world navigation tasks. The central innovation of RoboAtlas is a Contextual Multi-Armed Bandit (CMAB) policy that coordinates between geometric frontier exploration, global semantic-map reasoning, and egocentric vision-LLM (VLM)-based expert systems. This approach enables dynamic adjustment between exploration and exploitation based on the robot’s partial knowledge and the specifics of its high-level directive.

Active SLAM’s classical objective—maximizing map completeness and pose accuracy—is extended by operationalizing high-level language-conditioned goals, where both geometric information and open-vocabulary semantics (object properties, spatial relations) are needed for efficient task resolution. RoboAtlas addresses the limitation of conventional geometric-only approaches by introducing OpenRoboVox, a real-time, memory- and compute-efficient 3D semantic mapping pipeline suitable for resource-constrained on-robot deployment. This is coupled with a policy-learning paradigm that reasons not only over map coverage but also semantic consistency and local visual context.

System Architecture

OpenRoboVox: Semantic Mapping at Scale

OpenRoboVox enables large-scale, real-time voxel-based 3D semantic mapping via TSDF integration with dynamic instance pruning and memory-safe, asynchronous map expansion. A core abstraction is the "Scene-Dictionary," asynchronously populated via prioritized scheduling based on recency, active observation, and rotationally sampled instances. This structure condenses the vast raw voxel data into a compact, queryable, and incrementally updated semantic graph over objects and their spatial semantics, facilitating high-level semantic retrieval and efficient downstream reasoning.

A memory partitioning protocol effectively bounds GPU VRAM use even during large map expansion events, and asynchronous architecture decouples geometric tracking from perception stack latency, maintaining real-time mapping and avoiding consistency drift. The 2D pillar map abstraction projects 3D semantics into a computationally tractable planar workspace while preserving instance granularity, supporting fast computation of dense similarity potential fields (target, neighbor, and constraint), which underpin context-aware goal generation.

Mixture-of-Experts Framework with CMAB

RoboAtlas’s action selection is achieved by a mixture-of-experts, where each expert module—the geometric frontier explorer, the semantic map expert, and the egocentric VLM expert—proposes navigation goals based on distinct observation modalities:

  • Frontier Expert: Maximizes geometric information gain, constrained by energy and safety feasibility;
  • Semantic Map Expert: Leverages LLM (e.g., GPT-4o/Qwen2.5-VL-7B) to reason over the global semantic state, resolve referential queries, and predict semantically plausible targets using instance-based filtering on the Scene-Dictionary;
  • Egocentric VLM Expert: Interprets the local, first-person observation via a foundation VLM, supporting language-conditioned goal prediction and generating context-augmenting textual descriptions.

A contextual multi-armed bandit (CMAB) policy, implemented with LinUCB, is employed to adaptively blend these expert proposals. The context vector aggregates real-time metrics including coverage rate, semantic similarity distributions, VLM confidence, task completion, and penalties (e.g., for backtracking), with arm selection balancing exploration and exploitation optimally as environmental context evolves.

Implementation and Experimental Results

Simulation and Physical Validation

RoboAtlas is validated in three primary settings: Isaac Sim (physics-based), Habitat (photo-realistic), and real-world hardware (Unitree Go2). On-robot deployment demonstrates the scalability of OpenRoboVox for continuous, long-range deployments, generating semantic maps over multi-floor, multi-thousand square meter environments in real time, with tens of thousands of semantic instances registered per run.

Ablation studies, fixed-expert baselines, and adaptive CMAB policy comparisons establish that fixed selection (pure geometric, pure semantic, or pure VLM) is consistently outperformed by adaptive mixture-of-experts selection. In both simulation and hardware, CMAB achieves a 100% task success rate, reducing path length and completion time by exploiting geometric exploration early and transitioning to semantic exploitation as the Scene-Dictionary matures.

Benchmarking on GOAT-Bench and Comparative Signal

On the 278-subtask GOAT-Bench "Val Unseen" split, RoboAtlas achieves 90.6% success rate (SR) and 53.4% success-weighted path length (SPL) with GPT-4o, outperforming the previous state of the art (HIMM, 72.8% SR). Remarkably, with only the Qwen2.5-VL-7B backbone, RoboAtlas attains 88.8% SR, also surpassing all GPT-4o baselines except for SPL relative to HIMM.

Importantly, these gains stem not from scaling foundation models but from the synergy between semantic mapping, modular expert selection, and adaptive context integration. Modal performance is consistent across object, textual, and image-based directives, establishing robustness across task types. The SPL lag relative to HIMM is attributable to RoboAtlas’s deliberate balancing of exploration in the reward function, trading slight path inefficiency for greater semantic generalization and robustness, especially during early subtask phases.

Quantitative analysis of expert pick distributions over thousands of decisions further highlights the CMAB’s adaptive allocation: semantic map experts govern long-range exploitation, frontiers drive early exploration, and VLMs provide trajectory refinement and correction.

Implications and Future Directions

Theoretical Implications

RoboAtlas establishes that robust and scalable contextual Active SLAM requires explicit mechanisms for adaptive geometric–semantic policy fusion. The demonstration that advanced performance can be attained with smaller LLMs, when grounded with high-fidelity semantic world models, underscores the importance of representation-centric systems design over brute-force model scale. This observation suggests a path beyond simple model scaling: integrating architectural priors, efficient context management, and adaptive system identification in embodied AI.

From a control-theoretic perspective, the online, context-dependent policy switching induced by CMAB aligns with optimal switching control in partially observable domains, promising further developments in stochastic control for embodied AI.

Practical Implications

RoboAtlas substantially advances the state-of-the-art in real-world, hardware-amenable contextual navigation, supporting deployment in resource-constrained (non-data-center) settings. Applications include autonomous inventory, facility exploration, persistent surveillance, and any task requiring object-goal reasoning in unstructured, open-vocabulary environments. The hardware-constrained design and proven robustness to noisy odometry, latency, and real-time demands make RoboAtlas compelling for actual robotic field deployment.

Limitations and Prospects

The authors identify several limitations. Scene-dictionary errors (missed or noisy detections, instance association failures) and model inference latency (especially for remote or large models) remain challenging. While asynchronous system integration mitigates some practical constraints, applications with strict real-time requirements may need lighter-weight or entirely onboard models. Reward function hyperparameters in the CMAB could benefit from meta-learned or task-adaptive formulations to maximize generalization robustness. The observed SPL penalty, while deliberate, may prompt future hybrid strategies dynamically adjusting exploration pressure based on episode/task history.

Promising avenues for further research include integration of modular neuro-symbolic planning, onboard foundation models with dynamic context windows, model-based reward adaptation, and direct comparison versus alternative contextual decision paradigms (e.g., full end-to-end agentic policy learning).

Conclusion

RoboAtlas provides a comprehensive, empirically validated solution for contextual Active SLAM that unifies geometric and semantic navigation by way of scalable, real-time 3D semantic mapping and adaptive mixture-of-experts policy selection. By enabling online, context-sensitive fusion between geometric frontier exploration, semantic map exploitation, and local visual grounding, RoboAtlas consistently achieves state-of-the-art task completion rates in both simulation and hardware. The findings demonstrate that robust semantic navigation in unstructured environments is best achieved through architectural and systems integration—rather than simply scaling foundation models—thus charting a compelling trajectory for embodied AI and lifelong learning in large-scale, open-world settings.

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.

Tweets

Sign up for free to view the 1 tweet with 3 likes about this paper.