Datasets:
ArXiv:
License:
Improve dataset card: Add task categories, project/code links, and sample usage
Browse filesThis PR significantly improves the dataset card for the `A2_Dataset` by:
- Adding `task_categories: ['robotics']` and relevant `tags` (`pick-and-place`, `manipulation`, `reinforcement-learning`) to the metadata for better discoverability.
- Including direct links to the project page (https://xukechun.github.io/papers/A2) and the GitHub repository (https://github.com/xukechun/Action-Prior-Alignment).
- Expanding the initial description with a brief summary of the paper's contribution to provide more context.
- Incorporating a "Sample Usage" section with `bash` commands for data collection, training, and evaluation, directly extracted from the project's GitHub README.
- Adding the BibTeX citation for proper attribution.
README.md
CHANGED
|
@@ -1,5 +1,71 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
|
| 5 |
-
This is the official repository for the training dataset of the paper: [Efficient Alignment of Unconditioned Action Prior for Language-conditioned Pick and Place in Clutter](https://huggingface.co/papers/2503.09423).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- robotics
|
| 5 |
+
tags:
|
| 6 |
+
- pick-and-place
|
| 7 |
+
- manipulation
|
| 8 |
+
- reinforcement-learning
|
| 9 |
---
|
| 10 |
|
| 11 |
+
This is the official repository for the training dataset of the paper: [Efficient Alignment of Unconditioned Action Prior for Language-conditioned Pick and Place in Clutter](https://huggingface.co/papers/2503.09423).
|
| 12 |
+
|
| 13 |
+
We study the task of language-conditioned pick and place in clutter, where a robot should grasp a target object in open clutter and move it to a specified place. This dataset supports the A$^2$ action prior alignment method, which integrates foundation priors from vision, language, and action to enable effective policies.
|
| 14 |
+
|
| 15 |
+
Project Page: https://xukechun.github.io/papers/A2
|
| 16 |
+
Code: https://github.com/xukechun/Action-Prior-Alignment
|
| 17 |
+
|
| 18 |
+
Please download the file and unzip it in the `data` folder.
|
| 19 |
+
|
| 20 |
+
### Sample Usage
|
| 21 |
+
|
| 22 |
+
The following snippets from the [GitHub repository](https://github.com/xukechun/Action-Prior-Alignment) demonstrate how to use this dataset for data collection, training, and evaluation.
|
| 23 |
+
|
| 24 |
+
#### Data Collection
|
| 25 |
+
- For pick data
|
| 26 |
+
```bash
|
| 27 |
+
bash scripts/data_collection/collect_data_grasp.sh
|
| 28 |
+
```
|
| 29 |
+
- For place data
|
| 30 |
+
```bash
|
| 31 |
+
bash scripts/data_collection/collect_data_place.sh
|
| 32 |
+
```
|
| 33 |
+
|
| 34 |
+
#### Training
|
| 35 |
+
- Unified training for pick and place
|
| 36 |
+
```bash
|
| 37 |
+
bash scripts/train/train_clutter_gp_unified.sh
|
| 38 |
+
```
|
| 39 |
+
- Adaptation for place
|
| 40 |
+
```bash
|
| 41 |
+
bash scripts/train/train_clutter_gp_adaptive.sh
|
| 42 |
+
```
|
| 43 |
+
|
| 44 |
+
#### Evaluation
|
| 45 |
+
To test the pre-trained model, simply change the location of `--model_path`:
|
| 46 |
+
|
| 47 |
+
- Pick
|
| 48 |
+
```bash
|
| 49 |
+
bash scripts/test/test_grasp.sh
|
| 50 |
+
```
|
| 51 |
+
- Place
|
| 52 |
+
```bash
|
| 53 |
+
bash scripts/test/test_place.sh
|
| 54 |
+
```
|
| 55 |
+
- Pick and place
|
| 56 |
+
```bash
|
| 57 |
+
bash scripts/test/test_pickplace.sh
|
| 58 |
+
```
|
| 59 |
+
|
| 60 |
+
### Citation
|
| 61 |
+
|
| 62 |
+
If you find this work useful, please consider citing:
|
| 63 |
+
|
| 64 |
+
```bibtex
|
| 65 |
+
@article{xu2025efficient,
|
| 66 |
+
title={Efficient Alignment of Unconditioned Action Prior for Language-conditioned Pick and Place in Clutter},
|
| 67 |
+
author={Xu, Kechun and Xia, Xunlong and Wang, Kaixuan and Yang, Yifei and Mao, Yunxuan and Deng, Bing and Xiong, Rong and Wang, Yue},
|
| 68 |
+
journal={arXiv preprint arXiv:2503.09423},
|
| 69 |
+
year={2025}
|
| 70 |
+
}
|
| 71 |
+
```
|