Papers
Topics
Authors
Recent
Search
2000 character limit reached

AtlasVA: Self-Evolving Visual Skill Memory for Teacher-Free VLM Agents

Published 18 May 2026 in cs.CV | (2605.17933v1)

Abstract: Vision-LLM (VLM) agents increasingly rely on memory-augmented reinforcement learning to reuse experience across long-horizon tasks, yet most existing frameworks store memory as text and depend on proprietary teacher models to summarize or refine it. This design is poorly matched to spatial decision making: geometric priors are compressed into lossy language, and sparse interaction is often supervised through delayed textual feedback rather than dense visually grounded signals. We argue that reusable experience for VLM agents should remain visually grounded. Based on this insight, we propose \textbf{AtlasVA}, a teacher-free visual skill memory framework that organizes memory into three complementary layers: spatial heatmaps, visual exemplars, and symbolic text skills. AtlasVA further evolves danger and affinity atlases directly from trajectory statistics and lightweight grid heuristics, and reuses these self-evolving atlases as potential-based shaping rewards for reinforcement learning. This unifies perception, memory, and optimization without external LLM supervision. Experiments on \textsc{Sokoban}, \textsc{FrozenLake}, 3D embodied navigation, and 3D robotic manipulation benchmarks show that AtlasVA consistently outperforms text-centric memory baselines and competitive VLM agents, with especially strong gains on spatially intensive tasks. Homepage: https://wangpan-ustc.github.io/AtlasvaWeb

Summary

  • The paper introduces a teacher-free visual skill memory framework that evolves spatial heatmaps, visual exemplars, and symbolic text skills from interaction data.
  • The methodology employs dense reward shaping via affinity gains and danger penalties, accelerating convergence and outperforming larger VLM models.
  • Empirical results demonstrate high spatial generalization and learning efficiency across benchmarks such as Sokoban, 3D navigation, and robotic manipulation.

AtlasVA: Self-Evolving Visual Skill Memory for Teacher-Free VLM Agents

Motivation and Background

AtlasVA addresses critical deficiencies in vision-LLM (VLM) agents tasked with spatially-intensive environments. Existing RL frameworks typically compress agent memory into textual form and rely on external LLM supervisors to refine, summarize, and provide sparse feedback. This setup suffers from inherent modality mismatch: complex spatial topologies, geometric constraints, and local hazards are lost in lossy language translation, which severely impedes credit assignment and spatial reasoning. Further, dependence on proprietary teacher models increases computational costs and impedes autonomy.

AtlasVA proposes a teacher-free Visual Skill Memory (VSM) hierarchy, maintaining spatial heatmaps, visual exemplars, and symbolic textual rules. By evolving danger and affinity atlases directly from interaction statistics and grid heuristics, and synthesizing these into dense reward shaping, the system closes the loop between perception, memory, and policy optimization natively in the agent's visual modality. Figure 1

Figure 1: AtlasVA architecture overview: three-layer VSM prompting, teacher-free evolution via rollouts, formulation of reward shaping, and closed optimization loop.

Architecture and Algorithmic Innovations

Visual Skill Memory (VSM) Hierarchy

AtlasVA's core is its three-layer Visual Skill Memory:

  • Layer 1: Spatial Heatmaps: Danger and affinity maps, rendered as RGB heatmaps and injected as auxiliary image tokens, establish coordinate-localized priors. This circumvents the modality bottleneck by directly aligning experience with the VLM's visual encoder.
  • Layer 2: Visual Exemplars: A capped batch of episodic keyframes (success/failure) is maintained via feature retrieval (DINOv2 cosine similarity), offering highly relevant context for zero-shot spatial matching.
  • Layer 3: Symbolic Text Skills: Injected strategic heuristics, distilled directly from environment rulebooks, provide high-level cognitive scaffolding without reliance on external LLM generation.

Prompt injection is structured, with each layer anchored at fixed positions in the multimodal prompt. The deployment policy relies exclusively on these visual and textual cues for inference, ensuring zero information leakage.

Teacher-Free Atlas Evolution

Rather than teacher-driven summarization, AtlasVA bootstraps spatial priors autonomously from raw environment interactions:

  • Trajectory Statistics: Danger maps are accumulated from terminal coordinates of failed rollouts, while affinity maps reflect normalized visit frequencies along successful paths.
  • EMA Blending: An exponential moving average (EMA) with adaptive scheduling blends static grid heuristics (BFS fields, corner traps) with evolving statistics, ensuring stable progression from cold start to accrued experience.
  • 3D to 2.5D Projection: For embodied navigation and tabletop manipulation, continuous 3D spaces are discretized to 2.5D grids, preserving geometric semantics for online visual reward shaping. Figure 2

    Figure 2: Projection of 3D continuous task spaces to 2.5D spatial priors for visual grounding.

Atlas-Grounded Reward Shaping

Sparse terminal environment rewards (โˆˆ{0,1}\in\{0,1\}) are augmented via potential-based shaping:

  • Affinity Gain: Step-wise potential difference from the affinity map produces a dense, positive gradient for moves toward goal manifolds.
  • Danger Penalty: Immediate negative feedback for entering learned hazardous regions, formulated as a heuristic policy constraint.
  • Dense Optimization Signal: The shaped reward is a continuous function over episode stepsโ€”accelerating learning, mitigating sparse credit assignment, and improving convergence. Figure 3

    Figure 3: Reward waterfall analysis: Danger Penalty (orange) and Affinity Gain (green) supplement sparse rewards with dense guidance.

Empirical Results

AtlasVA demonstrates exceptional performance across benchmarks: Sokoban, FrozenLake, 3D navigation, and robotic manipulation (PrimitiveSkill). Despite a compact base (3B parameters), AtlasVA surpasses larger proprietary VLMs (e.g., GPT-5, o3, Gemini) and prior strong open-source models.

  • Overall Success Rate: 0.93 (AtlasVA) vs. 0.69 (GPT-5), 0.78 (VAGEN), 0.55/0.14 (Qwen2.5-VL-72B/3B).
  • Spatial Generalization: AtlasVA achieves perfect scores (1.00) on all PrimitiveSkill tasks, robustly generalizes to unseen layouts via dynamic heuristic priors, and consistently outperforms in scenarios requiring explicit geometric planning and manipulation.
  • Learning Efficiency: AtlasVA converges dramatically faster and more stably than text-centric baselines, validated by ablation studies. Figure 4

Figure 4

Figure 4: Leftโ€”AtlasVA achieves superior learning efficiency and convergence; Rightโ€”Component ablation reveals criticality of visual memory, atlas evolution, and reward shaping.

Ablation and Diagnostic Analyses

Component-wise ablations confirm all core elements are essential:

  • Visual Skill Memory: Removing VSM results in severe regression; text-only memory fails to encode spatial constraints.
  • Atlas Evolution: Disabling trajectory-driven updates (EMAs) restricts the agent to static heuristicsโ€”major degradation.
  • Dense Reward Shaping: Sparse-only feedback leads to local optima and poor performance in long-horizon tasks.

Qualitative heatmap evolution shows rapid extraction of geometric priors, with danger zones and affinity paths emerging organically from environment interaction; exemplar pool capacity correlates directly with initial validation success spikes. Figure 5

Figure 5: Heatmap evolution: Danger (red) and Affinity (green) maps progressively encode structural hazards and sub-goal paths.

Figure 6

Figure 6

Figure 6: Exemplar pool: Visual context accumulation aligns with sharp rise in validation success.

Practical and Theoretical Implications

AtlasVA redefines memory-augmented RL for visual agents by eliminating the need for external teacher models and text-only heuristics. The closed-loop perception-optimization scheme, grounded entirely in visual modalities, produces dense, spatially precise feedback and significantly compresses sample complexity. Generalization to unseen layouts and robustness in continuous spatial domains emerge naturally from this visual memory paradigm.

There is clear evidence that visual skill memory and reward shaping can enable smaller agents to outperform much larger language-centric competitors, challenging current scaling laws and inviting novel architectures for embodied AI, GUI agents, and robotics. Figure 7

Figure 7: Rollout comparison: AtlasVA (3B) versus Qwen2.5-VL-72B, visual memory enables robust spatial reasoning and successful completion of complex tasks.

Limitations and Future Directions

Current memory evolution assumes availability of privileged grid state during training and projects 3D manipulation tasks onto 2.5D visual priors. Extending to fully occluded, ego-centric 3D robotics requires perturbation-resistant spatial abstraction and tighter integration with continuous pixel-level RL. Future research may target autonomous world model evolution, unsupervised spatial skill distillation, and scaling visual memory for open-ended embodied environments.

Conclusion

AtlasVA delivers a teacher-free, visually grounded memory framework for VLM agents, enabling sample-efficient spatial reasoning and robust policy optimization. The system reliably outperforms larger models, leveraging native multimodal perception and dense reward feedback. This approach establishes new directions for efficient, generalizable AI agents in spatially complex tasks (2605.17933).

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 0 likes about this paper.