# Does a Plug-and-Play Memory Module Solve VLA's Long-Horizon Problem?
A new memory architecture called Remember Smarter (RS) raises total task success on LIBERO-Plus from 53.6% to 70.6% when adapted to pi0 — a 17-point absolute gain without modifying the underlying [Vision-Language-Action Model](https://humanoidintel.ai/glossary/vision-language-action-model) or expanding its context window. Published on arXiv today (paper ID: 2608.15269) by Dai Zhou, Jiexi Yan, Tong Li, Yuxuan Wang, and Cheng Deng, the work directly targets one of the most stubborn constraints in deploying VLAs on humanoid platforms: long-horizon tasks demand memory, but feeding raw observation histories into transformer context is computationally prohibitive and disrupts the token economy that makes modern VLMs tractable.
RS addresses this with two complementary branches. The visual branch compresses multi-view patch histories using bidirectional spatial Mamba and causal temporal Mamba, injecting the compressed representation into action-facing hidden states via residual cross-attention — crucially, without touching the VLM's visual token stream. The experience branch stores successful final-layer VLM states in a Poincaré VAE space, organizes them hierarchically, and asynchronously retrieves and converts them into geodesic prompt tokens without blocking action inference. The result is a system that can both remember what it recently saw and recall what has previously worked, without the context-length tax that makes naive approaches unscalable.
This matters for every team deploying humanoids on multi-step manipulation tasks where a robot must track state across dozens of sub-goals.
---
## Why VLA Context Limits Are a Real Deployment Bottleneck
Current VLA architectures — including [Physical Intelligence (π)](https://humanoidintel.ai/companies/physical-intelligence)'s pi0, the explicit target of this paper — process visual tokens at inference time. Adding more observation history directly to context scales quadratically in attention cost and, more practically, blows past the fixed context budgets these models are trained with. Teams working on long-horizon [dexterous manipulation](https://humanoidintel.ai/glossary/dexterous-manipulation) tasks have been forced into unsatisfying workarounds: truncated histories, frame subsampling, or hand-crafted state summaries that discard potentially critical visual information.
The Mamba architecture family offers a partial escape route because it is a structured state-space model (SSM) rather than full attention — it can process sequences with linear rather than quadratic complexity. RS's visual branch uses this property strategically: bidirectional spatial Mamba handles the multi-view spatial structure across camera perspectives simultaneously, while causal temporal Mamba respects the arrow of time for sequential observation compression. The two outputs are fused and injected via residual cross-attention into the action head's hidden states, meaning the VLM backbone never sees the compressed history directly — it's only the action-generation pathway that benefits.
This design choice is worth scrutinizing. Keeping the VLM's visual token stream unchanged preserves the model's pretraining distribution and avoids catastrophic forgetting during fine-tuning, but it also means the VLM's own reasoning cannot directly attend to compressed historical context. Whether this tradeoff costs meaningful reasoning capability in complex, language-conditioned tasks is not resolved in this paper.
---
## The Hyperbolic Experience Branch: Hierarchy Without the Engineering Cost
The second branch is arguably the more novel contribution. Rather than storing experiences in Euclidean space — where representing hierarchical task structure (e.g., "grasp → place → align → insert") requires either explicit tree data structures or flat nearest-neighbor search that ignores hierarchy — RS uses a Poincaré VAE to embed successful final-layer VLM states in hyperbolic space.
Hyperbolic geometry has an exponential volume growth property that mirrors tree-like hierarchical structure: distances near the boundary of the Poincaré disk represent increasingly specialized or leaf-level states, while states near the center represent more general, high-level configurations. This means the experience store naturally organizes task experiences by abstraction level without requiring manual annotation or explicit hierarchy construction — a meaningful engineering win for teams that don't want to hand-label their demonstration data.
Retrieval is asynchronous, converting recalled experiences into geodesic prompt tokens without blocking the action inference loop. This is a pragmatic concession to real-time constraints: a robot cannot pause mid-motion to wait for memory lookup. The geodesic framing — computing prompts along the shortest path in hyperbolic space between the current state embedding and retrieved experiences — preserves the geometric structure of the space rather than projecting back to Euclidean coordinates, which would discard the hierarchical information.
The authors validate this on both LIBERO-Plus and what they describe as real-robot experiments designed specifically to probe memory retention and experience utilization. The paper reports "substantial performance gains" on the real-robot side, though the abstract does not provide numerical breakdowns for individual real-world tasks — an important caveat for anyone reading this result at face value.
---
## What 53.6% → 70.6% Actually Means for the Field
LIBERO-Plus is a multi-task long-horizon benchmark built on the LIBERO suite, designed to stress-test exactly the memory and generalization properties RS targets. A 17-point absolute improvement on a competitive baseline (pi0, one of the strongest open-weight VLA policies available) is a result that will be difficult for the community to ignore — assuming the experimental setup holds up to scrutiny.
Several questions are worth tracking as this paper moves through peer review:
**Compute overhead at inference.** Mamba SSMs are cheaper than full attention, but the Poincaré VAE encoding, hierarchical retrieval, and geodesic token construction all add latency. The paper does not, in the abstract, report wall-clock inference times or control-frequency numbers. For humanoid deployment on 50Hz or 100Hz control loops, this matters enormously.
**Generalization to novel tasks.** The gains are demonstrated on tasks within the training distribution of the experience store. How RS performs when the experience bank contains no closely related successful demonstrations — i.e., [zero-shot generalization](https://humanoidintel.ai/glossary/zero-shot-generalization) — is unaddressed in the available abstract.
**Real-robot hardware context.** The paper specifies "real-robot experiments" but the abstract does not name the platform. Whether these are tabletop manipulation arms or full humanoid platforms is consequential for interpreting the results' relevance to bipedal deployments.
---
## Industry Implications: Memory as a Differentiator Layer
The framing of RS as a "plug-and-play" module is commercially significant. If the architecture is genuinely model-agnostic — adaptable to any VLA with minimal fine-tuning — it positions memory as a separable software layer that teams can bolt onto existing policy checkpoints rather than training from scratch. This is precisely the kind of modular abstraction that hardware-first humanoid companies need: they invest in robot-specific data collection and cannot afford to retrain foundation models from scratch every time memory architecture improves.
The experience branch's [imitation learning](https://humanoidintel.ai/glossary/imitation-learning) angle — storing and retrieving successful demonstrations rather than raw sensor data — also aligns with how most humanoid teams currently acquire manipulation data: human teleoperation producing successful trajectories that should be reusable across similar task instances.
Whether RS or an architecture like it becomes the standard memory layer for production VLA deployments will depend on whether the inference overhead is acceptable on the constrained compute budgets of humanoid edge hardware. But the core insight — that hyperbolic geometry can organize task experience hierarchically without engineering overhead, and that Mamba-compressed visual histories can be injected downstream without corrupting the VLM — is sound enough to expect serious follow-on work.
---
## Key Takeaways
- **Remember Smarter (RS)** is a plug-and-play dual-branch memory module for VLA-based robot policies, published August 18, 2026 (arXiv: 2608.15269).
- **Adapted to pi0**, RS raises total success on LIBERO-Plus from **53.6% to 70.6%** — a 17-point absolute gain.
- The **visual branch** uses bidirectional spatial Mamba + causal temporal Mamba to compress multi-view observation histories, injected via residual cross-attention without modifying the VLM's token stream.
- The **experience branch** embeds successful VLM states in a **Poincaré VAE** hyperbolic space, enabling natural hierarchical organization and asynchronous retrieval as geodesic prompt tokens.
- Key unknowns: inference latency on real control loops, performance on out-of-distribution tasks, and the specific real-robot platform used in experiments.
- The plug-and-play framing positions RS as a **separable memory layer** that humanoid teams could add to existing VLA checkpoints — potentially significant for teams with large existing demonstration datasets.
---
## Frequently Asked Questions
**What is Remember Smarter (RS) and what does it do?**
RS is a memory module for vision-language-action robot policies. It adds two branches to an existing VLA: one that compresses recent visual observation history using Mamba state-space models, and one that stores and retrieves successful past experiences in hyperbolic (Poincaré) space. It is designed to improve long-horizon task performance without increasing the VLA's context window size.
**Why does pi0's performance improve so much with RS on LIBERO-Plus?**
LIBERO-Plus tests long-horizon tasks where tracking recent observations and recalling relevant past successes directly impacts success rate. Pi0 alone, without explicit memory, scores 53.6% total success. With RS providing compressed visual history and hierarchically organized experience retrieval, that rises to 70.6%, according to the paper's authors.
**What is a Poincaré VAE and why use it for robot memory?**
A Poincaré VAE encodes data into hyperbolic space — specifically the Poincaré disk — rather than flat Euclidean space. Hyperbolic geometry naturally represents hierarchical structure because its volume grows exponentially with radius, mirroring tree topology. For robot task experiences, this means similar high-level task phases cluster geometrically without requiring hand-labeled hierarchy.
**Is Remember Smarter specific to pi0, or can it work with other VLAs?**
The authors describe RS as a "plug-and-play" module. The paper demonstrates adaptation to pi0, but the architectural design — injecting compressed memory into action-facing hidden states without modifying the VLM visual token stream — is intended to generalize across VLA architectures. Independent replication on other models has not yet been reported.
**What are the main open questions before RS could be used in humanoid deployments?**
Three critical unknowns: (1) inference latency and whether it is compatible with real-time control frequencies used on humanoid platforms; (2) how the experience branch performs when the memory bank lacks closely related successful demonstrations; and (3) the specific robot hardware used in the paper's real-robot experiments, which would clarify how applicable the results are to full bipedal systems.
RESEARCH
Remember Smarter Lifts pi0 Success Rate 17 Points
Published: August 18, 2026 at 24:00 EDTLast updated: August 18, 2026 at 07:09 EDTBy Alex Reiner, Senior EditorLast reviewed by Alex Reiner on August 18, 20269 min read
Remember Smarter module boosts pi0 success on LIBERO-Plus from 53.6% to 70.6% without expanding VLA context.
vlamemorypi0mambahyperbolic-geometrylong-horizonimitation-learning