-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdata.json
More file actions
1361 lines (1361 loc) · 44.4 KB
/
Copy pathdata.json
File metadata and controls
1361 lines (1361 loc) · 44.4 KB
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
{
"metadata": {
"last_updated": "2026-06-29",
"total_models": 15,
"total_datasets": 11,
"total_tools": 9,
"total_orgs": 31
},
"models": [
{
"id": "lerobot",
"name": "LeRobot",
"org": "Hugging Face",
"year": 2024,
"description_en": "End-to-end learning for real-world robotics. Provides datasets, pretrained models, and training code for manipulation tasks.",
"description_ko": "실제 로봇을 위한 엔드-투-엔드 학습 프레임워크. 조작 태스크를 위한 데이터셋, 사전학습 모델, 학습 코드를 제공합니다.",
"github_url": "https://github.com/huggingface/lerobot",
"paper_url": "https://arxiv.org/abs/2408.01730",
"hf_url": "https://huggingface.co/lerobot",
"project_url": "",
"categories": [
"manipulation"
],
"hardware": [
"manipulator"
],
"learning": [
"IL",
"diffusion",
"VLA"
],
"framework": [
"pytorch"
],
"communication": [],
"stats": {
"github_stars": 24952,
"github_forks": 4804,
"hf_downloads": 0,
"last_updated": "2026-06-14"
},
"added_date": "2024-06-01",
"tags": [
"imitation-learning",
"diffusion-policy",
"act"
]
},
{
"id": "pi0",
"name": "π0 (pi-zero)",
"org": "Physical Intelligence",
"year": 2024,
"description_en": "A generalist robot foundation model based on a flow-matching policy. Supports dexterous manipulation and whole-body control.",
"description_ko": "플로우 매칭 정책 기반의 범용 로봇 파운데이션 모델. 정교한 조작과 전신 제어를 지원합니다.",
"github_url": "https://github.com/Physical-Intelligence/openpi",
"paper_url": "https://arxiv.org/abs/2410.24164",
"hf_url": "https://huggingface.co/physical-intelligence/pi0",
"project_url": "https://www.physicalintelligence.company/blog/pi0",
"categories": [
"manipulation",
"whole-body"
],
"hardware": [
"manipulator",
"humanoid"
],
"learning": [
"VLA",
"diffusion"
],
"framework": [
"jax",
"pytorch"
],
"communication": [],
"stats": {
"github_stars": 12331,
"github_forks": 2066,
"hf_downloads": 0,
"last_updated": "2026-06-14"
},
"added_date": "2024-10-31",
"tags": [
"foundation-model",
"flow-matching",
"dexterous",
"open-weights"
]
},
{
"id": "openvla",
"name": "OpenVLA",
"org": "Stanford / UC Berkeley",
"year": 2024,
"description_en": "An open-source Vision-Language-Action model fine-tuned from Prismatic VLM on the Open X-Embodiment dataset.",
"description_ko": "Open X-Embodiment 데이터셋으로 Prismatic VLM을 파인튜닝한 오픈소스 Vision-Language-Action 모델.",
"github_url": "https://github.com/openvla/openvla",
"paper_url": "https://arxiv.org/abs/2406.09246",
"hf_url": "https://huggingface.co/openvla/openvla-7b",
"project_url": "https://openvla.github.io",
"categories": [
"manipulation"
],
"hardware": [
"manipulator"
],
"learning": [
"VLA"
],
"framework": [
"pytorch"
],
"communication": [],
"stats": {
"github_stars": 6421,
"github_forks": 756,
"hf_downloads": 1198411,
"last_updated": "2026-06-14"
},
"added_date": "2024-06-13",
"tags": [
"VLA",
"7B",
"prismatic"
]
},
{
"id": "octo",
"name": "Octo",
"org": "UC Berkeley / Stanford / CMU / others",
"year": 2023,
"description_en": "A transformer-based robot policy pretrained on 800k+ robot trajectories. Supports diverse robot morphologies via tokenized observations.",
"description_ko": "80만 개 이상의 로봇 궤적으로 사전학습된 트랜스포머 기반 로봇 정책. 토큰화된 관측을 통해 다양한 로봇 형태를 지원합니다.",
"github_url": "https://github.com/octo-models/octo",
"paper_url": "https://arxiv.org/abs/2405.12213",
"hf_url": "https://huggingface.co/rail-berkeley/octo-base",
"project_url": "https://octo-models.github.io",
"categories": [
"manipulation"
],
"hardware": [
"manipulator",
"mobile"
],
"learning": [
"IL",
"VLA"
],
"framework": [
"jax"
],
"communication": [],
"stats": {
"github_stars": 1669,
"github_forks": 268,
"hf_downloads": 48,
"last_updated": "2026-06-14"
},
"added_date": "2023-10-01",
"tags": [
"generalist",
"transformer",
"multi-robot"
]
},
{
"id": "act",
"name": "ACT (Action Chunking with Transformers)",
"org": "Stanford",
"year": 2023,
"description_en": "Imitation learning with action chunking. Achieves dexterous bimanual manipulation from 50 demonstrations using a CVAE-based transformer.",
"description_ko": "액션 청킹을 활용한 모방 학습. CVAE 기반 트랜스포머로 50개의 시연만으로 정교한 양팔 조작을 달성합니다.",
"github_url": "https://github.com/tonyzhaozh/act",
"paper_url": "https://arxiv.org/abs/2304.13705",
"hf_url": "",
"project_url": "https://tonyzhaozh.github.io/aloha/",
"categories": [
"manipulation",
"dexterous"
],
"hardware": [
"manipulator"
],
"learning": [
"IL"
],
"framework": [
"pytorch"
],
"communication": [
"ros2"
],
"stats": {
"github_stars": 2001,
"github_forks": 388,
"hf_downloads": 0,
"last_updated": "2026-06-14"
},
"added_date": "2023-04-01",
"tags": [
"ALOHA",
"bimanual",
"CVAE",
"imitation-learning"
]
},
{
"id": "diffusion-policy",
"name": "Diffusion Policy",
"org": "Columbia University",
"year": 2023,
"description_en": "Visuomotor policy learning via conditional denoising diffusion. Achieves state-of-the-art performance on 11 robotic manipulation tasks.",
"description_ko": "조건부 노이즈 제거 확산을 통한 시각운동 정책 학습. 11개의 로봇 조작 태스크에서 최고 성능을 달성합니다.",
"github_url": "https://github.com/real-stanford/diffusion_policy",
"paper_url": "https://arxiv.org/abs/2303.04137",
"hf_url": "",
"project_url": "https://diffusion-policy.cs.columbia.edu",
"categories": [
"manipulation"
],
"hardware": [
"manipulator"
],
"learning": [
"IL",
"diffusion"
],
"framework": [
"pytorch"
],
"communication": [],
"stats": {
"github_stars": 4270,
"github_forks": 782,
"hf_downloads": 0,
"last_updated": "2026-06-14"
},
"added_date": "2023-03-07",
"tags": [
"diffusion",
"visuomotor",
"score-matching"
]
},
{
"id": "mobile-aloha",
"name": "Mobile ALOHA",
"org": "Stanford",
"year": 2024,
"description_en": "Whole-body teleoperation and imitation learning for mobile manipulation. Extends ALOHA with a mobile base for household tasks.",
"description_ko": "모바일 조작을 위한 전신 원격 조작 및 모방 학습. ALOHA를 모바일 베이스로 확장하여 가정용 태스크를 수행합니다.",
"github_url": "https://github.com/MarkFzp/mobile-aloha",
"paper_url": "https://arxiv.org/abs/2401.02117",
"hf_url": "",
"project_url": "https://mobile-aloha.github.io",
"categories": [
"manipulation",
"navigation",
"whole-body"
],
"hardware": [
"mobile",
"manipulator"
],
"learning": [
"IL"
],
"framework": [
"pytorch"
],
"communication": [
"ros2"
],
"stats": {
"github_stars": 4439,
"github_forks": 730,
"hf_downloads": 0,
"last_updated": "2026-06-14"
},
"added_date": "2024-01-04",
"tags": [
"mobile-manipulation",
"household",
"teleoperation"
]
},
{
"id": "humanplus",
"name": "HumanPlus",
"org": "Stanford",
"year": 2024,
"description_en": "Humanoid shadowing and imitation from human video. A humanoid robot that learns to shadow humans and imitate skills from egocentric video.",
"description_ko": "인간 영상으로부터의 휴머노이드 섀도잉 및 모방 학습. 자아중심 비디오에서 기술을 모방하는 휴머노이드 로봇입니다.",
"github_url": "https://github.com/MarkFzp/humanplus",
"paper_url": "https://arxiv.org/abs/2406.10454",
"hf_url": "",
"project_url": "https://humanoid-ai.github.io",
"categories": [
"manipulation",
"whole-body"
],
"hardware": [
"humanoid"
],
"learning": [
"IL"
],
"framework": [
"pytorch"
],
"communication": [
"ros2"
],
"stats": {
"github_stars": 849,
"github_forks": 122,
"hf_downloads": 0,
"last_updated": "2026-06-14"
},
"added_date": "2024-06-14",
"tags": [
"humanoid",
"shadowing",
"egocentric"
]
},
{
"id": "groot",
"name": "GR00T N1",
"org": "NVIDIA",
"year": 2025,
"description_en": "NVIDIA's humanoid foundation model with cross-embodiment generalization. Combines vision-language understanding with action generation.",
"description_ko": "NVIDIA의 교차 구현 일반화 기능을 갖춘 휴머노이드 파운데이션 모델. 비전-언어 이해와 행동 생성을 결합합니다.",
"github_url": "https://github.com/NVIDIA/Isaac-GR00T",
"paper_url": "https://arxiv.org/abs/2503.14734",
"hf_url": "https://huggingface.co/nvidia/GR00T-N1-2B",
"project_url": "https://developer.nvidia.com/isaac/gr00t",
"categories": [
"manipulation",
"whole-body"
],
"hardware": [
"humanoid"
],
"learning": [
"VLA",
"IL"
],
"framework": [
"pytorch"
],
"communication": [
"ros2"
],
"stats": {
"github_stars": 7335,
"github_forks": 1255,
"hf_downloads": 144,
"last_updated": "2026-06-14"
},
"added_date": "2025-03-19",
"tags": [
"humanoid",
"foundation-model",
"NVIDIA",
"cross-embodiment"
]
},
{
"id": "roboflamingo",
"name": "RoboFlamingo",
"org": "ByteDance",
"year": 2023,
"description_en": "A vision-language manipulation policy that fine-tunes OpenFlamingo for robotic control on the CALVIN benchmark.",
"description_ko": "CALVIN 벤치마크에서 로봇 제어를 위해 OpenFlamingo를 파인튜닝한 비전-언어 조작 정책.",
"github_url": "https://github.com/RoboFlamingo/RoboFlamingo",
"paper_url": "https://arxiv.org/abs/2311.01378",
"hf_url": "",
"project_url": "",
"categories": [
"manipulation"
],
"hardware": [
"manipulator"
],
"learning": [
"VLA"
],
"framework": [
"pytorch"
],
"communication": [],
"stats": {
"github_stars": 434,
"github_forks": 37,
"hf_downloads": 0,
"last_updated": "2026-06-14"
},
"added_date": "2023-11-02",
"tags": [
"VLA",
"CALVIN",
"OpenFlamingo"
]
},
{
"id": "gr1",
"name": "GR-1",
"org": "BAAI / Beijing Academy of AI",
"year": 2024,
"description_en": "Unleashing Large-Scale Video Generative Pre-Training for Visual Robot Manipulation. GPT-style pre-training on video then fine-tuned for robot control.",
"description_ko": "시각 로봇 조작을 위한 대규모 비디오 생성 사전학습. 비디오에서 GPT 스타일 사전학습 후 로봇 제어로 파인튜닝.",
"github_url": "https://github.com/bytedance/GR-1",
"paper_url": "https://arxiv.org/abs/2312.13139",
"hf_url": "",
"project_url": "https://gr1-manipulation.github.io",
"categories": [
"manipulation"
],
"hardware": [
"manipulator"
],
"learning": [
"VLA",
"IL"
],
"framework": [
"pytorch"
],
"communication": [],
"stats": {
"github_stars": 312,
"github_forks": 15,
"hf_downloads": 0,
"last_updated": "2026-06-14"
},
"added_date": "2024-01-01",
"tags": [
"video-pretraining",
"GPT",
"manipulation"
]
},
{
"id": "crossformer",
"name": "CrossFormer",
"org": "UC Berkeley / others",
"year": 2024,
"description_en": "A cross-embodiment transformer robot policy trained on 900k diverse robot trajectories. Flexible architecture for heterogeneous robots.",
"description_ko": "90만 개의 다양한 로봇 궤적으로 학습된 교차 구현 트랜스포머 로봇 정책. 이기종 로봇을 위한 유연한 아키텍처.",
"github_url": "https://github.com/rail-berkeley/crossformer",
"paper_url": "https://arxiv.org/abs/2408.11812",
"hf_url": "https://huggingface.co/rail-berkeley/crossformer",
"project_url": "https://crossformer-model.github.io",
"categories": [
"manipulation"
],
"hardware": [
"manipulator",
"mobile"
],
"learning": [
"IL",
"VLA"
],
"framework": [
"jax"
],
"communication": [],
"stats": {
"github_stars": 283,
"github_forks": 37,
"hf_downloads": 12,
"last_updated": "2026-06-14"
},
"added_date": "2024-08-21",
"tags": [
"cross-embodiment",
"generalist",
"transformer"
]
},
{
"id": "robovlms",
"name": "RoboVLMs",
"org": "Multiple",
"year": 2025,
"description_en": "A systematically optimized VLA framework for generalist robots. It easily transfers various foundation VLMs into robust control policies with minimal manual design and supports cross-embodiment data integration.",
"description_ko": "범용 로봇을 위해 체계적으로 최적화된 VLA 프레임워크. 최소한의 설계로 다양한 파운데이션 VLM을 강건한 로봇 제어 정책으로 전환하며, 다기종 로봇 데이터 통합을 지원합니다.",
"github_url": "https://github.com/Robot-VLAs/RoboVLMs",
"paper_url": "https://arxiv.org/abs/2412.14058",
"hf_url": "https://huggingface.co/robovlms/RoboVLMs",
"project_url": "https://robovlms.github.io/",
"categories": [
"manipulation"
],
"hardware": [
"manipulator"
],
"learning": [
"VLA",
"IL"
],
"framework": [
"pytorch"
],
"communication": [],
"stats": {
"github_stars": 473,
"github_forks": 21,
"hf_downloads": 0,
"last_updated": "2026-06-14"
},
"added_date": "2026-05-17",
"tags": []
},
{
"id": "cogact",
"name": "CogACT",
"org": "Tsinghua University / Microsoft Research Asia",
"year": 2024,
"description_en": "CogACT is a componentized Vision-Language-Action architecture that decouples cognition from action. It utilizes powerful Vision-Language Models to extract cognitive features, which then condition a specialized Diffusion Transformer-based action module to predict continuous, temporally-correlated robotic action sequences.",
"description_ko": "CogACT는 기존의 단일 신경망 모델들과 달리 인지와 행동을 명확히 분리한 컴포넌트형 비전-언어-행동 모델입니다. 강력한 비전-언어 모델을 통해 인지적 특징을 추출하고, 이를 조건으로 특화된 Diffusion Transformer 기반의 행동 모델이 복잡하고 연속적인 로봇의 물리적 제어 궤적을 예측합니다.",
"github_url": "https://github.com/microsoft/CogACT",
"paper_url": "https://cogact.github.io/CogACT_paper.pdf",
"hf_url": "https://huggingface.co/CogACT",
"project_url": "https://cogact.github.io/",
"categories": [
"manipulation"
],
"hardware": [
"manipulator"
],
"learning": [
"VLA",
"diffusion"
],
"framework": [
"pytorch"
],
"communication": [
"other"
],
"stats": {
"github_stars": 0,
"github_forks": 0,
"hf_downloads": 0,
"last_updated": "2026-06-21"
},
"added_date": "2026-06-21",
"tags": [
"VLA",
"diffusion",
"foundation-model"
]
},
{
"id": "robomamba",
"name": "RoboMamba",
"org": "Peking University / AI2Robotics",
"year": 2024,
"description_en": "RoboMamba is an efficient end-to-end Vision-Language-Action model that leverages the Mamba state space model for robotic reasoning and manipulation with linear inference complexity. It integrates a vision encoder with Mamba, aligning visual tokens with language embeddings, and uses a lightweight policy head for SE(3) pose prediction. RoboMamba achieves 3x faster inference than existing VLA models while maintaining competitive reasoning and manipulation performance.",
"description_ko": "RoboMamba는 Mamba 상태 공간 모델을 활용하여 선형 추론 복잡도로 로봇 추론과 조작을 수행하는 효율적인 엔드투엔드 VLA 모델입니다. 비전 인코더와 Mamba를 통합하여 시각 토큰을 언어 임베딩과 정렬하고, 경량 정책 헤드로 SE(3) 포즈 예측을 수행합니다. 기존 VLA 모델 대비 3배 빠른 추론 속도를 달성하면서도 경쟁력 있는 추론 및 조작 성능을 보여줍니다.",
"github_url": "https://github.com/lmzpai/roboMamba",
"paper_url": "https://arxiv.org/abs/2406.04339",
"hf_url": "",
"project_url": "https://sites.google.com/view/robomamba-web",
"categories": [
"manipulation"
],
"hardware": [
"manipulator"
],
"learning": [
"VLA",
"IL"
],
"framework": [
"pytorch"
],
"communication": [
"other"
],
"stats": {
"github_stars": 0,
"github_forks": 0,
"hf_downloads": 0,
"last_updated": "2026-06-29"
},
"added_date": "2026-06-29",
"tags": [
"VLA",
"mamba",
"state-space-model"
]
}
],
"datasets": [
{
"id": "open-x-embodiment",
"name": "Open X-Embodiment (OXE)",
"org": "Google DeepMind / RT-X Team",
"year": 2023,
"description_en": "A large-scale robot learning dataset aggregating 22 robot embodiments, 527 skills, and 1M+ robot trajectories from 21 institutions.",
"description_ko": "21개 기관의 22개 로봇 구현체, 527개 기술, 100만 개 이상의 로봇 궤적을 통합한 대규모 로봇 학습 데이터셋.",
"github_url": "https://github.com/google-deepmind/open_x_embodiment",
"paper_url": "https://arxiv.org/abs/2310.08864",
"hf_url": "https://huggingface.co/datasets/jxu124/OpenX-Embodiment",
"project_url": "https://robotics-transformer-x.github.io",
"categories": [
"manipulation"
],
"hardware": [
"manipulator",
"mobile"
],
"source": [
"real",
"teleoperation"
],
"modality": [
"rgb",
"rgbd",
"proprioception"
],
"scale": {
"trajectories": 1000000,
"hours": 3000,
"environments": 527,
"robots": 22
},
"stats": {
"github_stars": 1883,
"hf_downloads": 20001,
"last_updated": "2026-06-14",
"github_forks": 117
},
"added_date": "2023-10-13",
"tags": [
"large-scale",
"multi-robot",
"RT-X",
"generalist"
]
},
{
"id": "droid",
"name": "DROID",
"org": "UC Berkeley / Stanford / others",
"year": 2024,
"description_en": "A large-scale in-the-wild robot manipulation dataset with 350 hours of data collected across 564 scenes in 86 buildings using a Franka Panda arm.",
"description_ko": "Franka Panda 팔로 86개 건물의 564개 장면에서 수집된 350시간 분량의 대규모 실제 환경 로봇 조작 데이터셋.",
"github_url": "https://github.com/droid-dataset/droid",
"paper_url": "https://arxiv.org/abs/2403.12945",
"hf_url": "https://huggingface.co/datasets/droid-dataset/droid",
"project_url": "https://droid-dataset.github.io",
"categories": [
"manipulation"
],
"hardware": [
"manipulator"
],
"source": [
"real",
"teleoperation"
],
"modality": [
"rgb",
"rgbd",
"proprioception"
],
"scale": {
"trajectories": 76000,
"hours": 350,
"environments": 564,
"robots": 1
},
"stats": {
"github_stars": 371,
"hf_downloads": 0,
"last_updated": "2026-06-14",
"github_forks": 79
},
"added_date": "2024-03-19",
"tags": [
"in-the-wild",
"Franka",
"large-scale",
"diverse"
]
},
{
"id": "bridgev2",
"name": "BridgeData V2",
"org": "UC Berkeley",
"year": 2023,
"description_en": "A large, diverse dataset of robotic manipulation behaviors collected in a tabletop kitchen environment. 60k+ demonstrations across 24 environments.",
"description_ko": "테이블탑 주방 환경에서 수집된 크고 다양한 로봇 조작 행동 데이터셋. 24개 환경에 걸쳐 6만 개 이상의 시연.",
"github_url": "https://github.com/rail-berkeley/bridge_data_v2",
"paper_url": "https://arxiv.org/abs/2308.12952",
"hf_url": "https://huggingface.co/datasets/rail-berkeley/bridge_orig",
"project_url": "https://rail-berkeley.github.io/bridgedata/",
"categories": [
"manipulation"
],
"hardware": [
"manipulator"
],
"source": [
"real",
"teleoperation"
],
"modality": [
"rgb",
"proprioception"
],
"scale": {
"trajectories": 60096,
"hours": 0,
"environments": 24,
"robots": 1
},
"stats": {
"github_stars": 282,
"hf_downloads": 0,
"last_updated": "2026-06-14",
"github_forks": 36
},
"added_date": "2023-08-24",
"tags": [
"kitchen",
"tabletop",
"WidowX",
"diverse-skills"
]
},
{
"id": "rh20t",
"name": "RH20T",
"org": "Shanghai AI Lab",
"year": 2023,
"description_en": "A comprehensive large-scale robotic dataset with 110k+ robot demonstrations of 140+ tasks from 10+ robots, 4 camera views, and multi-sensor data.",
"description_ko": "10개 이상의 로봇, 4개 카메라 뷰, 멀티센서 데이터로 140개 이상의 태스크에 대한 11만 개 이상의 로봇 시연을 포함하는 대규모 데이터셋.",
"github_url": "https://github.com/rh20t/rh20t_api",
"paper_url": "https://arxiv.org/abs/2307.00595",
"hf_url": "",
"project_url": "https://rh20t.github.io",
"categories": [
"manipulation",
"dexterous"
],
"hardware": [
"manipulator"
],
"source": [
"real",
"teleoperation"
],
"modality": [
"rgb",
"rgbd",
"tactile",
"proprioception",
"audio"
],
"scale": {
"trajectories": 110000,
"hours": 0,
"environments": 0,
"robots": 10
},
"stats": {
"github_stars": 108,
"hf_downloads": 0,
"last_updated": "2026-06-14",
"github_forks": 14
},
"added_date": "2023-07-02",
"tags": [
"multi-sensor",
"tactile",
"multi-robot",
"comprehensive"
]
},
{
"id": "libero",
"name": "LIBERO",
"org": "UMass Amherst / Bosch",
"year": 2023,
"description_en": "A benchmark for studying knowledge transfer in robot learning with 130 language-conditioned manipulation tasks across 4 task suites.",
"description_ko": "4개의 태스크 스위트에 걸쳐 130개의 언어 조건부 조작 태스크로 로봇 학습의 지식 전이를 연구하는 벤치마크.",
"github_url": "https://github.com/Lifelong-Robot-Learning/LIBERO",
"paper_url": "https://arxiv.org/abs/2306.03310",
"hf_url": "https://huggingface.co/datasets/openvla/modified_libero_spatial",
"project_url": "https://lifelong-robot-learning.github.io/LIBERO/",
"categories": [
"manipulation"
],
"hardware": [
"manipulator"
],
"source": [
"simulation"
],
"modality": [
"rgb",
"proprioception"
],
"scale": {
"trajectories": 130000,
"hours": 0,
"environments": 4,
"robots": 1
},
"stats": {
"github_stars": 1941,
"hf_downloads": 0,
"last_updated": "2026-06-14",
"github_forks": 422
},
"added_date": "2023-06-05",
"tags": [
"benchmark",
"lifelong-learning",
"language-conditioned",
"simulation"
]
},
{
"id": "maniskill2",
"name": "ManiSkill2",
"org": "UC San Diego / Shanghai AI Lab",
"year": 2023,
"description_en": "A unified benchmark for generalizable manipulation skills with 20 task families and 2000+ diverse objects. GPU-parallelized simulation.",
"description_ko": "20개 태스크 패밀리와 2000개 이상의 다양한 객체를 포함하는 일반화 가능한 조작 기술을 위한 통합 벤치마크. GPU 병렬 시뮬레이션.",
"github_url": "https://github.com/haosulab/ManiSkill",
"paper_url": "https://arxiv.org/abs/2302.04659",
"hf_url": "https://huggingface.co/datasets/haosulab/ManiSkill",
"project_url": "https://maniskill.ai",
"categories": [
"manipulation",
"dexterous"
],
"hardware": [
"manipulator"
],
"source": [
"simulation"
],
"modality": [
"rgb",
"rgbd",
"proprioception"
],
"scale": {
"trajectories": 36000,
"hours": 0,
"environments": 20,
"robots": 8
},
"stats": {
"github_stars": 2996,
"hf_downloads": 247,
"last_updated": "2026-06-14",
"github_forks": 501
},
"added_date": "2023-02-09",
"tags": [
"benchmark",
"GPU-parallel",
"SAPIEN",
"diverse-objects"
]
},
{
"id": "language-table",
"name": "Language-Table",
"org": "Google",
"year": 2023,
"description_en": "A dataset and benchmark of 600k+ robot demonstrations with natural language instructions for pushing and rearranging tabletop blocks.",
"description_ko": "테이블탑 블록 밀기와 재배치를 위한 자연어 지시와 함께 60만 개 이상의 로봇 시연 데이터셋 및 벤치마크.",
"github_url": "https://github.com/google-research/language-table",
"paper_url": "https://arxiv.org/abs/2210.01911",
"hf_url": "https://huggingface.co/datasets/google/language_table",
"project_url": "",
"categories": [
"manipulation"
],
"hardware": [
"manipulator"
],
"source": [
"real",
"simulation",
"teleoperation"
],
"modality": [
"rgb",
"proprioception"
],
"scale": {
"trajectories": 600000,
"hours": 0,
"environments": 1,
"robots": 1
},
"stats": {
"github_stars": 360,
"hf_downloads": 0,
"last_updated": "2026-06-14",
"github_forks": 30
},
"added_date": "2022-10-04",
"tags": [
"language-conditioned",
"blocks",
"tabletop",
"large-scale"
]
},
{
"id": "humanoidbench",
"name": "HumanoidBench",
"org": "CMU / UC San Diego / MIT",
"year": 2024,
"description_en": "A simulation benchmark for whole-body humanoid locomotion and manipulation with 27 tasks. Evaluates RL and IL algorithms on a full-body robot.",
"description_ko": "27개 태스크를 포함하는 전신 휴머노이드 이동 및 조작을 위한 시뮬레이션 벤치마크. 전신 로봇에서 RL과 IL 알고리즘을 평가합니다.",
"github_url": "https://github.com/carlosferrazza/humanoid-bench",
"paper_url": "https://arxiv.org/abs/2403.10506",
"hf_url": "",
"project_url": "https://humanoid-bench.github.io",
"categories": [
"locomotion",
"manipulation",
"whole-body"
],
"hardware": [
"humanoid"
],
"source": [
"simulation"
],
"modality": [
"rgb",
"proprioception"
],
"scale": {
"trajectories": 0,
"hours": 0,
"environments": 27,
"robots": 1
},
"stats": {
"github_stars": 773,
"hf_downloads": 0,
"last_updated": "2026-06-14",
"github_forks": 122
},
"added_date": "2024-03-15",
"tags": [
"humanoid",
"benchmark",
"whole-body",
"locomotion"
]
},
{
"id": "metaworld",
"name": "Meta-World",
"org": "Stanford / Berkeley",
"year": 2019,
"description_en": "A multi-task RL benchmark with 50 diverse robot manipulation tasks. Widely used for meta-learning and multi-task RL research.",
"description_ko": "50개의 다양한 로봇 조작 태스크를 포함하는 멀티태스크 RL 벤치마크. 메타러닝 및 멀티태스크 RL 연구에 널리 사용됩니다.",
"github_url": "https://github.com/Farama-Foundation/Metaworld",
"paper_url": "https://arxiv.org/abs/1910.10897",
"hf_url": "",
"project_url": "https://meta-world.github.io",
"categories": [
"manipulation"
],
"hardware": [
"manipulator"
],
"source": [
"simulation"
],
"modality": [
"proprioception"
],
"scale": {
"trajectories": 0,
"hours": 0,
"environments": 50,
"robots": 1
},
"stats": {
"github_stars": 1836,
"hf_downloads": 0,