Update dataset card with paper link, metadata, and usage instructions

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +66 -16
README.md CHANGED
@@ -1,16 +1,66 @@
1
- ---
2
- license: apache-2.0
3
- ---
4
-
5
- # RoboMemArena
6
-
7
- ## Task Categories
8
-
9
- This dataset contains four categories of tasks:
10
-
11
- | Category | Description | Task IDs |
12
- |---|---|---|
13
- | **Multi-Sequence** | Tasks requiring execution of multiple sequential sub-steps | Task1, Task2, Task3, Task22 |
14
- | **Multi-Occlusion** | Tasks involving occluded or hidden objects | Task4, Task5, Task11, Task12, Task13, Task14, Task17, Task20, Task21, Task23, Task24 |
15
- | **Multi-Counting** | Tasks requiring repeated actions, such as pouring twice | Task6, Task7, Task8, Task9, Task10, Task15, Task16 |
16
- | **Multi-Transferring** | Tasks involving transferring objects between locations | Task18, Task19, Task25, Task26 |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ ---
6
+
7
+ # RoboMemArena: A Comprehensive and Challenging Robotic Memory Benchmark
8
+
9
+ [**Project Page**](https://robomemarena.github.io/) | [**Paper**](https://huggingface.co/papers/2605.10921) | [**GitHub**](https://github.com/OpenHelix-Team/RoboMemArena)
10
+
11
+ RoboMemArena is a large-scale benchmark of 26 tasks designed to evaluate robotic memory. It features average trajectory lengths exceeding 1,000 steps per task, with 68.9% of subtasks being memory-dependent. The benchmark covers various domains including multi-sequence execution, occlusion handling, counting, and object transferring.
12
+
13
+ ## Task Categories
14
+
15
+ This dataset contains four categories of tasks:
16
+
17
+ | Category | Description | Task IDs |
18
+ |---|---|---|
19
+ | **Multi-Sequence** | Tasks requiring execution of multiple sequential sub-steps | Task1, Task2, Task3, Task22 |
20
+ | **Multi-Occlusion** | Tasks involving occluded or hidden objects | Task4, Task5, Task11, Task12, Task13, Task14, Task17, Task20, Task21, Task23, Task24 |
21
+ | **Multi-Counting** | Tasks requiring repeated actions, such as pouring twice | Task6, Task7, Task8, Task9, Task10, Task15, Task16 |
22
+ | **Multi-Transferring** | Tasks involving transferring objects between locations | Task18, Task19, Task25, Task26 |
23
+
24
+ ## Dataset Structure
25
+
26
+ The dataset is organized into category folders, each containing task subfolders. The demonstration data is provided in HDF5 format with keyframe annotations.
27
+
28
+ ```
29
+ <dataset_root>/
30
+ ├── <category_1>/
31
+ │ └── 1_cookies_tomato_basket_dataset/
32
+ │ └── subtask_data/ # Keyframe-annotated HDF5 episodes
33
+ │ ├── pick_cookies_0_seed100_task1.hdf5
34
+ │ ├── pick_cookies_0_seed101_task1.hdf5
35
+ │ └── ...
36
+ ```
37
+
38
+ Each HDF5 file in `subtask_data/` contains:
39
+ - `data/demo_{id}/actions`: (T, 7) end-effector actions
40
+ - `data/demo_{id}/obs/agentview_rgb`: (T, 256, 256, 3) top-down view
41
+ - `data/demo_{id}/obs/eye_in_hand_rgb`: (T, 256, 256, 3) wrist camera
42
+ - `data/demo_{id}/obs/ee_states`, `gripper_states`, `joint_states`: Robot state
43
+
44
+ ## Sample Usage (RLDS Conversion)
45
+
46
+ You can use the `RoboMemArena_dataset_builder.py` script provided in the [GitHub repository](https://github.com/OpenHelix-Team/RoboMemArena) to convert the HDF5 data to RLDS (TFDS) format:
47
+
48
+ ```python
49
+ import RoboMemArena_dataset_builder as b
50
+ import tensorflow_datasets as tfds
51
+
52
+ # Set the source dataset root and run the builder
53
+ ds_builder = b.RoboMemArenaDataset(data_dir='/path/to/output')
54
+ ds_builder.download_and_prepare()
55
+ ```
56
+
57
+ ## Citation
58
+
59
+ ```bibtex
60
+ @article{robomemarena2025,
61
+ title = {RoboMemArena: A Comprehensive and Challenging Robotic Memory Benchmark},
62
+ author = {Huashuo Lei and Wenxuan Song and Huarui Zhang and Jieyuan Pei and Jiayi Chen and Haodong Yan and Han Zhao and Pengxiang Ding and Zhipeng Zhang and Lida Huang and Donglin Wang and Yan Wang and Haoang Li},
63
+ journal = {arXiv preprint arXiv:2605.10921},
64
+ year = {2026}
65
+ }
66
+ ```