Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,34 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- robotics
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# RoboArena Dataset Snapshot — 2026‑02‑03
|
| 8 |
+
|
| 9 |
+
This dataset contains autonomous policy rollouts, task success scores, policy preference annotations, and related metadata collected by the [RoboArena benchmark](https://robo-arena.github.io/) from its inception through February 3, 2026.
|
| 10 |
+
|
| 11 |
+
## Data layout
|
| 12 |
+
|
| 13 |
+
```text
|
| 14 |
+
DataDump_02-03-2026/
|
| 15 |
+
├── global_metadata.yaml
|
| 16 |
+
└── evaluation_sessions/
|
| 17 |
+
├── <eval_session_id_0>/
|
| 18 |
+
│ └── …
|
| 19 |
+
├── <eval_session_id_1>/
|
| 20 |
+
│ └── …
|
| 21 |
+
└── <eval_session_id_n>/
|
| 22 |
+
├── metadata.yaml
|
| 23 |
+
├── A_<policy_A_name>/
|
| 24 |
+
│ ├── left_shoulder.mp4
|
| 25 |
+
│ ├── right_shoulder.mp4
|
| 26 |
+
│ ├── wrist.mp4
|
| 27 |
+
│ └── proprio_and_actions.npz
|
| 28 |
+
├── B_<policy_B_name>/
|
| 29 |
+
│ └── …
|
| 30 |
+
└── C_<policy_C_name>/ # If more than two policies
|
| 31 |
+
└── …
|
| 32 |
+
```
|
| 33 |
+
|
| 34 |
+
For more details, see **“RoboArena: Distributed Real-World Evaluation of Generalist Robot Policies,”** [arXiv:2506.18123](https://arxiv.org/pdf/2506.18123).
|