senp98 commited on
Commit
c56d302
·
verified ·
1 Parent(s): 37fb1d2

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +154 -31
README.md CHANGED
@@ -15,36 +15,165 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
15
 
16
 
17
 
18
- - **Homepage:** https://github.com/unitreerobotics
 
19
  - **License:** apache-2.0
20
 
21
-
22
- - **Task Objective:** Organize and tidy the items on the table.
23
- - **Operation Duration:** Each operation takes approximately 20 to 40 seconds.
24
- - **Recording Frequency:** 30 Hz.
25
- - **Robot Type:** 7-DOF single-arm G1 robot.
26
- - **End Effector:** Gripper.
27
- - **Dual-Arm Operation:** No.
28
- - **Image Resolution:** 128x128.
29
- - **Camera Positions:** head-mounted (binocular cameras).
30
- - **Data Content:**
31
- • Robot's current state.
32
- • Robot's next action.
33
- • Current camera view images.
34
- - **Robot Initial Posture:** The first robot state in each dataset entry.
35
- - **Object Placement:** Randomly placed within the robot arm's motion range and the field of view of the robot's head-mounted camera.
36
- - **Camera View:** Follow the guidelines in **Part 5** of [AVP Teleoperation Documentation](https://github.com/unitreerobotics/avp_teleoperate).
37
-
38
- - **Important Notes:**
39
- 1. This is a G1 diversity dataset that can be used for video generation models, world models, and other applications \[[Lee et al., 2018](#citation)\].
40
- 2. Due to the inability to precisely describe spatial positions, adjust the scene to closely match the first frame of the dataset after installing the hardware as specified in **Part 5** of [AVP Teleoperation Documentation](https://github.com/unitreerobotics/avp_teleoperate).
41
- 3. Data collection is not completed in a single session, and variations between data entries exist. Ensure these variations are accounted for during model training.
42
-
43
-
44
  ## Dataset Structure
45
 
46
  [meta/info.json](meta/info.json):
47
  ```json
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  ```
49
 
50
 
@@ -53,11 +182,5 @@ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot)
53
  **BibTeX:**
54
 
55
  ```bibtex
56
- @article{lee2018stochastic,
57
- title={Stochastic Adversarial Video Prediction},
58
- author={Lee, Alex X. and Zhang, Richard and Ebert, Frederik and Abbeel, Pieter and Finn, Chelsea and Levine, Sergey},
59
- journal={arXiv preprint arXiv:1804.01523},
60
- year={2018},
61
- url={https://arxiv.org/abs/1804.01523}
62
- }
63
  ```
 
15
 
16
 
17
 
18
+ - **Homepage:** [More Information Needed]
19
+ - **Paper:** [More Information Needed]
20
  - **License:** apache-2.0
21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  ## Dataset Structure
23
 
24
  [meta/info.json](meta/info.json):
25
  ```json
26
+ {
27
+ "codebase_version": "v3.0",
28
+ "robot_type": "Unitree_G1_Dex1",
29
+ "total_episodes": 468,
30
+ "total_frames": 331555,
31
+ "total_tasks": 1,
32
+ "chunks_size": 1000,
33
+ "data_files_size_in_mb": 100,
34
+ "video_files_size_in_mb": 500,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:468"
38
+ },
39
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
40
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
41
+ "features": {
42
+ "observation.state": {
43
+ "dtype": "float32",
44
+ "shape": [
45
+ 16
46
+ ],
47
+ "names": [
48
+ [
49
+ "kLeftShoulderPitch",
50
+ "kLeftShoulderRoll",
51
+ "kLeftShoulderYaw",
52
+ "kLeftElbow",
53
+ "kLeftWristRoll",
54
+ "kLeftWristPitch",
55
+ "kLeftWristYaw",
56
+ "kRightShoulderPitch",
57
+ "kRightShoulderRoll",
58
+ "kRightShoulderYaw",
59
+ "kRightElbow",
60
+ "kRightWristRoll",
61
+ "kRightWristPitch",
62
+ "kRightWristYaw",
63
+ "kLeftGripper",
64
+ "kRightGripper"
65
+ ]
66
+ ]
67
+ },
68
+ "action": {
69
+ "dtype": "float32",
70
+ "shape": [
71
+ 16
72
+ ],
73
+ "names": [
74
+ [
75
+ "kLeftShoulderPitch",
76
+ "kLeftShoulderRoll",
77
+ "kLeftShoulderYaw",
78
+ "kLeftElbow",
79
+ "kLeftWristRoll",
80
+ "kLeftWristPitch",
81
+ "kLeftWristYaw",
82
+ "kRightShoulderPitch",
83
+ "kRightShoulderRoll",
84
+ "kRightShoulderYaw",
85
+ "kRightElbow",
86
+ "kRightWristRoll",
87
+ "kRightWristPitch",
88
+ "kRightWristYaw",
89
+ "kLeftGripper",
90
+ "kRightGripper"
91
+ ]
92
+ ]
93
+ },
94
+ "observation.images.cam_left_high": {
95
+ "dtype": "video",
96
+ "shape": [
97
+ 128,
98
+ 128,
99
+ 3
100
+ ],
101
+ "names": [
102
+ "height",
103
+ "width",
104
+ "channel"
105
+ ],
106
+ "info": {
107
+ "video.height": 128,
108
+ "video.width": 128,
109
+ "video.codec": "h264",
110
+ "video.pix_fmt": "yuv420p",
111
+ "video.is_depth_map": false,
112
+ "video.fps": 30,
113
+ "video.channels": 3,
114
+ "has_audio": false
115
+ }
116
+ },
117
+ "observation.images.cam_right_high": {
118
+ "dtype": "video",
119
+ "shape": [
120
+ 128,
121
+ 128,
122
+ 3
123
+ ],
124
+ "names": [
125
+ "height",
126
+ "width",
127
+ "channel"
128
+ ],
129
+ "info": {
130
+ "video.height": 128,
131
+ "video.width": 128,
132
+ "video.codec": "h264",
133
+ "video.pix_fmt": "yuv420p",
134
+ "video.is_depth_map": false,
135
+ "video.fps": 30,
136
+ "video.channels": 3,
137
+ "has_audio": false
138
+ }
139
+ },
140
+ "timestamp": {
141
+ "dtype": "float32",
142
+ "shape": [
143
+ 1
144
+ ],
145
+ "names": null
146
+ },
147
+ "frame_index": {
148
+ "dtype": "int64",
149
+ "shape": [
150
+ 1
151
+ ],
152
+ "names": null
153
+ },
154
+ "episode_index": {
155
+ "dtype": "int64",
156
+ "shape": [
157
+ 1
158
+ ],
159
+ "names": null
160
+ },
161
+ "index": {
162
+ "dtype": "int64",
163
+ "shape": [
164
+ 1
165
+ ],
166
+ "names": null
167
+ },
168
+ "task_index": {
169
+ "dtype": "int64",
170
+ "shape": [
171
+ 1
172
+ ],
173
+ "names": null
174
+ }
175
+ }
176
+ }
177
  ```
178
 
179
 
 
182
  **BibTeX:**
183
 
184
  ```bibtex
185
+ [More Information Needed]
 
 
 
 
 
 
186
  ```