File size: 2,725 Bytes
5c6e045
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0850dcd
46a22b0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0850dcd
5c6e045
0850dcd
5c6e045
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
---
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

### train Folder hierarchy
```
train
β”œβ”€β”€ collect_three_glues
β”‚Β Β  β”œβ”€β”€ data/
β”‚Β Β  β”œβ”€β”€ meta/
β”‚Β Β  └── videos/
β”œβ”€β”€ 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/

```

### 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}
}
```