File size: 45,051 Bytes
9c9a858 | 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 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 | ---
task_categories:
- robotics
language:
- en
extra_gated_prompt: 'By accessing this dataset, you agree to cite the associated paper in your research/publications—see the "Citation" section for details. You agree to not use the dataset to conduct experiments that cause harm to human subjects.'
extra_gated_fields:
Company/Organization:
type: 'text'
description: 'e.g., "ETH Zurich", "Boston Dynamics", "Independent Researcher"'
Country:
type: 'country'
description: 'e.g., "Germany", "China", "United States"'
tags:
- RoboCOIN
- LeRobot
license: apache-2.0
configs:
- config_name: default
data_files: data/chunk-{id}/episode_{id}.parquet
---
# Agilex_Cobot_Magic_stack_block
## Dataset Description
This dataset uses an extended format based on LeRobot and is fully compatible with LeRobot.
## Task Preview
<video src="videos/chunk-000/observation.images.cam_head_rgb/episode_000000.mp4" controls width="640"></video>
[View Video Directly](videos/chunk-000/observation.images.cam_head_rgb/episode_000000.mp4)
### Overview
- **Total Episodes:** 672
- **Total Frames:** 643028
- **FPS:** 30
- **Dataset Size:** 3.97 GB
- **Robot Name:** `Agilex_Cobot_Magic`
- **End-Effector Type:** `two_finger_gripper`
- **Teleoperation Type:** `Due to some reasons, this dataset temporarily cannot provide the teleoperation type information.`
- **Sensors:** `cam_head_rgb`,
`cam_left_wrist_rgb`,
`cam_right_wrist_rgb`
- **Camera Information:** cam_head_rgb;
cam_left_wrist_rgb;
cam_right_wrist_rgb
- **Scene:** `household->living_room`
- **Objects:** `table(unknown)`,
`square_building_blocks(unknown)`
- **Task Description:** According to the building block template in front, assemble the scattered blocks together.
### Primary Task Instruction
> According to the building block template in front, assemble the scattered blocks together.
### Robot Configuration
- **Robot Name:** `Agilex_Cobot_Magic`
- **Codebase Version:** `v2.1`
- **End-Effector Type:** `two_finger_gripper`
- **Teleoperation Type:** `Due to some reasons, this dataset temporarily cannot provide the teleoperation type information.`
## Scene and Objects
### Scene Type
`household->living_room`
### Objects
- `table(unknown)`
- `square_building_blocks(unknown)`
## Task Descriptions
- **Standardized Task Description:** `According to the building block template in front, assemble the scattered blocks together.`
- **Operation Type:** `Due to some reasons, this dataset temporarily cannot provide the operation type information.`
- **Environment Type:** `Due to some reasons, this dataset temporarily cannot provide the environment type information.`
### Sub-Tasks
This dataset includes 384 distinct subtasks:
1. **Put the yellow build block on the blue build block
** (Index: 0)
2. **Put the orange build block on the left of the blue build block
** (Index: 1)
3. **Put the red build block on the right of the yellow build block
** (Index: 2)
4. **Put the orange build block on the right of the yellow build block
** (Index: 3)
5. **Put the green cube on the left of the blue cube with the left gripper** (Index: 4)
6. **Put the yellow build block on the blue build block
** (Index: 5)
7. **Put the green build block on the right of the blue build block
** (Index: 6)
8. **Put the red build block on the blue build block
** (Index: 7)
9. **Put the yellow build block on the right of the red build block
** (Index: 8)
10. **Put the red build block on the behind of the green' build block
** (Index: 9)
11. **Put the blue build block on the behind of the orange build block
** (Index: 10)
12. **Put the orange cube on the behind of the red cube** (Index: 11)
13. **Put the blue cube on the behind of the red cube** (Index: 12)
14. **Put the blue cube on the right of the green cube** (Index: 13)
15. **Put the green cube on the left of the yellow cube with the right gripper** (Index: 14)
16. **Grasp the green block with left gripper** (Index: 15)
17. **Put the blue cube and green cube in the center of the table with the right gripper** (Index: 16)
18. **Put the green cube on the behind of the yellow cube** (Index: 17)
19. **Put the green build block on the right of the orange build block
** (Index: 18)
20. **Put the blue cube on the behind of the yellow cube** (Index: 19)
21. **Put the green build block on the orange build block
** (Index: 20)
22. **Grasp the blue block with left gripper** (Index: 21)
23. **Put the green cube on the right of the red cube** (Index: 22)
24. **Grasp the orange block with left gripper** (Index: 23)
25. **Put the bluebuild block on the right of the yellow build block
** (Index: 24)
26. **Put the yellow build block on the right of the green build block
** (Index: 25)
27. **Put the yellow cube on the right of the red cube** (Index: 26)
28. **Put the orange build block on the right of the green build block
** (Index: 27)
29. **Adjust the position of the cube with the right gripper** (Index: 28)
30. **Put the red cube and green cube in the center of the table with the left gripper** (Index: 29)
31. **Put the yellow build block on the right of the red build block
** (Index: 30)
32. **Put the blue cube and green cube in the center of the table with the left gripper** (Index: 31)
33. **Put the red build block on the behind of the orange build block
** (Index: 32)
34. **Put the green cube on the red cube** (Index: 33)
35. **Put the orange build block on the behind of the red build block
** (Index: 34)
36. **Put the blue build block on the right of the yellow build block
** (Index: 35)
37. **Put the yellow build block on the right of the orange build block
** (Index: 36)
38. **Put the red cube on the left of the green cube with the left gripper** (Index: 37)
39. **Put the yellow build block on the behind of the blue build block
** (Index: 38)
40. **Put the green build block in the center of the table
** (Index: 39)
41. **Put the orange cube on the left of the yellow cube with the right gripper** (Index: 40)
42. **Put the yellow cube on the behind of the green cube** (Index: 41)
43. **Put the blue build block on the green build block
** (Index: 42)
44. **Put the blue build block on the right of orange the build block
** (Index: 43)
45. **Put the yellow build block in the center of the table
** (Index: 44)
46. **Grasp the yellow block with left gripper** (Index: 45)
47. **Put the orange build block on the behind of the red build block
** (Index: 46)
48. **Put the red cube on the left of the orange cube** (Index: 47)
49. **Put the green cube on the right of the yellow cube with the left gripper** (Index: 48)
50. **Put the blue build block on the front of the orange build block
** (Index: 49)
51. **Put the green build block on the right of the orange build block
** (Index: 50)
52. **Put the ornage build block on the behind of the green build block
** (Index: 51)
53. **Put the red build block on the behind of the blue build block
** (Index: 52)
54. **Put the yellow cube and orange cube in the center of the table with the right gripper** (Index: 53)
55. **Put the blue cube in the center of the table** (Index: 54)
56. **Put the ornage build block on the behind of the blue build block
** (Index: 55)
57. **Grasp the red block with right gripper** (Index: 56)
58. **Put the orange cube on the right of the yellow cube** (Index: 57)
59. **Put the red build block on the behind of the yellow build block
** (Index: 58)
60. **Put the yellow build block on the right of the green build block
** (Index: 59)
61. **Put the yellow cube on the front of the orange cube with the right gripper** (Index: 60)
62. **Put the green build block on the behind of the blue build block** (Index: 61)
63. **Put the yellow build block in the center of the table** (Index: 62)
64. **Put the yellow build block on the behind of the blue build block** (Index: 63)
65. **Put the red build block on the left of the green build block
** (Index: 64)
66. **Put the orange cube on the right of the blue cube** (Index: 65)
67. **Put the yellow cube on the behind of the red cube** (Index: 66)
68. **Grasp the orange block with right gripper** (Index: 67)
69. **Put the red cube on the right of the green cube** (Index: 68)
70. **move the build block to the center of the table** (Index: 69)
71. **Put the yellow build block on the right of the red build block
** (Index: 70)
72. **Put the greem build block on the behind of the blue build block
** (Index: 71)
73. **Put the yellow build block on the behind of the blue build block
** (Index: 72)
74. **Put the green cube on the right of the orange cube with the right gripper** (Index: 73)
75. **Put the red cube on the right of the green cube with the left gripper** (Index: 74)
76. **Put the yellow build block on the behind of the green build block
** (Index: 75)
77. **Put the green build block on the left of the orange build block** (Index: 76)
78. **Put the yellow cube on the front of the blue cube with the right gripper** (Index: 77)
79. **Put the red build block on the right of the blue build block
** (Index: 78)
80. **Put the yellow build block on the blue build block
** (Index: 79)
81. **Put the orange cube on the behind of the blue cube** (Index: 80)
82. **Put the yellow build block on the right of the blue build block
** (Index: 81)
83. **Put the green cube on the right of the blue cube with the left gripper** (Index: 82)
84. **Put the yellow cube on the right of the orange cube** (Index: 83)
85. **Put the yellow cube and green cube in the center of the table with the left gripper** (Index: 84)
86. **Put the blue build block on the left of the yellow build block
** (Index: 85)
87. **Put the red cube and blue cube in the center of the table with the right gripper** (Index: 86)
88. **Put the blue build block on the right of the red build block
** (Index: 87)
89. **Put the red cube on the right of the orange cube with the right gripper** (Index: 88)
90. **Put the green build block on the right of the red build block
** (Index: 89)
91. **Put the blue cube on the left of the green cube with the right gripper** (Index: 90)
92. **Put the blue cube on the right of the yellow cube with the right gripper** (Index: 91)
93. **Put the orange build block on the behind of the yellow build block
** (Index: 92)
94. **Put the blue cube on the left of the orange cube** (Index: 93)
95. **Put the orange cube on the right of the green cube** (Index: 94)
96. **Put the red build block in the center of the table
** (Index: 95)
97. **Put the green build block on the left of the blue build block
** (Index: 96)
98. **Put the green cube on the left of the orange cube with the left gripper** (Index: 97)
99. **Grasp the blue block with right gripper** (Index: 98)
100. **Put the orange build block on the behind of the yellow build block
** (Index: 99)
101. **Put the yellow build block in the center of the table
** (Index: 100)
102. **Put the blue build block on the front of the green build block
** (Index: 101)
103. **Put the red cube in the center of the table** (Index: 102)
104. **Put the blue build block on the behind of the orange build block
** (Index: 103)
105. **Put the orange cube on the right of the yellow cube with the right gripper** (Index: 104)
106. **Put the red cube on the behind of the orange cube** (Index: 105)
107. **Put the blue cube and orange cube in the center of the table with the right gripper** (Index: 106)
108. **Put the green build block on the left of the blue build block
** (Index: 107)
109. **Put the right build block on the right of the yellow build block
** (Index: 108)
110. **Put the green build block on the right of the red build block
** (Index: 109)
111. **Put the yellow build block on the right of the red build block
** (Index: 110)
112. **Put the green build block on the left of the blue build block
** (Index: 111)
113. **Put the yellow build block on the behind of the red build block
** (Index: 112)
114. **Put the blue build block in the center of the table
** (Index: 113)
115. **Put the yellow build block on the right of the blue build block
** (Index: 114)
116. **Put the orange cube on the left of the green cube with the left gripper** (Index: 115)
117. **Put the yellow cube on the right of the blue cube with the right gripper** (Index: 116)
118. **Put the green build block on the behind of the yellow build block
** (Index: 117)
119. **Put the red cube on the right of the orange cube with the left gripper** (Index: 118)
120. **Put the green build block on the right of the yellow build block
** (Index: 119)
121. **Put the green build block on the right of the red build block
** (Index: 120)
122. **Put the green build block on the right of the orange build block
** (Index: 121)
123. **Put the yellow cube on the right of the green cube** (Index: 122)
124. **Put the yellow build block on the right of the orange build block
** (Index: 123)
125. **Put the orange build block on the green build block
** (Index: 124)
126. **Put the green cube on the front of the blue cube with the left gripper** (Index: 125)
127. **Put the green build block in the center of the table
** (Index: 126)
128. **Put the green cube in the center of the table** (Index: 127)
129. **Put the yellow cube and green cube in the center of the table with the right gripper** (Index: 128)
130. **Put the yellow cube and blue cube in the center of the table with the right gripper** (Index: 129)
131. **Put the red cube on the behind of the yellow cube** (Index: 130)
132. **Put the XX build block on the XX build block** (Index: 131)
133. **Put the orange cube on the right of the green cube with the right gripper** (Index: 132)
134. **Put the orange build block on the behind of the blue build block
** (Index: 133)
135. **Put the green build block on the behind of the yellow build block
** (Index: 134)
136. **Put the blue cube in the front of the green cube** (Index: 135)
137. **Put the green build block on the right of the orange build block
** (Index: 136)
138. **Put the blue build block on the right of the red build block
** (Index: 137)
139. **Put the red build block on the right of the orange build block
** (Index: 138)
140. **Put the blue build block on the behind of the green build block
** (Index: 139)
141. **Put the green build block on the right of the blue build block
** (Index: 140)
142. **
Put the yellow build block in the center of the table** (Index: 141)
143. **Put the orange build block on the behind of the red build block
** (Index: 142)
144. **Put the red cube and orange cube in the center of the table with the right gripper** (Index: 143)
145. **Put the orange build block on the behind of the green build block
** (Index: 144)
146. **Put the orange build block in the center of the table
** (Index: 145)
147. **Put the yellow cube in the center of the table** (Index: 146)
148. **Put the yellow build block on the behind of the green build block
** (Index: 147)
149. **Put the blue build block on the right of the green build block
** (Index: 148)
150. **Put the green cube on the right of the orange cube** (Index: 149)
151. **Adjust the position of the cube with the left gripper** (Index: 150)
152. **Put the green cube on the left of the yellow cube with the left gripper** (Index: 151)
153. **Put the green build block on the behind of the yellow build block
** (Index: 152)
154. **Put the orange build block on the right of the red build block
** (Index: 153)
155. **Put the red build block on the right of the yellow build block
** (Index: 154)
156. **Put the green build block on the red build block
** (Index: 155)
157. **Put the yellow cube on the behind of the blue cube with the left gripper** (Index: 156)
158. **Put the yellow build block on the behind of the red build block
** (Index: 157)
159. **Put the orange cube on the right of the red cube with the left gripper** (Index: 158)
160. **Adjust the pose of the building blocks** (Index: 159)
161. **Put the blue build block on the front of the green build block
** (Index: 160)
162. **Put the green cube on the right of the red cube with the right gripper** (Index: 161)
163. **Put theyellow build block on the behind of the blue build block
** (Index: 162)
164. **Put the red cube in the center of the table with the left gripper** (Index: 163)
165. **Put the red build block on the green build block
** (Index: 164)
166. **Put the yellow build block on the orange build block
** (Index: 165)
167. **Put the blue build block in the center of the table
** (Index: 166)
168. **Put the green build block on the right of the orange build block
** (Index: 167)
169. **Put the red build block on the right of the green build block
** (Index: 168)
170. **Put the red cube on the right of the orange cube** (Index: 169)
171. **Put the yellow cube on the left of the blue cube with the left gripper** (Index: 170)
172. **Put the red build block on the behind of the green build block
** (Index: 171)
173. **Put the yellow cube on the right of the green cube with the left gripper** (Index: 172)
174. **Put the green build block on the behind of the blue build block
** (Index: 173)
175. **Put the blue build block on the orange build block
** (Index: 174)
176. **Put the orange build block on the orange build block
** (Index: 175)
177. **Put the green build block on the orange build block
** (Index: 176)
178. **Put the yellow build block in the center of the table
** (Index: 177)
179. **Put the blue cube in the front of the yellow cube** (Index: 178)
180. **Put the red build block on the behind of the green build block
** (Index: 179)
181. **Put the blue build block on the behind of the green build block
** (Index: 180)
182. **Put the red cube and yellow cube in the center of the table with the right gripper** (Index: 181)
183. **Put the orange build block on the right of the yellow build block
** (Index: 182)
184. **Put the orange build block on the left of the red build block
** (Index: 183)
185. **Put the orange build block in the center of the table
** (Index: 184)
186. **Put the blue build block in the center of the table
** (Index: 185)
187. **Put the yellow build block on the right of the green build block
** (Index: 186)
188. **Put the orange build block in the center of the table
** (Index: 187)
189. **Put the red cube and green cube in the center of the table with the right gripper** (Index: 188)
190. **Put the blue build block on the right of the yellow build block
** (Index: 189)
191. **Put the orange build block on the behind of the blue build block
** (Index: 190)
192. **Put the orange build block on the right of the yellow build block
** (Index: 191)
193. **Put the blue cube on the left of the yellow cube with the left gripper** (Index: 192)
194. **Put the red cube on the right of the green cube with the right gripper** (Index: 193)
195. **Put the red build block on the behind of the green build block
** (Index: 194)
196. **Put the orange build block on the right of the red build block
** (Index: 195)
197. **Put the blue build block on the right of the yellow build block** (Index: 196)
198. **Put the green build block on the right of the yellow build block
** (Index: 197)
199. **Put the yellow cube and blue cube in the center of the table with the left gripper** (Index: 198)
200. **Put the yellow cube on the left of the orange cube with the right gripper** (Index: 199)
201. **Put the red cube in the front of the orange cube** (Index: 200)
202. **Put the yellow build block on the behind of the green build block
** (Index: 201)
203. **Put the blue build block in the center of the table
** (Index: 202)
204. **Put the green build block on the behind of the blue build block** (Index: 203)
205. **Put the orange cube on the left of the red cube with the right gripper** (Index: 204)
206. **Put the green cube and orange cube in the center of the table with the right gripper** (Index: 205)
207. **Grasp the yellow block with right gripper** (Index: 206)
208. **Put the orange build block on the green build block
** (Index: 207)
209. **Put the yellow build block on the front of the red build block
** (Index: 208)
210. **Put the orange cube on the right of the blue cube with the right gripper** (Index: 209)
211. **Put the green build block on the right of the yellow build block
** (Index: 210)
212. **Put the yellow cube on the left of the red cube with the right gripper** (Index: 211)
213. **Abnormal** (Index: 212)
214. **Put the red build block on the yellow build block
** (Index: 213)
215. **Put the blue cube on the behind of the orange cube** (Index: 214)
216. **Put the red build block on the right of the blue build block
** (Index: 215)
217. **Put the green cube in the center of the table with the left gripper** (Index: 216)
218. **Put the red build block on the front of the green build block
** (Index: 217)
219. **Put the yellow cube on the behind of the blue cube** (Index: 218)
220. **Put the blue build block on the left of the yellow build block
** (Index: 219)
221. **Put the orange cube on the left of the blue cube** (Index: 220)
222. **Put the orange build block on the front of the blue build block
** (Index: 221)
223. **Put the yellow cube in the front of the green cube** (Index: 222)
224. **Put the blue build block in the center of the table
** (Index: 223)
225. **Put the green cube in the front of the yellow cube** (Index: 224)
226. **Put the red cube and orange cube in the center of the table with the left gripper** (Index: 225)
227. **Put the yellow build block on the behind of the green build block** (Index: 226)
228. **Put the orange build block on the blue build block
** (Index: 227)
229. **Put the blue build block on the left of the yellow build block
** (Index: 228)
230. **Grasp the red block with left gripper** (Index: 229)
231. **Put the blue build block on the behind of the orange build block
** (Index: 230)
232. **Put the red build block on the right of the yellow build block
** (Index: 231)
233. **Put the red build block in the center of the table
** (Index: 232)
234. **Put the red build block on the right of the orange build block
** (Index: 233)
235. **Put the red build block on the behind of the yellow build block
** (Index: 234)
236. **Put the green build block on the right of the red build block
** (Index: 235)
237. **Put the blue build block on the behind of the green build block
** (Index: 236)
238. **Put the orange cube on the right of the red cube** (Index: 237)
239. **Put the red build block on the right of the green build block
** (Index: 238)
240. **Put the blue build block on the behind of the green build block
** (Index: 239)
241. **Put the green build block in the center of the table
** (Index: 240)
242. **Put the yellow cube on the right of the blue cube** (Index: 241)
243. **Put the yellow cube on the behind of the orange cube** (Index: 242)
244. **Put the yellow cube in the front of the orange cube** (Index: 243)
245. **Put the green build block on the red build block
** (Index: 244)
246. **Put the green cube on the right of the yellow cube** (Index: 245)
247. **Put the yellow build block on the right of the green build block
** (Index: 246)
248. **Put the red cube and blue cube in the center of the table with the left gripper** (Index: 247)
249. **Put the green build block on the left of the orange build block
** (Index: 248)
250. **Put the orange cube on the left of the blue cube with the right gripper** (Index: 249)
251. **Put the green build block on the blue build block
** (Index: 250)
252. **Put the green build block on the orange build block
** (Index: 251)
253. **Put the orange build block on the right of the blue build block
** (Index: 252)
254. **Put the orange build block on the right of the blue build block
** (Index: 253)
255. **Put the blue cube on the yellow cube** (Index: 254)
256. **Put the orange build block on the right of the green build block
** (Index: 255)
257. **Put the blue cube on the right of the orange cube with the right gripper** (Index: 256)
258. **Put the yellow cube on the right of the orange cube with the right gripper** (Index: 257)
259. **Put the red cube on the left of the orange cube with the left gripper** (Index: 258)
260. **Put the yellow build block on the behind of the green build block
** (Index: 259)
261. **Put the orange build block on the left of the red build block
** (Index: 260)
262. **Put the red build block on the front of the green build block
** (Index: 261)
263. **Put the blue cube on the right of the red cube with the right gripper** (Index: 262)
264. **Put the yellow build block on the behind of the red build block
** (Index: 263)
265. **Put the red build block on the behind of the yellow build block
** (Index: 264)
266. **Put the red build block on the behind of the blue build block
** (Index: 265)
267. **Put the yellow cube on the left of the green cube** (Index: 266)
268. **Put the blue build block on the right of the orange build block
** (Index: 267)
269. **Put the green cube on the right of the blue cube** (Index: 268)
270. **Put the red build block on the blue build block
** (Index: 269)
271. **Put the blue build block on the red build block
** (Index: 270)
272. **Put the orange cube in the front of the blue cube** (Index: 271)
273. **Put the red build block on the right of the blue build block
** (Index: 272)
274. **Put the blue build block on the right of the yellow build block** (Index: 273)
275. **Put the red build block on the right of the blue build block** (Index: 274)
276. **Put the green cube in the front of the blue cube** (Index: 275)
277. **Put the red cube in the front of the blue cube** (Index: 276)
278. **Put the blue cube on the right of the green cube with the left gripper** (Index: 277)
279. **Put the blue build block on the behind of the orange build block
** (Index: 278)
280. **Put the red build block in the center of the table
** (Index: 279)
281. **Put the green cube and orange cube in the center of the table with the left gripper** (Index: 280)
282. **Put the blue build block on the behind of the red build block
** (Index: 281)
283. **Put the blue cube on the right of the orange cube** (Index: 282)
284. **Put the blue build block on the right of the green build block
** (Index: 283)
285. **Put the red build block on the front of the blue build block
** (Index: 284)
286. **Static** (Index: 285)
287. **Put the red build block on the front of the yellow build block
** (Index: 286)
288. **Put the blue build block on the right of the yellow build block
** (Index: 287)
289. **Put the yellow cube in the front of the blue cube** (Index: 288)
290. **Put the yellow build block in the center of the table
** (Index: 289)
291. **Put the yellow build block on the behind of the red build block
** (Index: 290)
292. **Put the red cube on the right of the yellow cube** (Index: 291)
293. **Put the green build block on the behind of the red build block
** (Index: 292)
294. **Put the yellow build block on the right of the green build block
** (Index: 293)
295. **Put the yellow build block on the behind of the blue build block
** (Index: 294)
296. **Put the orange cube on the left of the red cube** (Index: 295)
297. **Put the yellow build block on the behind of the blue build block
** (Index: 296)
298. **Put the yellow build block on the right of the blue build block
** (Index: 297)
299. **Put the red build block in the center of the table
** (Index: 298)
300. **Put the green build block on the right of the blue build block
** (Index: 299)
301. **Put the green build block on the behind of the orange build block
** (Index: 300)
302. **Put the blue cube in the front of the orange cube** (Index: 301)
303. **Put the green cube on the right of the blue cube with the right gripper** (Index: 302)
304. **Put the green build block on the right of the red build block
** (Index: 303)
305. **Put the red build block on the behind of the green build block
** (Index: 304)
306. **Put the red build block on the behind of the yellow build block
** (Index: 305)
307. **Put the green build block in the center of the table
** (Index: 306)
308. **Put the yellow build block on the right of the blue build block
** (Index: 307)
309. **Put the orange build block on the behind of the blue build block
** (Index: 308)
310. **Put the green build block on the right of the yellow build block
** (Index: 309)
311. **Put the orange build block in the center of the table
** (Index: 310)
312. **Put the red cube on the right of the blue cube** (Index: 311)
313. **Put the green build block on the behind of the orange build block
** (Index: 312)
314. **Put the blue build block on the right of the orange build block** (Index: 313)
315. **Put the orange cube on the behind of the yellow cube with the left gripper** (Index: 314)
316. **Put the orange cube in the front of the yellow cube** (Index: 315)
317. **Put the yellow build block on the right of the orange build block
** (Index: 316)
318. **Put the orange build block on the front of the blue build block
** (Index: 317)
319. **Put the yellow cube on the behind of the green cube with the left gripper** (Index: 318)
320. **Put the red cube on the left of the blue cube** (Index: 319)
321. **Put the blue cube on the behind of the green cube** (Index: 320)
322. **Put the blue cube on the right of the green cube with the right gripper** (Index: 321)
323. **Put the green build block on the right of the orange build block
** (Index: 322)
324. **Put the red build block on the right of the blue build block
** (Index: 323)
325. **Put the red cube on the left of the green cube with the right gripper** (Index: 324)
326. **Put the blue build block on the right of the orange build block
** (Index: 325)
327. **Put the yellow build block on the behind of the blue build block
** (Index: 326)
328. **Put the yellow cube on the left of the orange cube** (Index: 327)
329. **Put the orange cube in the center of the table** (Index: 328)
330. **Put the blue cube on the right of the red cube** (Index: 329)
331. **Put the blue build block on the right of the yellow build block
** (Index: 330)
332. **Put the orange build block on the right of the green build block
** (Index: 331)
333. **Put the green build block in the center of the table
** (Index: 332)
334. **Put the red cube in the front of the green cube** (Index: 333)
335. **Put the green build block on the behind of the yellow build block
** (Index: 334)
336. **Put the yellow cube on the right of the green cube with the right gripper** (Index: 335)
337. **Put the orange build block on the behind of the yellow build block
** (Index: 336)
338. **Put the green build block on the behind of the blue build block
** (Index: 337)
339. **
Put the yellow build block on the behind of the green build block
** (Index: 338)
340. **Put the green build block on the behind of the yellow build block
** (Index: 339)
341. **Put the orange build block on the behind of the blue build block
** (Index: 340)
342. **Put the red cube on the right of the yellow cube with the right gripper** (Index: 341)
343. **Put the blue cube on the right of the yellow cube** (Index: 342)
344. **Put the green build block in the center of the table** (Index: 343)
345. **Put the green build block on the right of the red build block
** (Index: 344)
346. **Put the green cube on the right of the yellow cube with the right gripper** (Index: 345)
347. **Put the red build block on the front of the yellow build block
** (Index: 346)
348. **Put the green build block in the center of the table
** (Index: 347)
349. **Put the green build block on the blue build block
** (Index: 348)
350. **Put the green build block on the blue build block
** (Index: 349)
351. **Put the blue cube in the front of the red cube** (Index: 350)
352. **Put the orange build block on the left of the red build block
** (Index: 351)
353. **Put the yellow cube on the right of the red cube with the right gripper** (Index: 352)
354. **Put the yellow build block on the right of the orange build block
** (Index: 353)
355. **Grasp the green block with right gripper** (Index: 354)
356. **Put the blue build block on the behind of the orange build block
** (Index: 355)
357. **Put the orange build block on the right of the blue build block
** (Index: 356)
358. **Put the blue build block on the right of the orange build block
** (Index: 357)
359. **Put the red cube on the left of the yellow cube with the right gripper** (Index: 358)
360. **Put the orange build block on the right of the blue build block
** (Index: 359)
361. **Put the blue cube on the left of the red cube** (Index: 360)
362. **Put the orange build block on the right of the build block
** (Index: 361)
363. **Put the orange build block on the right of the yellow build block
** (Index: 362)
364. **Put the orange cube in the front of the red cube** (Index: 363)
365. **Put the red cube in the front of the yellow cube** (Index: 364)
366. **Put the yellow cube on the left of the green cube with the left gripper** (Index: 365)
367. **Put the red cube on the right of the blue cube with the right gripper** (Index: 366)
368. **Put the green build block on the right of the orange build block
** (Index: 367)
369. **Put the red cube on the behind of the blue cube** (Index: 368)
370. **Put the yellow build block in the center of the table
** (Index: 369)
371. **Put the yellow cube on the orange cube** (Index: 370)
372. **Put the blue build block in the center of the table
** (Index: 371)
373. **Put the blue cube on the left of the red cube with the left gripper** (Index: 372)
374. **Put the blue build block on the behind of the yellow build block
** (Index: 373)
375. **Put the green build block on the right of the orange build block
** (Index: 374)
376. **Put the yellow cube in the front of the red cube** (Index: 375)
377. **Put the yellow build block on the behind of the green build block
** (Index: 376)
378. **Put the orange cube on the right of the red cube with the right gripper** (Index: 377)
379. **Put the orange cube on the front of the blue cube with the right gripper** (Index: 378)
380. **End** (Index: 379)
381. **Put the green cube on the behind of the blue cube** (Index: 380)
382. **Put blue the build block on the right of the red build block
** (Index: 381)
383. **Put the blue cube on the left of the red cube with the right gripper** (Index: 382)
384. **null** (Index: 383)
### Atomic Actions
- `grasp`
- `lift`
- `lower`
## Hardware and Sensors
### Sensors
- `cam_head_rgb`
- `cam_left_wrist_rgb`
- `cam_right_wrist_rgb`
### Camera Information
- `cam_head_rgb`: dtype=video, shape=480x640x3, resolution=640x480, codec=av1, pix_fmt=yuv420p
- `cam_left_wrist_rgb`: dtype=video, shape=480x640x3, resolution=640x480, codec=av1, pix_fmt=yuv420p
- `cam_right_wrist_rgb`: dtype=video, shape=480x640x3, resolution=640x480, codec=av1, pix_fmt=yuv420p
### Coordinate System
- **Definition:** `right-hand-frame`
### Dimensions & Units
- **Joint Rotation:** `radian`
- **End-Effector Rotation:** `radian`
- **End-Effector Translation:** `meter`
## Dataset Statistics
| Metric | Value |
|--------|-------|
| **Total Episodes** | 672 |
| **Total Frames** | 643028 |
| **Total Tasks** | 384 |
| **Total Videos** | 2016 |
| **Total Chunks** | 1 |
| **Chunk Size** | 1000 |
| **FPS** | 30 |
| **State Dimensions** | 26 |
| **Action Dimensions** | 26 |
| **Camera Views** | 3 |
| **Dataset Size** | 3.97 GB |
## Data Splits
The dataset is organized into the following splits:
- **Training**: Episodes 0:671
## Dataset Structure
This dataset follows the LeRobot format and contains the following components:
### Data Files
- **Videos**: Compressed video files containing RGB camera observations
- **State Data**: Robot joint positions, velocities, and other state information
- **Action Data**: Robot action commands and trajectories
- **Metadata**: Episode metadata, timestamps, and annotations
### File Organization
- **Data Path Pattern**: `data/chunk-{id}/episode_{id}.parquet`
- **Video Path Pattern**: `videos/chunk-{id}/observation.images.cam_left_wrist_rgb/episode_{id}.mp{id}`
- **Chunking**: Data is organized into 1 chunk(s)
of size 1000
### Data Structure (Tree)
```
Agilex_Cobot_Magic_Agilex_Cobot_Magic_stack_block_qced_hardlink/
|-- annotations
| |-- eef_acc_mag_annotation.jsonl
| |-- eef_direction_annotation.jsonl
| |-- eef_velocity_annotation.jsonl
| |-- gripper_activity_annotation.jsonl
| |-- gripper_mode_annotation.jsonl
| |-- scene_annotations.jsonl
| `-- subtask_annotations.jsonl
|-- data
| `-- chunk-000
| |-- episode_000000.parquet
| |-- episode_000001.parquet
| |-- episode_000002.parquet
| |-- episode_000003.parquet
| |-- episode_000004.parquet
| |-- episode_000005.parquet
| |-- episode_000006.parquet
| |-- episode_000007.parquet
| |-- episode_000008.parquet
| |-- episode_000009.parquet
| |-- episode_000010.parquet
| `-- episode_000011.parquet
| `-- ... (660 more entries)
|-- meta
| |-- episodes.jsonl
| |-- episodes_stats.jsonl
| |-- info.json
| `-- tasks.jsonl
`-- videos
`-- chunk-000
|-- observation.images.cam_head_rgb
|-- observation.images.cam_left_wrist_rgb
`-- observation.images.cam_right_wrist_rgb
```
## Camera Views
This dataset includes 3 camera views: `cam_head_rgb`, `cam_left_wrist_rgb`, `cam_right_wrist_rgb`.
## Features (Full YAML)
```yaml
observation.images.cam_head_rgb:
dtype: video
shape:
- 480
- 640
- 3
names:
- height
- width
- channels
info:
video.height: 480
video.width: 640
video.codec: av1
video.pix_fmt: yuv420p
video.is_depth_map: false
video.fps: 30
video.channels: 3
has_audio: false
observation.images.cam_left_wrist_rgb:
dtype: video
shape:
- 480
- 640
- 3
names:
- height
- width
- channels
info:
video.height: 480
video.width: 640
video.codec: av1
video.pix_fmt: yuv420p
video.is_depth_map: false
video.fps: 30
video.channels: 3
has_audio: false
observation.images.cam_right_wrist_rgb:
dtype: video
shape:
- 480
- 640
- 3
names:
- height
- width
- channels
info:
video.height: 480
video.width: 640
video.codec: av1
video.pix_fmt: yuv420p
video.is_depth_map: false
video.fps: 30
video.channels: 3
has_audio: false
observation.state:
dtype: float32
shape:
- 26
names:
- left_arm_joint_1_rad
- left_arm_joint_2_rad
- left_arm_joint_3_rad
- left_arm_joint_4_rad
- left_arm_joint_5_rad
- left_arm_joint_6_rad
- left_gripper_open
- left_eef_pos_x_m
- left_eef_pos_y_m
- left_eef_pos_z_m
- left_eef_rot_euler_x_rad
- left_eef_rot_euler_y_rad
- left_eef_rot_euler_z_rad
- right_arm_joint_1_rad
- right_arm_joint_2_rad
- right_arm_joint_3_rad
- right_arm_joint_4_rad
- right_arm_joint_5_rad
- right_arm_joint_6_rad
- right_gripper_open
- right_eef_pos_x_m
- right_eef_pos_y_m
- right_eef_pos_z_m
- right_eef_rot_euler_x_rad
- right_eef_rot_euler_y_rad
- right_eef_rot_euler_z_rad
action:
dtype: float32
shape:
- 26
names:
- left_arm_joint_1_rad
- left_arm_joint_2_rad
- left_arm_joint_3_rad
- left_arm_joint_4_rad
- left_arm_joint_5_rad
- left_arm_joint_6_rad
- left_gripper_open
- left_eef_pos_x_m
- left_eef_pos_y_m
- left_eef_pos_z_m
- left_eef_rot_euler_x_rad
- left_eef_rot_euler_y_rad
- left_eef_rot_euler_z_rad
- right_arm_joint_1_rad
- right_arm_joint_2_rad
- right_arm_joint_3_rad
- right_arm_joint_4_rad
- right_arm_joint_5_rad
- right_arm_joint_6_rad
- right_gripper_open
- right_eef_pos_x_m
- right_eef_pos_y_m
- right_eef_pos_z_m
- right_eef_rot_euler_x_rad
- right_eef_rot_euler_y_rad
- right_eef_rot_euler_z_rad
timestamp:
dtype: float32
shape:
- 1
names: null
frame_index:
dtype: int64
shape:
- 1
names: null
episode_index:
dtype: int64
shape:
- 1
names: null
index:
dtype: int64
shape:
- 1
names: null
task_index:
dtype: int64
shape:
- 1
names: null
subtask_annotation:
names: null
dtype: int32
shape:
- 5
scene_annotation:
names: null
dtype: int32
shape:
- 1
eef_sim_pose_state:
names:
- left_eef_pos_x
- left_eef_pos_y
- left_eef_pos_z
- left_eef_rot_x
- left_eef_rot_y
- left_eef_rot_z
- right_eef_pos_x
- right_eef_pos_y
- right_eef_pos_z
- right_eef_rot_x
- right_eef_rot_y
- right_eef_rot_z
dtype: float32
shape:
- 12
eef_sim_pose_action:
names:
- left_eef_pos_x
- left_eef_pos_y
- left_eef_pos_z
- left_eef_rot_x
- left_eef_rot_y
- left_eef_rot_z
- right_eef_pos_x
- right_eef_pos_y
- right_eef_pos_z
- right_eef_rot_x
- right_eef_rot_y
- right_eef_rot_z
dtype: float32
shape:
- 12
eef_direction_state:
names:
- left_eef_direction
- right_eef_direction
dtype: int32
shape:
- 2
eef_direction_action:
names:
- left_eef_direction
- right_eef_direction
dtype: int32
shape:
- 2
eef_velocity_state:
names:
- left_eef_velocity
- right_eef_velocity
dtype: int32
shape:
- 2
eef_velocity_action:
names:
- left_eef_velocity
- right_eef_velocity
dtype: int32
shape:
- 2
eef_acc_mag_state:
names:
- left_eef_acc_mag
- right_eef_acc_mag
dtype: int32
shape:
- 2
eef_acc_mag_action:
names:
- left_eef_acc_mag
- right_eef_acc_mag
dtype: int32
shape:
- 2
gripper_mode_state:
names:
- left_gripper_mode
- right_gripper_mode
dtype: int32
shape:
- 2
gripper_mode_action:
names:
- left_gripper_mode
- right_gripper_mode
dtype: int32
shape:
- 2
gripper_activity_state:
names:
- left_gripper_activity
- right_gripper_activity
dtype: int32
shape:
- 2
gripper_activity_action:
names:
- left_gripper_activity
- right_gripper_activity
dtype: int32
shape:
- 2
gripper_open_scale_state:
names:
- left_gripper_open_scale
- right_gripper_open_scale
dtype: float32
shape:
- 2
gripper_open_scale_action:
names:
- left_gripper_open_scale
- right_gripper_open_scale
dtype: float32
shape:
- 2
```
## Available Annotations
This dataset includes rich annotations to support diverse learning approaches:
- `eef_acc_mag_annotation.jsonl`
- `eef_direction_annotation.jsonl`
- `eef_velocity_annotation.jsonl`
- `gripper_activity_annotation.jsonl`
- `gripper_mode_annotation.jsonl`
- `scene_annotations.jsonl`
- `subtask_annotations.jsonl`
## Dataset Tags
- `RoboCOIN`
- `LeRobot`
## Authors
### Contributors
This dataset is contributed by:-RoboCOIN Team at Beijing Academy of Artificial Intelligence (BAAI)
### Annotators
No annotator information available.
## Links
- **Homepage:** [https://flagopen.github.io/RoboCOIN/](https://flagopen.github.io/RoboCOIN/)
- **Paper:** [https://arxiv.org/abs/2511.17441](https://arxiv.org/abs/2511.17441)
- **Repository:** [https://github.com/FlagOpen/RoboCOIN](https://github.com/FlagOpen/RoboCOIN)
## Contact and Support
For questions, issues, or feedback regarding this dataset, please contact us.
### Support
For technical support, please open an issue on our GitHub repository.
## License
apache-2.0
## Citation
If you use this dataset in your research, please cite:
```bibtex
@article{robocoin,
title={RoboCOIN: An Open-Sourced Bimanual Robotic Data Collection for Integrated Manipulation},
author={Shihan Wu, Xuecheng Liu, Shaoxuan Xie, Pengwei Wang, Xinghang Li, Bowen Yang, Zhe Li, Kai Zhu, Hongyu Wu, Yiheng Liu, Zhaoye Long, Yue Wang, Chong Liu, Dihan Wang, Ziqiang Ni, Xiang Yang, You Liu, Ruoxuan Feng, Runtian Xu, Lei Zhang, Denghang Huang, Chenghao Jin, Anlan Yin, Xinlong Wang, Zhenguo Sun, Junkai Zhao, Mengfei Du, Mingyu Cao, Xiansheng Chen, Hongyang Cheng, Xiaojie Zhang, Yankai Fu, Ning Chen, Cheng Chi, Sixiang Chen, Huaihai Lyu, Xiaoshuai Hao, Yequan Wang, Bo Lei, Dong Liu, Xi Yang, Yance Jiao, Tengfei Pan, Yunyan Zhang, Songjing Wang, Ziqian Zhang, Xu Liu, Ji Zhang, Caowei Meng, Zhizheng Zhang, Jiyang Gao, Song Wang, Xiaokun Leng, Zhiqiang Xie, Zhenzhen Zhou, Peng Huang, Wu Yang, Yandong Guo, Yichao Zhu, Suibing Zheng, Hao Cheng, Xinmin Ding, Yang Yue, Huanqian Wang, Chi Chen, Jingrui Pang, YuXi Qian, Haoran Geng, Lianli Gao, Haiyuan Li, Bin Fang, Gao Huang, Yaodong Yang, Hao Dong, He Wang, Hang Zhao, Yadong Mu, Di Hu, Hao Zhao, Tiejun Huang, Shanghang Zhang, Yonghua Lin, Zhongyuan Wang and Guocai Yao},
journal={arXiv preprint arXiv:2511.17441},
url = {https://arxiv.org/abs/2511.17441},
year={2025},
}
```
### Additional References
If you use this dataset, please also consider citing:
LeRobot Framework: https://github.com/huggingface/lerobot
## Version Information
Initial Release
|