l2aggle commited on
Commit
d9b2950
·
1 Parent(s): 4253cbd

commit README

Browse files
Files changed (1) hide show
  1. README.md +88 -0
README.md CHANGED
@@ -1,3 +1,91 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ language:
6
+ - en
7
+ size_categories:
8
+ - 100M<n<1B
9
+ tags:
10
+ - humanoid
11
+ - manipulation
12
+ - teleoperation
13
+ - post-training
14
+ - unitree-g1
15
+ - whole-body-manipulation
16
+ pretty_name: "TeleOp Demo Data for Humanoid Whole-Body Manipulation"
17
  ---
18
+
19
+ # TeleOp Demo Data for Humanoid Whole-Body Manipulation
20
+
21
+ ## Dataset Summary
22
+
23
+ This dataset contains 10 minutes of real robot teleoperation data used for post-training in humanoid whole-body manipulation tasks. It includes 4 different humanoid whole-body manipulation tasks and serves as a reference for data format and collection methodology.
24
+
25
+ **Dataset Size:** 282.5 MB
26
+
27
+ ## Related Resources
28
+
29
+ - **Research Paper:** [TrajBooster Paper](https://huggingface.co/papers/2509.11839)
30
+ - **Project Page:** [https://jiachengliu3.github.io/TrajBooster/](https://jiachengliu3.github.io/TrajBooster/)
31
+ - **GitHub Repository:** [https://github.com/jiachengliu3/OpenTrajBooster](https://github.com/jiachengliu3/OpenTrajBooster)
32
+
33
+ ## ⚠️ Important Notice
34
+
35
+ **This dataset is intended for reference purposes only!**
36
+
37
+ If you want to reproduce the results from our project, we **strongly recommend NOT using this dataset directly** for post-training. Instead, you should:
38
+
39
+ 1. **Collect your own teleoperation data** using your Unitree G1 robot
40
+ 2. **Use your own collected data** for fine-tuning to achieve meaningful reproduction and improvement results
41
+
42
+ This recommendation is crucial because:
43
+ - **Hardware variations**: Each robot has subtle differences in motor performance, including variations in motor torque characteristics, response latency, gear backlash, and calibration offsets, which can significantly affect motion execution
44
+ - **Camera specifications**: Camera models, resolution settings, field of view, and color calibration may vary between robots
45
+ - **Mounting and positioning**: Camera installation brackets, mounting angles, and positioning relative to the robot body may differ
46
+ - **Sensor calibration**: IMU calibration, joint encoder offsets, and other sensor parameters are robot-specific
47
+ - Using our dataset for post-training may not achieve optimal performance on your specific robot setup due to these hardware-specific characteristics
48
+
49
+ ## Dataset Description
50
+
51
+ This dataset contains teleoperation demonstrations for 4 humanoid whole-body manipulation tasks. The data format and structure can serve as a valuable reference for researchers working on similar projects.
52
+
53
+ ### Tasks Included
54
+ The dataset includes demonstrations for 4 different humanoid whole-body manipulation tasks (specific task descriptions would be added based on your actual tasks).
55
+
56
+ ### Data Format
57
+ The dataset follows the format described in the TrajBooster paper and is compatible with the OpenTrajBooster codebase.
58
+
59
+ ## Usage
60
+
61
+ ```python
62
+ from datasets import load_dataset
63
+
64
+ # Load the dataset
65
+ dataset = load_dataset("l2aggle/teleop_demo_data")
66
+
67
+ # Use as reference for data format
68
+ print(dataset)
69
+ ```
70
+
71
+ ## Citation
72
+
73
+ If you use this dataset as a reference or build upon the TrajBooster methodology, please cite:
74
+
75
+ ```bibtex
76
+ @article{liu2025trajbooster,
77
+ title={TrajBooster: Boosting Humanoid Whole-Body Manipulation via Trajectory-Centric Learning},
78
+ author={Liu, Jiacheng and Ding, Pengxiang and Zhou, Qihang and Wu, Yuxuan and Huang, Da and Peng, Zimian and Xiao, Wei and Zhang, Weinan and Yang, Lixin and Lu, Cewu and Wand, Donglin},
79
+ journal={arXiv preprint arXiv:2509.11839},
80
+ year={2025}
81
+ }
82
+ ```
83
+
84
+ ## License
85
+
86
+ This dataset is released under the Apache 2.0 License. See the LICENSE file for more details.
87
+
88
+ ## Contact
89
+
90
+ For questions about this dataset or the TrajBooster project, please refer to the [GitHub repository](https://github.com/jiachengliu3/OpenTrajBooster) or the [project page](https://jiachengliu3.github.io/TrajBooster/).
91
+ ```