Command Palette
Search for a command to run...
LAME M-VLA: 로봇 조작을 위한 비전-언어-행동 모델의 이중 잠재 기억
LAME M-VLA: 로봇 조작을 위한 비전-언어-행동 모델의 이중 잠재 기억
Hongyu Qu Jianzhe Gao Xiaobin Hu Shaohuan Yang Xinlei Yu Rui Yan Wenguan Wang Xiangbo Shu Shuicheng Yan
초록
주류 비전-언어-행동(VLA) 모델은 주로 마르코프 가정 하에 현재 관찰로부터 행동을 예측하므로, 장기적이고 시간 의존적인 작업에 어려움을 겪는다. 기존의 기억 증강 VLA는 관찰 창을 확장하거나 기억 은행에서 이력을 정책 측 보조 컨텍스트로 검색한다. 그러나 이들은 기억을 VLA 추론의 고유 잠재 임베딩 공간 밖에 두어, 역사적 경험이 다중 모달 추론 및 행동 형성과 유연하게 얽히지 못하게 한다. 이를 해결하기 위해 우리는 LaMem-VLA를 소개한다. 이는 역사적 경험을 잠재 기억 토큰으로 재구성하고 VLA 추론에 직접 엮어 넣는 잠재 기억 네이티브 프레임워크이다. LaMem-VLA의 핵심은 네 가지 조정된 구성 요소를 도입한다: (i) 역사적 경험을 상호 보완적인 단기 및 장기 기억 저장소로 조직하는 큐레이터; (ii) 다중 모달 인지를 사용하여 두 저장소를 쿼리하고 컨텍스트 관련 증거를 검색하는 시커; (iii) 검색된 증거를 압축된 단기 및 장기 잠재 기억 토큰으로 재구성하는 컨덴서; (iv) 이러한 기억 토큰을 현재 관찰 및 지시와 함께 하나의 연속 임베딩 시퀀스로 주입하는 위버. 완전히 동일한 연속 잠재 공간에서 역사적 경험을 표현, 검색 및 소비함으로써, LaMem-VLA는 기억이 VLA 추론에 직접 참여하고 제한된 컨텍스트 내에서 행동 생성을 안내할 수 있게 한다. SimplerEnv 및 LIBERO에 대한 광범위한 실험은 우리 LaMem-VLA의 우수성을 입증한다.
One-sentence Summary
Researchers from Nanjing University of Science and Technology, Zhejiang University, and National University of Singapore introduce LaMem-VLA, a latent-memory-native framework that reconstructs historical experience into short-term and long-term latent memory tokens and weaves them into multimodal reasoning via coordinated curator, seeker, condenser, and weaver components, thereby enabling memory to directly guide action generation in long-horizon robotic manipulation tasks, as demonstrated on SimplerEnv and LIBERO.
Key Contributions
- LaMem-VLA introduces a latent-memory-native framework that reconstructs historical experience into latent memory tokens and interweaves them directly with VLA reasoning through four coordinated components: a curator, seeker, condenser, and weaver.
- The framework maintains complementary short-term visual and long-term semantic memory vaults; retrieved evidence is distilled into compact latent memory tokens and inserted into the continuous embedding sequence alongside the current observation and instruction, allowing past context to shape action generation in the same latent space.
- Experiments on SimplerEnv and LIBERO demonstrate that LaMem-VLA outperforms existing approaches, validating context-native latent memory for long-horizon, memory-dependent manipulation tasks.
Introduction
Vision-language-action (VLA) models map visual observations and language instructions to robot actions, but they typically assume a Markovian setting: actions are predicted from the current observation without temporal context. This creates a short-horizon bias that leaves them struggling with long-horizon manipulation tasks, where awareness of task progress and past state changes is essential. Prior methods try to incorporate history by extending the input window, compressing past observations, or retrieving tokens from an external memory bank, but they either incur growing computational costs, lose fine-grained detail, or keep memory as an auxiliary policy-side signal that never enters the VLA’s internal reasoning process. The authors address these limitations with LaMem-VLA, a native latent memory framework that organizes robotic history into complementary short-term visual and long-term semantic memory vaults. It retrieves task-relevant evidence, condenses it into compact latent tokens compatible with the model’s embedding space, and weaves those tokens directly into the action-generation sequence, making memory an integral part of the VLA’s perception, instruction understanding, and action reasoning.
Method
The authors formulate the robotic manipulation task in Vision-Language-Action (VLA) models as a language-conditioned Markovian decision-making problem. At each timestep t, the VLA policy Πθ takes a natural language instruction I and the current visual observation ot as input to predict a chunk of future actions:
at:t+H−1=Πθ(ot,I)
where H denotes the action horizon, and each action at∈R7 is a 7-DoF end-effector control vector comprising 3-DoF relative translation, 3-DoF relative rotation, and a 1-DoF gripper state.
While effective for short-horizon behaviors, this Markovian paradigm can induce a temporal short-horizon bias in long-horizon manipulation tasks. To address this, the authors introduce LaMem-VLA, an end-to-end native latent memory framework that directly weaves dual-scale historical experience into VLA reasoning to refine action generation.
As shown in the figure below:
LaMem-VLA closes the loop between latent memory reconstruction and action reasoning through four coordinated modules. At each timestep t, the vision-language backbone embeds the current visual observation ot and instruction I into visual tokens Xt and instruction tokens I. Learnable action queries are appended to the token sequence to obtain manipulation-relevant latent action representations.
The latent memory curator dynamically establishes and updates two complementary memory vaults. The short-term memory vault Mshort stores visual tokens that preserve recent perceptual evidence. Each short-term memory unit is represented as a key-value pair msi=(ks,vs), where the key ks provides a concise retrieval summary and the value vs stores the latent content. Specifically, a learnable SE-bottleneck compression module Cs distills the current visual tokens Xt into compact short-term memory tokens:
vs=Cs(Xt)∈RNs×C,ks=MeanPool(vs)∈RC
The long-term memory vault Mlong stores action hidden states that track task progress and action continuity across longer horizons. When the number of stored units exceeds the vault capacity, the curator applies a compression strategy by computing the cosine similarity between temporally adjacent keys, selecting the most redundant pair, and consolidating them by averaging both key and value tokens.
The latent memory seeker retrieves evidence from these vaults according to the current multimodal cognition context. Given the visual and instruction tokens, the VLA backbone produces a context-aware query Qtcon. The seeker appends learnable query slots Qinit∈RKq×C and updates them using a lightweight transformer-based query builder B:
Qt=B([Qtcon;Qinit])[−Kq:]∈RKq×C
The mean-pooled query qt=MeanPool(Qt) serves as the global retrieval vector. The seeker uses qt to retrieve the Top-K context-relevant units from both the short-term and long-term vaults via cosine similarity, yielding retrieved sets Zshort and Zlong.
The latent memory condenser then reconstructs this retrieved evidence into fixed-length latent memory tokens. It introduces learnable short-term visual memory slots Ts∈RLs×C and long-term semantic memory slots Tl∈RLl×C, updating them with lightweight memory formers Fv and Fc conditioned on the context query tokens and retrieved evidence:
Mshort=Fv([Qt;Zshort;Ts])[−Ls:],Mlong=Fc([Qt;Zlong;Tl])[−Ll:]
This produces query-conditioned latent memory tokens in the same embedding space used by VLA reasoning.
Finally, the latent memory weaver injects these synthesized memory tokens into the VLA reasoning sequence before action queries are resolved. The memory-augmented input sequence St is constructed as:
St=[Mshort+1Lsbs⊤;Mlong+1Llbl⊤;Xt;I;Qaction]
where bs and bl are learnable source embeddings. Because these memory tokens are part of the model input sequence, they participate in self-attention with the current observation, language instruction, and action queries, forming memory-grounded action tokens Zaction.
These memory-grounded action tokens are fed into a diffusion-based action expert to generate a continuous action chunk. The diffusion expert ϵθ is trained with a mean squared error loss to predict the injected noise under the action and memory conditions:
Laction=En,ϵ[ϵ−ϵθ(at:t+H−1n,n,Zaction)22]
During inference, DDIM sampling iteratively denoises the action chunk to produce history-aware continuous 7-DoF control actions.
Experiment
LaMem-VLA is evaluated on real-to-sim manipulation (SimplerEnv-Bridge) and diverse simulated task suites (LIBERO) to assess how dual-scale latent memory improves vision-language-action policies. The experiments demonstrate that injecting compressed short-term visual tokens and long-term semantic tokens directly into the reasoning sequence provides effective historical context, resolving temporally ambiguous states and supporting reliable action prediction across both short-horizon and long-horizon settings. Ablations confirm the complementary roles of the two memory streams and show that latent-native integration outperforms external memory conditioning, while moderate retrieval budgets and token counts balance performance and efficiency.
LaMem-VLA achieves the highest average success rate of 73.9% on the SimplerEnv-Bridge benchmark, outperforming all compared methods. The model surpasses the next best baseline by 16.6 percentage points and maintains robust performance across tasks, including those where prior models failed. This improvement is attributed to integrating compressed latent memory tokens into the action prediction sequence. LaMem-VLA's average success rate is 16.6 points higher than CogACT and also exceeds the recent state-of-the-art VLA π0, demonstrating the benefit of latent memory tokens for historical context. On the difficult Stack Cube task, LaMem-VLA reaches 41.7% success, whereas several earlier methods (RT-1-X, OpenVLA) scored 0%, and it attains near-perfect 95.8% on Put Eggplant in Basket.
LaMem-VLA achieves the highest success rates on all five LIBERO benchmark suites, reaching an overall average of 97.6%. It outperforms memory-augmented and standard vision-language-action baselines without requiring the additional proprioceptive and wrist-camera inputs that starred methods use. The largest gains appear on long-horizon tasks, where it surpasses the previous best memory-augmented model by over a point on both Long-10 and Long-90. LaMem-VLA reaches a 97.6% average success rate across all five suites, exceeding the strongest reported memory-augmented method by 1.1 points and a strong baseline like CogACT by 4.4 points. On the long-horizon suites, LaMem-VLA attains 95.8% on Long-10 and 97.0% on Long-90, improving over MemoryVLA by 2.4 and 1.4 points respectively, while not using extra proprioceptive or wrist-camera inputs.
Ablating the dual-scale latent memory shows that the full model with both short-term and long-term memory achieves the highest success rates on both benchmarks. Removing both memory streams causes the largest performance drop, while keeping only one stream yields intermediate results, confirming that the two memory vaults contribute complementary information. The full LaMem-VLA model reaches 73.9% on SimplerEnv and 97.0% on LIBERO-90, outperforming every ablated variant. Removing both short-term and long-term memory leads to the steepest decline, falling to 57.3% on SimplerEnv and 92.1% on LIBERO-90. Retaining only short-term memory (65.6%, 95.4%) or only long-term memory (64.6%, 94.8%) gives similar moderate performance, showing that neither vault alone is sufficient.
An ablation on memory integration shows that incorporating compressed latent memory tokens directly into the VLA input sequence yields the highest success rates, with the full LaMem-VLA model reaching 73.9% on SimplerEnv and 97.0% on LIBERO-90. Removing memory entirely drops performance sharply, while policy-side conditioning or raw retrieval conditioning provide intermediate gains but fall short of latent-native integration. The memory-free baseline achieves only 57.3% on SimplerEnv and 92.1% on LIBERO-90, the lowest across all conditions. Using memory as an external policy-side condition improves performance to 71.9% on SimplerEnv and 94.8% on LIBERO-90. Directly conditioning on raw retrieved evidence yields 69.8% on SimplerEnv and 95.1% on LIBERO-90, indicating that uncompressed tokens introduce redundancy. LaMem-VLA prepends compressed memory tokens to the VLA input, achieving the best results (73.9% on SimplerEnv and 97.0% on LIBERO-90).
The number of retrieved memory units K strongly affects manipulation performance, with success rates rising as K grows from 2 to 8 and then dipping at K=12. The optimal setting at K=8 provides sufficient historical evidence without overloading the memory condenser, achieving peak success on both benchmarks. Increasing K from 2 to 4 yields clear gains on both SimplerEnv (66.7% to 70.8%) and LIBERO-90 (94.4% to 95.9%). Performance peaks at K=8 (73.9% on SimplerEnv, 97.0% on LIBERO-90) and declines at K=12, showing a moderate retrieval budget works best.
LaMem-VLA integrates compressed latent memory tokens directly into its action prediction sequence, substantially improving visual-language-action manipulation performance. It sets new state-of-the-art success rates on SimplerEnv-Bridge and across all LIBERO suites, particularly on long-horizon tasks, without relying on extra proprioceptive or wrist-camera inputs. Ablation studies confirm that combining short-term and long-term latent memories is crucial, that conditioning on these compressed tokens within the input sequence works best, and that a retrieval budget of 8 memory units yields the strongest results.