Henry-Ellis commited on
Commit
f0adda9
·
verified ·
1 Parent(s): 6ddeef3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +232 -0
README.md ADDED
@@ -0,0 +1,232 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ configs:
8
+ - config_name: default
9
+ data_files: data/*/*.parquet
10
+ ---
11
+
12
+ This dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
13
+
14
+ ## Dataset Description
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": "v2.0",
28
+ "robot_type": "Unitree_G1",
29
+ "total_episodes": 351,
30
+ "total_frames": 389708,
31
+ "total_tasks": 1,
32
+ "total_videos": 1404,
33
+ "total_chunks": 1,
34
+ "chunks_size": 1000,
35
+ "fps": 30,
36
+ "splits": {
37
+ "train": "0:351"
38
+ },
39
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
40
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.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
+ 3,
98
+ 480,
99
+ 640
100
+ ],
101
+ "names": [
102
+ "channels",
103
+ "height",
104
+ "width"
105
+ ],
106
+ "info": {
107
+ "video.fps": 30.0,
108
+ "video.height": 480,
109
+ "video.width": 640,
110
+ "video.channels": 3,
111
+ "video.codec": "av1",
112
+ "video.pix_fmt": "yuv420p",
113
+ "video.is_depth_map": false,
114
+ "has_audio": false
115
+ }
116
+ },
117
+ "observation.images.cam_right_high": {
118
+ "dtype": "video",
119
+ "shape": [
120
+ 3,
121
+ 480,
122
+ 640
123
+ ],
124
+ "names": [
125
+ "channels",
126
+ "height",
127
+ "width"
128
+ ],
129
+ "info": {
130
+ "video.fps": 30.0,
131
+ "video.height": 480,
132
+ "video.width": 640,
133
+ "video.channels": 3,
134
+ "video.codec": "av1",
135
+ "video.pix_fmt": "yuv420p",
136
+ "video.is_depth_map": false,
137
+ "has_audio": false
138
+ }
139
+ },
140
+ "observation.images.cam_left_wrist": {
141
+ "dtype": "video",
142
+ "shape": [
143
+ 3,
144
+ 480,
145
+ 640
146
+ ],
147
+ "names": [
148
+ "channels",
149
+ "height",
150
+ "width"
151
+ ],
152
+ "info": {
153
+ "video.fps": 30.0,
154
+ "video.height": 480,
155
+ "video.width": 640,
156
+ "video.channels": 3,
157
+ "video.codec": "av1",
158
+ "video.pix_fmt": "yuv420p",
159
+ "video.is_depth_map": false,
160
+ "has_audio": false
161
+ }
162
+ },
163
+ "observation.images.cam_right_wrist": {
164
+ "dtype": "video",
165
+ "shape": [
166
+ 3,
167
+ 480,
168
+ 640
169
+ ],
170
+ "names": [
171
+ "channels",
172
+ "height",
173
+ "width"
174
+ ],
175
+ "info": {
176
+ "video.fps": 30.0,
177
+ "video.height": 480,
178
+ "video.width": 640,
179
+ "video.channels": 3,
180
+ "video.codec": "av1",
181
+ "video.pix_fmt": "yuv420p",
182
+ "video.is_depth_map": false,
183
+ "has_audio": false
184
+ }
185
+ },
186
+ "timestamp": {
187
+ "dtype": "float32",
188
+ "shape": [
189
+ 1
190
+ ],
191
+ "names": null
192
+ },
193
+ "frame_index": {
194
+ "dtype": "int64",
195
+ "shape": [
196
+ 1
197
+ ],
198
+ "names": null
199
+ },
200
+ "episode_index": {
201
+ "dtype": "int64",
202
+ "shape": [
203
+ 1
204
+ ],
205
+ "names": null
206
+ },
207
+ "index": {
208
+ "dtype": "int64",
209
+ "shape": [
210
+ 1
211
+ ],
212
+ "names": null
213
+ },
214
+ "task_index": {
215
+ "dtype": "int64",
216
+ "shape": [
217
+ 1
218
+ ],
219
+ "names": null
220
+ }
221
+ }
222
+ }
223
+ ```
224
+
225
+
226
+ ## Citation
227
+
228
+ **BibTeX:**
229
+
230
+ ```bibtex
231
+ [More Information Needed]
232
+ ```