Improve dataset card: add robotics metadata, links, and sample usage
#2
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,12 +1,22 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
|
| 5 |
# RoboMME Training Data (Pickle Format)
|
| 6 |
|
| 7 |
-
[
|
| 8 |
|
| 9 |
-
This
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
|
| 11 |
```
|
| 12 |
.
|
|
@@ -16,4 +26,35 @@ This repo contains preprocessed pickle files for RoboMME training data and npy f
|
|
| 16 |
├── memer # VLM subgoal training data for MemER (only used for symbolic memory)
|
| 17 |
├── qwenvl # VLM subgoal training data for QwenVL (only used for symbolic memory)
|
| 18 |
└── README.md
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
```
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- robotics
|
| 5 |
---
|
| 6 |
|
| 7 |
# RoboMME Training Data (Pickle Format)
|
| 8 |
|
| 9 |
+
[Paper](https://huggingface.co/papers/2603.04639) | [Website](https://robomme.github.io/) | [Benchmark Code](https://github.com/RoboMME/robomme_benchmark) | [Policy Learning Code](https://github.com/RoboMME/robomme_policy_learning)
|
| 10 |
|
| 11 |
+
This repository contains preprocessed pickle files for RoboMME training data and npy files for cached image tokens. This dataset is used in the [MME-VLA](https://github.com/RoboMME/robomme_policy_learning) experiments.
|
| 12 |
+
|
| 13 |
+
RoboMME is a large-scale standardized benchmark for evaluating and advancing Vision-Language-Action (VLA) models in long-horizon, history-dependent scenarios. It comprises 16 manipulation tasks across four cognitively motivated suites:
|
| 14 |
+
- **Counting** (Temporal memory)
|
| 15 |
+
- **Permanence** (Spatial memory)
|
| 16 |
+
- **Reference** (Object memory)
|
| 17 |
+
- **Imitation** (Procedural memory)
|
| 18 |
+
|
| 19 |
+
## Repository Structure
|
| 20 |
|
| 21 |
```
|
| 22 |
.
|
|
|
|
| 26 |
├── memer # VLM subgoal training data for MemER (only used for symbolic memory)
|
| 27 |
├── qwenvl # VLM subgoal training data for QwenVL (only used for symbolic memory)
|
| 28 |
└── README.md
|
| 29 |
+
```
|
| 30 |
+
|
| 31 |
+
## Sample Usage
|
| 32 |
+
|
| 33 |
+
To evaluate on the test set using the `BenchmarkEnvBuilder` from the benchmark repository:
|
| 34 |
+
|
| 35 |
+
```python
|
| 36 |
+
task_id = "PickXtimes"
|
| 37 |
+
episode_idx = 0
|
| 38 |
+
env_builder = BenchmarkEnvBuilder(
|
| 39 |
+
env_id=task_id,
|
| 40 |
+
dataset="test",
|
| 41 |
+
)
|
| 42 |
+
|
| 43 |
+
env = env_builder.make_env_for_episode(episode_idx)
|
| 44 |
+
obs, info = env.reset() # initial step
|
| 45 |
+
task_goal = info['task_goal'][0]
|
| 46 |
+
|
| 47 |
+
# Policy interaction loop
|
| 48 |
+
# obs, _, terminated, truncated, info = env.step(action)
|
| 49 |
+
```
|
| 50 |
+
|
| 51 |
+
## Citation
|
| 52 |
+
|
| 53 |
+
```bibtex
|
| 54 |
+
@article{dai2026robomme,
|
| 55 |
+
title={RoboMME: Benchmarking and Understanding Memory for Robotic Generalist Policies},
|
| 56 |
+
author={Dai, Yinpei and Fu, Hongze and Lee, Jayjun and Liu, Yuejiang and Zhang, Haoran and Yang, Jianing and Chelsea Finn and Nima Fazeli and Joyce Chai},
|
| 57 |
+
journal={arXiv preprint arXiv:2603.04639},
|
| 58 |
+
year={2026}
|
| 59 |
+
}
|
| 60 |
```
|