File size: 9,383 Bytes
887343d 17731c0 887343d 17731c0 28694bf f1a2873 28694bf 887343d 17731c0 887343d 17731c0 35475d1 3b45bd3 301a166 17731c0 758ce7f 17731c0 f1a2873 17731c0 887343d 17731c0 fb4c28f 17731c0 887343d 4b178bf 17731c0 887343d 17731c0 887343d 17731c0 887343d 17731c0 887343d 17731c0 887343d 17731c0 887343d 17731c0 887343d d9a3043 35475d1 887343d 3b45bd3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | ---
license: cc-by-nc-4.0
language:
- en
pretty_name: EmbodiedMemory-Bench
size_categories:
- 1K<n<10K
task_categories:
- robotics
configs:
- config_name: default
data_files:
- split: all
path: data/embodied_memory_bench.parquet
dataset_info:
- config_name: default
features:
- name: id
dtype: string
- name: family
dtype: string
- name: family_id
dtype: string
- name: difficulty
dtype: string
- name: episode_name
dtype: string
- name: description
dtype: string
- name: scene
dtype: string
- name: probe_id
dtype: string
- name: probe_instruction
dtype: string
- name: context_sessions
dtype: int32
- name: context_steps
dtype: int32
- name: memory_cues
dtype: string
- name: episode_path
dtype: string
- name: preview_image
dtype: string
splits:
- name: all
num_examples: 2554
tags:
- embodied-ai
- embodied-memory
- multimodal
- long-horizon-planning
- ai2-thor
- procthor
- benchmark
---
<div align="center">
<img src="assets/mark.webp" alt="EmbodiedMemory-Bench logo" width="76">
<h1>EmbodiedMemory-Bench</h1>
<p><strong>Benchmarking Embodied Memory for Long-Horizon Embodied Tasks</strong></p>
<p><em>Remember what the world was. Track how it changed. Act beyond the moment.</em></p>
<p>
<a href="https://arxiv.org/abs/2609.28236"><img src="https://img.shields.io/badge/Paper-arXiv%3A2609.28236-BB2424?style=flat-square" alt="Paper: arXiv 2609.28236"></a>
<a href="https://zju-omniai.github.io/Embodied-Omni/EmbodiedMemoryBench/"><img src="https://img.shields.io/badge/Project-Page-176B70?style=flat-square" alt="Project page"></a>
<a href="https://github.com/ZJU-OmniAI/Embodied-Omni"><img src="https://img.shields.io/badge/GitHub-Repository-202A33?style=flat-square&logo=github&logoColor=white" alt="GitHub repository"></a>
</p>
<p><strong>2,554 episodes · 4 memory challenges · AI2-THOR & ProcTHOR</strong></p>
</div>
<p align="center">
<video controls playsinline preload="metadata" poster="https://huggingface.co/datasets/lzLiang/EmbodiedMemoryBench/resolve/main/assets/video-poster-en.jpg" width="100%">
<source src="https://huggingface.co/datasets/lzLiang/EmbodiedMemoryBench/resolve/main/assets/reference_video_en.mp4" type="video/mp4">
</video>
</p>
## 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.
<p align="center">
<img src="assets/task-overview.webp" alt="Four memory challenges: Passive Observation, Dynamic Tracking, Interaction Failure, and Experience Generalization" width="100%">
</p>
| 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.
<details>
<summary><strong>How the benchmark is constructed</strong></summary>
<p align="center">
<img src="assets/construction.webp" alt="Benchmark construction: scene selection, memory cue design, distractor synthesis, and quality checks" width="100%">
</p>
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.
</details>
## 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.
<details>
<summary><strong>Repository layout and episode schema</strong></summary>
```text
EmbodiedMemoryBench-Data/
├── episodes/
│ ├── passive_observation/<episode>/
│ ├── dynamic_tracking/<episode>/
│ ├── interaction_experience/<episode>/
│ └── experience_generalization/<episode>/
├── manifests/
│ ├── full2554.jsonl
│ ├── <family>.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.
</details>
<details>
<summary><strong>Frozen membership and integrity records</strong></summary>
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.
</details>
## 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/Embodied-Omni/EmbodiedMemoryBench/) · [code](https://github.com/ZJU-OmniAI/Embodied-Omni).
|