--- license: cc-by-nc-4.0 language: - en pretty_name: EmbodiedMemory-Bench size_categories: - 1K EmbodiedMemory-Bench logo

EmbodiedMemory-Bench

Benchmarking Embodied Memory for Long-Horizon Embodied Tasks

Remember what the world was. Track how it changed. Act beyond the moment.

Paper: arXiv 2609.28236 Project page GitHub repository

2,554 episodes · 4 memory challenges · AI2-THOR & ProcTHOR

## Benchmark **EmbodiedMemory-Bench (EMem-Bench)** evaluates memory through actions in an interactive environment. An agent first observes multimodal interaction history without knowing its future task. It must then use that experience to complete a later task: remember a detail, update a changed state, avoid a previous failure, or apply a learned rule.

Four memory challenges: Passive Observation, Dynamic Tracking, Interaction Failure, and Experience Generalization

| Memory challenge | What the agent must remember | Episodes | |:--|:--|--:| | **Passive Observation** | An object’s location seen earlier, amid unrelated activity | **1,036** | | **Dynamic Tracking** | The latest location or state after an object changes | **1,052** | | **Interaction Failure** | A constraint revealed by an earlier interaction outcome | **263** | | **Experience Generalization** | A pattern learned from corrections and applied to a new object or scene | **203** | | **Total** | Four complementary memory capabilities | **2,554** | Interaction Failure episodes are stored under `interaction_experience/`. The dataset contains historical RGB observations, action and feedback traces, task probes, and evaluation annotations. Benchmark membership is fixed by [the Full-2554 manifest](manifests/full2554.jsonl). The **Dataset Viewer** uses the compact `all` split at [`data/embodied_memory_bench.parquet`](data/embodied_memory_bench.parquet), with the same records available as [JSONL](data/embodied_memory_bench.jsonl). Each row includes paths to the complete episode record and a representative observation.
How the benchmark is constructed

Benchmark construction: scene selection, memory cue design, distractor synthesis, and quality checks

Construction combines simulator-grounded scenes, task-specific memory cues, and distractor trajectories. The accompanying paper describes the execution checks and quality review used to retain the final episodes. Construction and evaluation resources will accompany the public code release.
## Quick start Download the complete episode and image package: ```bash pip install -U huggingface_hub hf download lzLiang/EmbodiedMemoryBench \ --repo-type dataset \ --local-dir EmbodiedMemoryBench-Data ``` Read an episode through the portable index: ```python import csv import json from pathlib import Path root = Path("EmbodiedMemoryBench-Data") with (root / "browse.tsv").open(encoding="utf-8") as f: index = list(csv.DictReader(f, delimiter="\t")) row = index[0] episode_path = root / row["episode_json"] episode = json.loads(episode_path.read_text(encoding="utf-8")) print(row["family"], episode["episode_id"]) print("Context sessions:", len(episode["sessions"])) ``` This release is an episode-and-media package. The index provides paths to its nested JSON records; downloading the repository also retrieves the context images. The accompanying evaluation code supports `full_context` and `emem` modes; its public release will provide simulator setup and execution instructions.
Repository layout and episode schema ```text EmbodiedMemoryBench-Data/ ├── episodes/ │ ├── passive_observation// │ ├── dynamic_tracking// │ ├── interaction_experience// │ └── experience_generalization// ├── manifests/ │ ├── full2554.jsonl │ ├── .jsonl │ └── audit_report.json ├── browse.tsv ├── metadata.json └── verification_report.json ``` Each episode directory contains its JSON record and historical images. Use `browse.tsv` or a family manifest’s `organized_view.episode_json` to locate the downloaded JSON. The canonical manifest’s `source.episode_path` records the original research-workspace path. | Field | Contents | |:--|:--| | `episode_id` | Stable episode identifier | | `sessions` | Context trajectories with observation references, actions, and feedback | | `sessions[].micro_probe` | Session-level probe, when present | | `macro_probe` | Final probe, when present | | `memory_cues`, `hidden_rules` | Evaluation annotations for planted cues and constraints | | `scene_metadata` | Scene provenance and setup metadata | The raw files include evaluator annotations. Use the evaluation code to construct model inputs: future task information must stay out of history ingestion, and hidden rules, cue labels, expected actions, and privileged simulator state must stay evaluator-side.
Frozen membership and integrity records The [metadata](metadata.json), [membership audit](manifests/audit_report.json), and [verification report](verification_report.json) record the release counts and integrity checks. The verification report records **2,554 verified episodes** and no issues. Each canonical manifest row includes an episode JSON SHA-256. Canonical manifest SHA-256: ```text 6c69644b9fc4755065830e4884a12898e3ed0db32c1825dbecf623c37b9b1bc2 ``` Episode names, top-level descriptions, and probe instructions have been translated to English. The original language version is available at revision `28694bf83b78049ac96ba01c9ffb13aeac7eaef9`. Episode membership and evaluation annotations are unchanged; episode and manifest hashes have been updated. The release is the complete evaluation set; manifest rows use `split: all`. No train/validation partition is declared here.
## Evaluation The benchmark measures **Success Rate (SR ↑)** and **Error Recurrence Rate (ERR ↓)**. Report per-family scores and their equal-family macro average so the smaller task families remain represented. ## Sources and license The benchmark is released under [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/). It builds on [AI2-THOR](https://ai2thor.allenai.org/) and [ProcTHOR](https://procthor.allenai.org/); their environments, assets, and dependencies remain subject to their respective upstream terms. ## Reference **EmbodiedMemory-Bench: Benchmarking Embodied Memory for Long-Horizon Embodied Tasks** Read the paper: [arXiv:2609.28236](https://arxiv.org/abs/2609.28236). ```bibtex @misc{embodiedmemorybench, title = {EmbodiedMemory-Bench: Benchmarking Embodied Memory for Long-Horizon Embodied Tasks}, author = {Liang, Lizhou and Zhong, Xinyu and Pan, Miao and Zhou, Xiaohe and Liu, Xuanyu and Li, Qinfeng and Li, Peng and Chen, Jintao and Zhang, Xuhong and Zhang, Wenqi}, year = {2026}, eprint = {2609.28236}, archivePrefix = {arXiv}, primaryClass = {cs.CV}, url = {https://arxiv.org/abs/2609.28236} } ``` Project resources: [project page](https://zju-omniai.github.io/EmbodiedMemoryBench/) · [code](https://github.com/ZJU-OmniAI/Embodied-Omni).