Skip to content

Latest commit

 

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 

Repository files navigation

MaP-WAM: Memory as Plans

World-Action Modeling with Memory-Grounded Planning

Project Page arXiv Models

Sizhe Zhao1, Haozhe Xie2, Weiyu Zhao1, Chenchu Zhang1, Huan Wang3, Chenyang Wang1, Qinglin Liu1, Shengping Zhang1,4,†

1Harbin Institute of Technology   2Nanyang Technological University   3Shandong University
4HIT (Weihai) Qingdao Research Institute   Corresponding author

Release Plan

  • ✅ Repository created
  • ⬜ Training/Inference code
  • ⬜ Checkpoints

Overview

Many long-horizon manipulation tasks are non-Markovian: the information needed for the next action may have disappeared from the current observation. Existing approaches often compress history into language, which can discard precise visual evidence, or repeatedly process a growing visual window, which increases latency and memory use.

MaP-WAM addresses this problem by treating memory as planning-time evidence. It stores completed task segments as compact language-visual records, converts the resulting episodic memory into a segment-level language and visual plan, and executes that plan using a fixed-context World-Action-Progress (WAP) model. Progress prediction, plan-observation alignment, and progress-gated transitions close the loop between planning, execution, and memory updates.

Method

MaP-WAM consists of three tightly connected components:

  1. Structured multimodal episodic memory. Each completed segment is stored as its language instruction together with sparse visual evidence sampled from the real execution trajectory.
  2. Memory-grounded planning. A vision-language model predicts the next segment-level language plan, and a causal world model generates corresponding visual guidance from the long-term episodic context.
  3. Plan-conditioned execution. WAP jointly predicts action chunks and execution progress. Plan-observation alignment calibrates recursive progress estimates, while progress-gated transitions determine when to update memory and request the next plan.

The structured attention design makes completed episodic evidence and the current plan cacheable. As a result, the executor operates with a fixed context length even as the task history grows.

Highlights

  • Preserves fine-grained historical evidence using sparse visual memory rather than language-only summaries.
  • Separates long-horizon reasoning from short-horizon control through memory-grounded planning and plan-conditioned execution.
  • Models task progress as a first-class modality jointly with actions and uses visual-plan alignment to reduce long-horizon drift.
  • Supports key-value caching in both planning and execution through structured causal attention.
  • Maintains approximately constant per-chunk executor latency as history grows.

Results

Setting Evaluation protocol Success rate
RMBench 9 memory-dependent tasks 83.3%
Real robot 2 memory-dependent tasks 78.0%

On RMBench, MaP-WAM achieves an average success rate of 83.3%, compared with 77.1% for the strongest baseline. On a 7-DoF Franka Research 3 robot, it achieves an average success rate of 78.0% across two memory-dependent tasks.

See the project page for the per-task comparison and real-robot demonstrations.

Citation

@article{mapwam,
  author  = {Sizhe Zhao and Haozhe Xie and Weiyu Zhao and Chenchu Zhang and
             Huan Wang and Chenyang Wang and Qinglin Liu and Shengping Zhang},
  title   = {{Memory as Plans:} World-Action Modeling with Memory-Grounded Planning},
  journal = {arXiv 2609.11561},
  year    = {2026}
}