baz1boy commited on
Commit
28c1e80
·
verified ·
1 Parent(s): f9afdec

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +290 -0
README.md ADDED
@@ -0,0 +1,290 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - RoboCasa
8
+ configs:
9
+ - config_name: default
10
+ data_files: data/*/*.parquet
11
+ ---
12
+
13
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
14
+
15
+ ## Dataset Description
16
+
17
+
18
+
19
+ - **Homepage:** [More Information Needed]
20
+ - **Paper:** [More Information Needed]
21
+ - **License:** apache-2.0
22
+
23
+ ## Dataset Structure
24
+
25
+ [meta/info.json](meta/info.json):
26
+ ```json
27
+ {
28
+ "codebase_version": "v3.0",
29
+ "robot_type": "g1_wbc",
30
+ "total_episodes": 1600,
31
+ "total_frames": 1474930,
32
+ "total_tasks": 32,
33
+ "chunks_size": 1000,
34
+ "fps": 50,
35
+ "splits": {
36
+ "train": "0:1600"
37
+ },
38
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
39
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
40
+ "features": {
41
+ "observation.images.left_hand": {
42
+ "dtype": "video",
43
+ "shape": [
44
+ 480,
45
+ 640,
46
+ 3
47
+ ],
48
+ "names": [
49
+ "height",
50
+ "width",
51
+ "channel"
52
+ ],
53
+ "video_info": {
54
+ "video.width": 640,
55
+ "video.height": 480,
56
+ "video.fps": 50.0,
57
+ "video.codec": "h264",
58
+ "video.pix_fmt": "yuv420p",
59
+ "video.channels": 3,
60
+ "video.is_depth_map": false,
61
+ "has_audio": false
62
+ }
63
+ },
64
+ "observation.images.first_person": {
65
+ "dtype": "video",
66
+ "shape": [
67
+ 480,
68
+ 640,
69
+ 3
70
+ ],
71
+ "names": [
72
+ "height",
73
+ "width",
74
+ "channel"
75
+ ],
76
+ "video_info": {
77
+ "video.width": 640,
78
+ "video.height": 480,
79
+ "video.fps": 50.0,
80
+ "video.codec": "h264",
81
+ "video.pix_fmt": "yuv420p",
82
+ "video.channels": 3,
83
+ "video.is_depth_map": false,
84
+ "has_audio": false
85
+ }
86
+ },
87
+ "observation.images.right_hand": {
88
+ "dtype": "video",
89
+ "shape": [
90
+ 480,
91
+ 640,
92
+ 3
93
+ ],
94
+ "names": [
95
+ "height",
96
+ "width",
97
+ "channel"
98
+ ],
99
+ "video_info": {
100
+ "video.width": 640,
101
+ "video.height": 480,
102
+ "video.fps": 50.0,
103
+ "video.codec": "h264",
104
+ "video.pix_fmt": "yuv420p",
105
+ "video.channels": 3,
106
+ "video.is_depth_map": false,
107
+ "has_audio": false
108
+ }
109
+ },
110
+ "observation.state": {
111
+ "dtype": "float32",
112
+ "shape": [
113
+ 43
114
+ ],
115
+ "names": [
116
+ "left_hip_pitch_joint",
117
+ "right_hip_pitch_joint",
118
+ "waist_yaw_joint",
119
+ "left_hip_roll_joint",
120
+ "right_hip_roll_joint",
121
+ "waist_roll_joint",
122
+ "left_hip_yaw_joint",
123
+ "right_hip_yaw_joint",
124
+ "waist_pitch_joint",
125
+ "left_knee_joint",
126
+ "right_knee_joint",
127
+ "left_shoulder_pitch_joint",
128
+ "right_shoulder_pitch_joint",
129
+ "left_ankle_pitch_joint",
130
+ "right_ankle_pitch_joint",
131
+ "left_shoulder_roll_joint",
132
+ "right_shoulder_roll_joint",
133
+ "left_ankle_roll_joint",
134
+ "right_ankle_roll_joint",
135
+ "left_shoulder_yaw_joint",
136
+ "right_shoulder_yaw_joint",
137
+ "left_elbow_joint",
138
+ "right_elbow_joint",
139
+ "left_wrist_roll_joint",
140
+ "right_wrist_roll_joint",
141
+ "left_wrist_pitch_joint",
142
+ "right_wrist_pitch_joint",
143
+ "left_wrist_yaw_joint",
144
+ "right_wrist_yaw_joint",
145
+ "left_hand_index_0_joint",
146
+ "left_hand_middle_0_joint",
147
+ "left_hand_thumb_0_joint",
148
+ "right_hand_index_0_joint",
149
+ "right_hand_middle_0_joint",
150
+ "right_hand_thumb_0_joint",
151
+ "left_hand_index_1_joint",
152
+ "left_hand_middle_1_joint",
153
+ "left_hand_thumb_1_joint",
154
+ "right_hand_index_1_joint",
155
+ "right_hand_middle_1_joint",
156
+ "right_hand_thumb_1_joint",
157
+ "left_hand_thumb_2_joint",
158
+ "right_hand_thumb_2_joint"
159
+ ],
160
+ "fps": 50
161
+ },
162
+ "action": {
163
+ "dtype": "float32",
164
+ "shape": [
165
+ 23
166
+ ],
167
+ "names": [
168
+ "left_gripper",
169
+ "right_gripper",
170
+ "left_arm_pos_x",
171
+ "left_arm_pos_y",
172
+ "left_arm_pos_z",
173
+ "left_arm_quat_w",
174
+ "left_arm_quat_x",
175
+ "left_arm_quat_y",
176
+ "left_arm_quat_z",
177
+ "right_arm_pos_x",
178
+ "right_arm_pos_y",
179
+ "right_arm_pos_z",
180
+ "right_arm_quat_w",
181
+ "right_arm_quat_x",
182
+ "right_arm_quat_y",
183
+ "right_arm_quat_z",
184
+ "base_lin_x_local",
185
+ "base_lin_y_local",
186
+ "base_ang_z_local",
187
+ "base_height_cmd",
188
+ "torso_orientation_roll_cmd",
189
+ "torso_orientation_pitch_cmd",
190
+ "torso_orientation_yaw_cmd"
191
+ ],
192
+ "fps": 50
193
+ },
194
+ "processed_action": {
195
+ "dtype": "float32",
196
+ "shape": [
197
+ 43
198
+ ],
199
+ "names": [
200
+ "left_hip_pitch_joint",
201
+ "right_hip_pitch_joint",
202
+ "waist_yaw_joint",
203
+ "left_hip_roll_joint",
204
+ "right_hip_roll_joint",
205
+ "waist_roll_joint",
206
+ "left_hip_yaw_joint",
207
+ "right_hip_yaw_joint",
208
+ "waist_pitch_joint",
209
+ "left_knee_joint",
210
+ "right_knee_joint",
211
+ "left_shoulder_pitch_joint",
212
+ "right_shoulder_pitch_joint",
213
+ "left_ankle_pitch_joint",
214
+ "right_ankle_pitch_joint",
215
+ "left_shoulder_roll_joint",
216
+ "right_shoulder_roll_joint",
217
+ "left_ankle_roll_joint",
218
+ "right_ankle_roll_joint",
219
+ "left_shoulder_yaw_joint",
220
+ "right_shoulder_yaw_joint",
221
+ "left_elbow_joint",
222
+ "right_elbow_joint",
223
+ "left_wrist_roll_joint",
224
+ "right_wrist_roll_joint",
225
+ "left_wrist_pitch_joint",
226
+ "right_wrist_pitch_joint",
227
+ "left_wrist_yaw_joint",
228
+ "right_wrist_yaw_joint",
229
+ "left_hand_index_0_joint",
230
+ "left_hand_middle_0_joint",
231
+ "left_hand_thumb_0_joint",
232
+ "right_hand_index_0_joint",
233
+ "right_hand_middle_0_joint",
234
+ "right_hand_thumb_0_joint",
235
+ "left_hand_index_1_joint",
236
+ "left_hand_middle_1_joint",
237
+ "left_hand_thumb_1_joint",
238
+ "right_hand_index_1_joint",
239
+ "right_hand_middle_1_joint",
240
+ "right_hand_thumb_1_joint",
241
+ "left_hand_thumb_2_joint",
242
+ "right_hand_thumb_2_joint"
243
+ ],
244
+ "fps": 50
245
+ },
246
+ "timestamp": {
247
+ "dtype": "float32",
248
+ "shape": [
249
+ 1
250
+ ],
251
+ "names": null,
252
+ "fps": 50
253
+ },
254
+ "episode_index": {
255
+ "dtype": "int64",
256
+ "shape": [
257
+ 1
258
+ ],
259
+ "names": null,
260
+ "fps": 50
261
+ },
262
+ "task_index": {
263
+ "dtype": "int64",
264
+ "shape": [
265
+ 1
266
+ ],
267
+ "names": null,
268
+ "fps": 50
269
+ },
270
+ "index": {
271
+ "dtype": "int64",
272
+ "shape": [
273
+ 1
274
+ ],
275
+ "names": null,
276
+ "fps": 50
277
+ },
278
+ "frame_index": {
279
+ "dtype": "int64",
280
+ "shape": [
281
+ 1
282
+ ],
283
+ "names": null,
284
+ "fps": 50
285
+ }
286
+ },
287
+ "data_files_size_in_mb": 100,
288
+ "video_files_size_in_mb": 500
289
+ }
290
+ ```