Datasets:
ArXiv:
License:
Update dataset card with Simple Recipe Works paper and GitHub link
Browse filesThis PR updates the dataset card to include:
- A reference to the paper ["Simple Recipe Works: Vision-Language-Action Models are Natural Continual Learners with Reinforcement Learning"](https://huggingface.co/papers/2603.11653) which uses this dataset.
- A link to the associated [GitHub repository](https://github.com/UT-Austin-RobIn/continual-vla-rl).
- Sample usage for downloading the dataset via the CLI, as found in the GitHub README.
- The `robotics` task category in the YAML metadata.
- An updated citation section including the new paper.
README.md
CHANGED
|
@@ -1,25 +1,50 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
```
|
| 24 |
-
|
| 25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- robotics
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# Modified LIBERO RLDS Datasets
|
| 8 |
+
|
| 9 |
+
This repository contains the four modified [LIBERO](https://libero-project.github.io/main.html) datasets used in the OpenVLA fine-tuning experiments and subsequent research on continual reinforcement learning for Vision-Language-Action (VLA) models. The datasets are stored in the RLDS data format.
|
| 10 |
+
|
| 11 |
+
These datasets are featured in the following papers:
|
| 12 |
+
- **[Simple Recipe Works: Vision-Language-Action Models are Natural Continual Learners with Reinforcement Learning](https://huggingface.co/papers/2603.11653)** (2026)
|
| 13 |
+
- **[OpenVLA: An Open-Source Vision-Language-Action Model](https://arxiv.org/abs/2406.09246)** (2024)
|
| 14 |
+
|
| 15 |
+
For details about the fine-tuning experiments and specific dataset modifications, see Appendix E in the OpenVLA paper. Instructions for running experiments can be found in the [OpenVLA GitHub](https://github.com/openvla/openvla) and the [continual-vla-rl GitHub](https://github.com/UT-Austin-RobIn/continual-vla-rl).
|
| 16 |
+
|
| 17 |
+
## Usage
|
| 18 |
+
|
| 19 |
+
You can download the dataset using the Hugging Face CLI:
|
| 20 |
+
|
| 21 |
+
```bash
|
| 22 |
+
hf download openvla/modified_libero_rlds --repo-type dataset --local-dir ./LIBERO/libero/datasets/
|
| 23 |
+
```
|
| 24 |
+
|
| 25 |
+
## Citation
|
| 26 |
+
|
| 27 |
+
If you use these datasets, please cite the following works:
|
| 28 |
+
|
| 29 |
+
**Simple Recipe Works:**
|
| 30 |
+
```bibtex
|
| 31 |
+
@article{hu2026vlacrl,
|
| 32 |
+
title={Simple Recipe Works: Vision-Language-Action Models are Natural Continual Learners with Reinforcement Learning},
|
| 33 |
+
author={Hu, Jiaheng and Shim, Jay and Tang, Chen and Sung, Yoonchang and Liu, Bo and Stone, Peter and Martin-Martin, Roberto},
|
| 34 |
+
journal={arXiv preprint arXiv:2603.11653},
|
| 35 |
+
year={2026},
|
| 36 |
+
url={https://arxiv.org/abs/2603.11653}
|
| 37 |
+
}
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
+
**OpenVLA:**
|
| 41 |
+
```bibtex
|
| 42 |
+
@article{kim24openvla,
|
| 43 |
+
title={OpenVLA: An Open-Source Vision-Language-Action Model},
|
| 44 |
+
author={{Moo Jin} Kim and Karl Pertsch and Siddharth Karamcheti and Ted Xiao and Ashwin Balakrishna and Suraj Nair and Rafael Rafailov and Ethan Foster and Grace Lam and Pannag Sanketi and Quan Vuong and Thomas Kollar and Benjamin Burchfiel and Russ Tedrake and Dorsa Sadigh and Sergey Levine and Percy Liang and Chelsea Finn},
|
| 45 |
+
journal = {arXiv preprint arXiv:2406.09246},
|
| 46 |
+
year={2024}
|
| 47 |
+
}
|
| 48 |
+
```
|
| 49 |
+
|
| 50 |
+
Please also refer to the [LIBERO project repo](https://github.com/Lifelong-Robot-Learning/LIBERO) for the original LIBERO citation.
|