hubobi commited on
Commit
4d79ff0
·
verified ·
1 Parent(s): 5afc871

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +293 -0
README.md ADDED
@@ -0,0 +1,293 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "v3.0",
28
+ "robot_type": "bi_arx5",
29
+ "total_episodes": 100,
30
+ "total_frames": 153904,
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:100"
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
+ "action": {
43
+ "dtype": "float32",
44
+ "names": [
45
+ "left_joint_1.pos",
46
+ "left_joint_2.pos",
47
+ "left_joint_3.pos",
48
+ "left_joint_4.pos",
49
+ "left_joint_5.pos",
50
+ "left_joint_6.pos",
51
+ "left_gripper.pos",
52
+ "right_joint_1.pos",
53
+ "right_joint_2.pos",
54
+ "right_joint_3.pos",
55
+ "right_joint_4.pos",
56
+ "right_joint_5.pos",
57
+ "right_joint_6.pos",
58
+ "right_gripper.pos"
59
+ ],
60
+ "shape": [
61
+ 14
62
+ ]
63
+ },
64
+ "observation.state": {
65
+ "dtype": "float32",
66
+ "names": [
67
+ "left_joint_1.pos",
68
+ "left_joint_2.pos",
69
+ "left_joint_3.pos",
70
+ "left_joint_4.pos",
71
+ "left_joint_5.pos",
72
+ "left_joint_6.pos",
73
+ "left_gripper.pos",
74
+ "right_joint_1.pos",
75
+ "right_joint_2.pos",
76
+ "right_joint_3.pos",
77
+ "right_joint_4.pos",
78
+ "right_joint_5.pos",
79
+ "right_joint_6.pos",
80
+ "right_gripper.pos"
81
+ ],
82
+ "shape": [
83
+ 14
84
+ ]
85
+ },
86
+ "observation.images.head": {
87
+ "dtype": "video",
88
+ "shape": [
89
+ 480,
90
+ 640,
91
+ 3
92
+ ],
93
+ "names": [
94
+ "height",
95
+ "width",
96
+ "channels"
97
+ ],
98
+ "info": {
99
+ "video.height": 480,
100
+ "video.width": 640,
101
+ "video.codec": "h264",
102
+ "video.pix_fmt": "yuv420p",
103
+ "video.is_depth_map": false,
104
+ "video.fps": 30,
105
+ "video.channels": 3,
106
+ "has_audio": false
107
+ }
108
+ },
109
+ "observation.images.left_wrist": {
110
+ "dtype": "video",
111
+ "shape": [
112
+ 480,
113
+ 640,
114
+ 3
115
+ ],
116
+ "names": [
117
+ "height",
118
+ "width",
119
+ "channels"
120
+ ],
121
+ "info": {
122
+ "video.height": 480,
123
+ "video.width": 640,
124
+ "video.codec": "h264",
125
+ "video.pix_fmt": "yuv420p",
126
+ "video.is_depth_map": false,
127
+ "video.fps": 30,
128
+ "video.channels": 3,
129
+ "has_audio": false
130
+ }
131
+ },
132
+ "observation.images.right_wrist": {
133
+ "dtype": "video",
134
+ "shape": [
135
+ 480,
136
+ 640,
137
+ 3
138
+ ],
139
+ "names": [
140
+ "height",
141
+ "width",
142
+ "channels"
143
+ ],
144
+ "info": {
145
+ "video.height": 480,
146
+ "video.width": 640,
147
+ "video.codec": "h264",
148
+ "video.pix_fmt": "yuv420p",
149
+ "video.is_depth_map": false,
150
+ "video.fps": 30,
151
+ "video.channels": 3,
152
+ "has_audio": false
153
+ }
154
+ },
155
+ "observation.images.right_tactile_0": {
156
+ "dtype": "video",
157
+ "shape": [
158
+ 400,
159
+ 700,
160
+ 3
161
+ ],
162
+ "names": [
163
+ "height",
164
+ "width",
165
+ "channels"
166
+ ],
167
+ "info": {
168
+ "video.height": 400,
169
+ "video.width": 700,
170
+ "video.codec": "h264",
171
+ "video.pix_fmt": "yuv420p",
172
+ "video.is_depth_map": false,
173
+ "video.fps": 30,
174
+ "video.channels": 3,
175
+ "has_audio": false
176
+ }
177
+ },
178
+ "observation.images.right_tactile_1": {
179
+ "dtype": "video",
180
+ "shape": [
181
+ 400,
182
+ 700,
183
+ 3
184
+ ],
185
+ "names": [
186
+ "height",
187
+ "width",
188
+ "channels"
189
+ ],
190
+ "info": {
191
+ "video.height": 400,
192
+ "video.width": 700,
193
+ "video.codec": "h264",
194
+ "video.pix_fmt": "yuv420p",
195
+ "video.is_depth_map": false,
196
+ "video.fps": 30,
197
+ "video.channels": 3,
198
+ "has_audio": false
199
+ }
200
+ },
201
+ "observation.images.left_tactile_0": {
202
+ "dtype": "video",
203
+ "shape": [
204
+ 400,
205
+ 700,
206
+ 3
207
+ ],
208
+ "names": [
209
+ "height",
210
+ "width",
211
+ "channels"
212
+ ],
213
+ "info": {
214
+ "video.height": 400,
215
+ "video.width": 700,
216
+ "video.codec": "h264",
217
+ "video.pix_fmt": "yuv420p",
218
+ "video.is_depth_map": false,
219
+ "video.fps": 30,
220
+ "video.channels": 3,
221
+ "has_audio": false
222
+ }
223
+ },
224
+ "observation.images.left_tactile_1": {
225
+ "dtype": "video",
226
+ "shape": [
227
+ 400,
228
+ 700,
229
+ 3
230
+ ],
231
+ "names": [
232
+ "height",
233
+ "width",
234
+ "channels"
235
+ ],
236
+ "info": {
237
+ "video.height": 400,
238
+ "video.width": 700,
239
+ "video.codec": "h264",
240
+ "video.pix_fmt": "yuv420p",
241
+ "video.is_depth_map": false,
242
+ "video.fps": 30,
243
+ "video.channels": 3,
244
+ "has_audio": false
245
+ }
246
+ },
247
+ "timestamp": {
248
+ "dtype": "float32",
249
+ "shape": [
250
+ 1
251
+ ],
252
+ "names": null
253
+ },
254
+ "frame_index": {
255
+ "dtype": "int64",
256
+ "shape": [
257
+ 1
258
+ ],
259
+ "names": null
260
+ },
261
+ "episode_index": {
262
+ "dtype": "int64",
263
+ "shape": [
264
+ 1
265
+ ],
266
+ "names": null
267
+ },
268
+ "index": {
269
+ "dtype": "int64",
270
+ "shape": [
271
+ 1
272
+ ],
273
+ "names": null
274
+ },
275
+ "task_index": {
276
+ "dtype": "int64",
277
+ "shape": [
278
+ 1
279
+ ],
280
+ "names": null
281
+ }
282
+ }
283
+ }
284
+ ```
285
+
286
+
287
+ ## Citation
288
+
289
+ **BibTeX:**
290
+
291
+ ```bibtex
292
+ [More Information Needed]
293
+ ```