JiantongChen's picture
Update README.md
0850dcd verified
|
raw
history blame
2.3 kB
---
license: cc-by-nc-sa-4.0
---
# Get started πŸ”₯
## Download the Dataset
To download the full dataset, you can use the following code. If you encounter any issues, please refer to the official Hugging Face documentation.
```python
from huggingface_hub import snapshot_download
dataset_path = snapshot_download("InternRobotics/IROS-2025-Challenge-Manip", repo_type="dataset")
```
## Dataset Structure
### validation Folder hierarchy
```
validation
β”œβ”€β”€ IROS_C_V3_Aloha_seen
β”‚Β Β  β”œβ”€β”€ collect_three_glues
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 000
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ meta_info.pkl
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ scene.usd
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── SubUSDs -> ../SubUSDs
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 001/
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 002/
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 003/
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 004/
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 005/
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 006/
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 007/
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 008/
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 009/
β”‚Β Β  β”‚Β Β  └── SubUSDs
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ materials/
β”‚Β Β  β”‚Β Β  └── textures/
β”‚Β Β  β”œβ”€β”€ collect_two_alarm_clocks/
β”‚Β Β  β”œβ”€β”€ collect_two_shoes/
β”‚Β Β  β”œβ”€β”€ gather_three_teaboxes/
β”‚Β Β  β”œβ”€β”€ make_sandwich/
β”‚Β Β  β”œβ”€β”€ oil_painting_recognition/
β”‚Β Β  β”œβ”€β”€ organize_colorful_cups/
β”‚Β Β  β”œβ”€β”€ purchase_gift_box/
β”‚Β Β  β”œβ”€β”€ put_drink_on_basket/
β”‚Β Β  └── sort_waste/
└── IROS_C_V3_Aloha_unseen
β”œβ”€β”€ collect_three_glues/
β”œβ”€β”€ collect_two_alarm_clocks/
β”œβ”€β”€ collect_two_shoes/
β”œβ”€β”€ gather_three_teaboxes/
β”œβ”€β”€ make_sandwich/
β”œβ”€β”€ oil_painting_recognition/
β”œβ”€β”€ organize_colorful_cups/
β”œβ”€β”€ purchase_gift_box/
β”œβ”€β”€ put_drink_on_basket/
└── sort_waste/
```
# License and Citation
All the data and code within this repo are under [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/). Please consider citing our project if it helps your research.
```BibTeX
@misc{contributors2025internroboticsrepo,
title={IROS-2025-Challenge-Manip Colosseum},
author={IROS-2025-Challenge-Manip Colosseum contributors},
howpublished={\url{https://github.com/internrobotics/IROS-2025-Challenge-Manip}},
year={2025}
}
```