Datasets:
ArXiv:
License:
Add robotics task category and improve dataset card
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,11 +1,39 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
|
| 5 |
# RoboMME Training Data (TFDS Format)
|
| 6 |
|
| 7 |
-
[Arxiv Paper](https://arxiv.org/abs/2603.04639) |
|
| 8 |
|
| 9 |
-
This
|
| 10 |
|
| 11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- robotics
|
| 5 |
---
|
| 6 |
|
| 7 |
# RoboMME Training Data (TFDS Format)
|
| 8 |
|
| 9 |
+
[Arxiv Paper](https://arxiv.org/abs/2603.04639) | [HF 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 the training data for **RoboMME**, a large-scale standardized benchmark for evaluating and advancing Vision-Language-Action (VLA) models in long-horizon, history-dependent robotic manipulation scenarios.
|
| 12 |
|
| 13 |
+
The data is provided in **TensorFlow Dataset (TFDS)** format and is primarily used for training models such as OpenVLA and MemoryVLA.
|
| 14 |
+
|
| 15 |
+
## Benchmark Overview
|
| 16 |
+
|
| 17 |
+
RoboMME evaluates 16 manipulation tasks across four categories of memory:
|
| 18 |
+
|
| 19 |
+
| Suite | Focus | Task IDs |
|
| 20 |
+
| ---------- | ----------------- | --------------------------------------------------------------------- |
|
| 21 |
+
| **Counting** | Temporal memory | BinFill, PickXtimes, SwingXtimes, StopCube |
|
| 22 |
+
| **Permanence** | Spatial memory | VideoUnmask, VideoUnmaskSwap, ButtonUnmask, ButtonUnmaskSwap |
|
| 23 |
+
| **Reference** | Object memory | PickHighlight, VideoRepick, VideoPlaceButton, VideoPlaceOrder |
|
| 24 |
+
| **Imitation** | Procedural memory | MoveCube, InsertPeg, PatternLock, RouteStick |
|
| 25 |
+
|
| 26 |
+
The dataset includes 1,600 demonstrations in total (100 per task).
|
| 27 |
+
|
| 28 |
+
Our adaptation of MemoryVLA on RoboMME can be found [here](https://github.com/RoboMME/MemoryVLA).
|
| 29 |
+
|
| 30 |
+
## Citation
|
| 31 |
+
|
| 32 |
+
```bibtex
|
| 33 |
+
@article{dai2026robomme,
|
| 34 |
+
title={RoboMME: Benchmarking and Understanding Memory for Robotic Generalist Policies},
|
| 35 |
+
author={Dai, Yinpei and Fu, Hongze and Lee, Jayjun and Liu, Yuejiang and Zhang, Haoran and Yang, Jianing and Finn, Chelsea and Fazeli, Nima and Chai, Joyce},
|
| 36 |
+
journal={arXiv preprint arXiv:2603.04639},
|
| 37 |
+
year={2026}
|
| 38 |
+
}
|
| 39 |
+
```
|