fleaven commited on
Commit
6e31d75
·
verified ·
1 Parent(s): fe2a1f0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +128 -113
README.md CHANGED
@@ -1,113 +1,128 @@
1
- # Retargeted AMASS for Robotics
2
-
3
- ## Project Overview
4
-
5
- This project aims to retarget motion data from the AMASS dataset to various robot models and open-source the retargeted data to facilitate research and applications in robotics and human-robot interaction. AMASS (Archive of Motion Capture as Surface Shapes) is a high-quality human motion capture dataset, and the SMPL-X model is a powerful tool for generating realistic human motion data.
6
-
7
- By adapting the motion data from AMASS to different robot models, we hope to provide a more diverse and accessible motion dataset for robot training and human-robot interaction.
8
-
9
- ## Dataset Content
10
-
11
- This open-source project includes the following:
12
- 1. **Retargeted Motions**: Motion files retargeted from AMASS to various robot models.
13
- - **bxirobotics elf2**:
14
-
15
- The retargeted motions for the bxirobotics elf2 robot are generated based on the official open-source model:
16
-
17
- https://github.com/bxirobotics/robot_models/tree/main/elf2_dof25
18
-
19
- The joint positions is not limited, you should limit them during use.
20
-
21
- data shape:[-1,32]
22
-
23
- ​ 0:3 root world position
24
-
25
- ​ 3:7 root quaternion rotation, order: xyzw
26
-
27
- ​ 7:32 joint positions
28
-
29
- joint order:
30
-
31
- ```txt
32
- l_hip_z_joint,
33
- l_hip_x_joint,
34
- l_hip_y_joint,
35
- l_knee_y_joint,
36
- l_ankle_y_joint,
37
- l_ankle_x_joint,
38
- r_hip_z_joint,
39
- r_hip_x_joint,
40
- r_hip_y_joint,
41
- r_knee_y_joint,
42
- r_ankle_y_joint,
43
- r_ankle_x_joint,
44
- waist_z_joint,
45
- waist_x_joint,
46
- waist_y_joint,
47
- l_shld_y_joint,
48
- l_shld_x_joint,
49
- l_shld_z_joint,
50
- l_elb_y_joint,
51
- l_elb_z_joint,
52
- r_shld_y_joint,
53
- r_shld_x_joint,
54
- r_shld_z_joint,
55
- r_elb_y_joint,
56
- r_elb_z_joint
57
- ```
58
-
59
-
60
-
61
- 2. **Usage Examples**: Code examples and tutorials on how to use the retargeted data.
62
-
63
- ./visualize.py
64
-
65
-
66
-
67
- 3. **License Files**: Original license information for each sub-dataset within AMASS.
68
-
69
-
70
-
71
- ## License
72
-
73
- The retargeted data in this project is derived from the AMASS dataset and therefore adheres to the original license terms of AMASS. Each sub-dataset within AMASS may have different licenses, so please ensure compliance with the following requirements when using the data:
74
- - **Propagate Original Licenses**: When using or distributing the retargeted data, you must include and comply with the original licenses of the sub-datasets within AMASS.
75
- - **Attribution Requirements**: Properly cite this work and the original authors and sources of the AMASS dataset and its sub-datasets.
76
-
77
- For detailed license information, please refer to the `LICENSE` file in this project.
78
-
79
-
80
-
81
- ## Acknowledgments
82
-
83
- This project is built on the AMASS dataset and the SMPL-X model. Special thanks to the research team at the Max Planck Institute for Intelligent Systems for providing this valuable resource.
84
-
85
- ## Citation
86
-
87
- If you use the data or code from this project, please cite this work and relevant papers for AMASS and SMPL-X:
88
- ```bibtex
89
- @misc{Retargeted_AMASS_R,
90
- title={Retargeted AMASS for Robotics},
91
- author={Kun Zhao},
92
- url={https://huggingface.co/datasets/fleaven/Retargeted_AMASS_for_robotics}
93
- }
94
-
95
- @inproceedings{AMASS2019,
96
- title={AMASS: Archive of Motion Capture as Surface Shapes},
97
- author={Mahmood, Naureen and Ghorbani, Nima and Troje, Nikolaus F. and Pons-Moll, Gerard and Black, Michael J.},
98
- booktitle={International Conference on Computer Vision (ICCV)},
99
- year={2019}
100
- }
101
-
102
- @inproceedings{SMPL-X2019,
103
- title={Expressive Body Capture: 3D Hands, Face, and Body from a Single Image},
104
- author={Pavlakos, Georgios and Choutas, Vasileios and Ghorbani, Nima and Bolkart, Timo and Osman, Ahmed A. A. and Tzionas, Dimitrios and Black, Michael J.},
105
- booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
106
- year={2019}
107
- }
108
- ```
109
-
110
- ## Contact
111
-
112
- For any questions or suggestions, please contact:
113
- - **Kun Zhao**: [email protected]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - robotics
5
+ - reinforcement-learning
6
+ language:
7
+ - en
8
+ tags:
9
+ - AMASS
10
+ - Retarget
11
+ - Robotics
12
+ - Humanoid
13
+ size_categories:
14
+ - 10K<n<100K
15
+ ---
16
+ # Retargeted AMASS for Robotics
17
+
18
+ ## Project Overview
19
+
20
+ This project aims to retarget motion data from the AMASS dataset to various robot models and open-source the retargeted data to facilitate research and applications in robotics and human-robot interaction. AMASS (Archive of Motion Capture as Surface Shapes) is a high-quality human motion capture dataset, and the SMPL-X model is a powerful tool for generating realistic human motion data.
21
+
22
+ By adapting the motion data from AMASS to different robot models, we hope to provide a more diverse and accessible motion dataset for robot training and human-robot interaction.
23
+
24
+ ## Dataset Content
25
+
26
+ This open-source project includes the following:
27
+ 1. **Retargeted Motions**: Motion files retargeted from AMASS to various robot models.
28
+ - **bxirobotics elf2**:
29
+
30
+ The retargeted motions for the bxirobotics elf2 robot are generated based on the official open-source model:
31
+
32
+ https://github.com/bxirobotics/robot_models/tree/main/elf2_dof25
33
+
34
+ The joint positions is not limited, you should limit them during use.
35
+
36
+ data shape:[-1,32]
37
+
38
+ ​ 0:3 root world position
39
+
40
+ ​ 3:7 root quaternion rotation, order: xyzw
41
+
42
+ ​ 7:32 joint positions
43
+
44
+ joint order:
45
+
46
+ ```txt
47
+ l_hip_z_joint,
48
+ l_hip_x_joint,
49
+ l_hip_y_joint,
50
+ l_knee_y_joint,
51
+ l_ankle_y_joint,
52
+ l_ankle_x_joint,
53
+ r_hip_z_joint,
54
+ r_hip_x_joint,
55
+ r_hip_y_joint,
56
+ r_knee_y_joint,
57
+ r_ankle_y_joint,
58
+ r_ankle_x_joint,
59
+ waist_z_joint,
60
+ waist_x_joint,
61
+ waist_y_joint,
62
+ l_shld_y_joint,
63
+ l_shld_x_joint,
64
+ l_shld_z_joint,
65
+ l_elb_y_joint,
66
+ l_elb_z_joint,
67
+ r_shld_y_joint,
68
+ r_shld_x_joint,
69
+ r_shld_z_joint,
70
+ r_elb_y_joint,
71
+ r_elb_z_joint
72
+ ```
73
+
74
+
75
+
76
+ 2. **Usage Examples**: Code examples and tutorials on how to use the retargeted data.
77
+
78
+ ./visualize.py
79
+
80
+
81
+
82
+ 3. **License Files**: Original license information for each sub-dataset within AMASS.
83
+
84
+
85
+
86
+ ## License
87
+
88
+ The retargeted data in this project is derived from the AMASS dataset and therefore adheres to the original license terms of AMASS. Each sub-dataset within AMASS may have different licenses, so please ensure compliance with the following requirements when using the data:
89
+ - **Propagate Original Licenses**: When using or distributing the retargeted data, you must include and comply with the original licenses of the sub-datasets within AMASS.
90
+ - **Attribution Requirements**: Properly cite this work and the original authors and sources of the AMASS dataset and its sub-datasets.
91
+
92
+ For detailed license information, please refer to the `LICENSE` file in this project.
93
+
94
+
95
+
96
+ ## Acknowledgments
97
+
98
+ This project is built on the AMASS dataset and the SMPL-X model. Special thanks to the research team at the Max Planck Institute for Intelligent Systems for providing this valuable resource.
99
+
100
+ ## Citation
101
+
102
+ If you use the data or code from this project, please cite this work and relevant papers for AMASS and SMPL-X:
103
+ ```bibtex
104
+ @misc{Retargeted_AMASS_R,
105
+ title={Retargeted AMASS for Robotics},
106
+ author={Kun Zhao},
107
+ url={https://huggingface.co/datasets/fleaven/Retargeted_AMASS_for_robotics}
108
+ }
109
+
110
+ @inproceedings{AMASS2019,
111
+ title={AMASS: Archive of Motion Capture as Surface Shapes},
112
+ author={Mahmood, Naureen and Ghorbani, Nima and Troje, Nikolaus F. and Pons-Moll, Gerard and Black, Michael J.},
113
+ booktitle={International Conference on Computer Vision (ICCV)},
114
+ year={2019}
115
+ }
116
+
117
+ @inproceedings{SMPL-X2019,
118
+ title={Expressive Body Capture: 3D Hands, Face, and Body from a Single Image},
119
+ author={Pavlakos, Georgios and Choutas, Vasileios and Ghorbani, Nima and Bolkart, Timo and Osman, Ahmed A. A. and Tzionas, Dimitrios and Black, Michael J.},
120
+ booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
121
+ year={2019}
122
+ }
123
+ ```
124
+
125
+ ## Contact
126
+
127
+ For any questions or suggestions, please contact:
128
+ - **Kun Zhao**: [email protected]