Add dataset card and documentation for ARC-RL
Browse filesHi, I'm Niels from the Hugging Face community science team. I noticed this dataset didn't have a dataset card yet. This PR adds a card with metadata (task categories and license), links to the research paper and GitHub repository, a description of the robotic morphologies, sample usage instructions, and the BibTeX citation.
README.md
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- reinforcement-learning
|
| 5 |
+
tags:
|
| 6 |
+
- robotics
|
| 7 |
+
- mujoco
|
| 8 |
+
- continuous-control
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# ARC-RL: A Reinforcement Learning Playground Inspired by ARC Raiders
|
| 12 |
+
|
| 13 |
+
This repository contains the expert demonstration datasets for **ARC-RL**, a suite of four MuJoCo continuous-control environments featuring robotic morphologies inspired by the game *ARC Raiders*.
|
| 14 |
+
|
| 15 |
+
- **Paper:** [ARC-RL: A Reinforcement Learning Playground Inspired by ARC Raiders](https://huggingface.co/papers/2605.19503)
|
| 16 |
+
- **GitHub Repository:** [https://github.com/CarloRomeo427/ARC_RL](https://github.com/CarloRomeo427/ARC_RL)
|
| 17 |
+
|
| 18 |
+
## Robot Morphologies
|
| 19 |
+
The benchmark features four unique robotic body plans:
|
| 20 |
+
- 👑 **Queen**: 18-DoF hexapod.
|
| 21 |
+
- 🛡️ **Bastion**: 12-DoF armoured hexapod.
|
| 22 |
+
- 🐸 **Leaper**: 12-DoF quadruped.
|
| 23 |
+
- 🪲 **Tick**: 18-DoF compact hexapod.
|
| 24 |
+
|
| 25 |
+
The datasets provided here are hand-crafted Central Pattern Generator (CPG) demonstrations for each morphology, which serve as fixed expert references and as sources of prior data for offline-to-online reinforcement learning algorithms like SACfD, SPEQ-O2O, and SOPE.
|
| 26 |
+
|
| 27 |
+
## Usage
|
| 28 |
+
|
| 29 |
+
To launch training with prior data (which automatically downloads the necessary files from this repository), use an algorithm like `sacfd` or `sope`:
|
| 30 |
+
|
| 31 |
+
```bash
|
| 32 |
+
python main.py --algo sacfd --env queen --log-wandb
|
| 33 |
+
```
|
| 34 |
+
|
| 35 |
+
To regenerate or collect expert episodes manually:
|
| 36 |
+
|
| 37 |
+
```bash
|
| 38 |
+
python -m src.utils.collect_dataset --env bastion --n-episodes 1000
|
| 39 |
+
```
|
| 40 |
+
|
| 41 |
+
## Citation
|
| 42 |
+
|
| 43 |
+
```bibtex
|
| 44 |
+
@misc{romeo2026arcrlreinforcementlearningplayground,
|
| 45 |
+
title={ARC-RL: A Reinforcement Learning Playground Inspired by ARC Raiders},
|
| 46 |
+
author={Carlo Romeo and Andrew D. Bagdanov},
|
| 47 |
+
year={2026},
|
| 48 |
+
eprint={2605.19503},
|
| 49 |
+
archivePrefix={arXiv},
|
| 50 |
+
primaryClass={cs.RO},
|
| 51 |
+
url={https://arxiv.org/abs/2605.19503},
|
| 52 |
+
}
|
| 53 |
+
```
|