NIATphysicalAI commited on
Commit
4756877
·
verified ·
1 Parent(s): f00f8da

Add Cube_pick_place (from Bradx86/record-test)

Browse files
Cube_pick_place/README.md ADDED
@@ -0,0 +1,169 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
15
+ <a class="flex" href="https://huggingface.co/spaces/lerobot/visualize_dataset?path=Bradx86/record-test">
16
+ <img class="block dark:hidden" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl.svg"/>
17
+ <img class="hidden dark:block" src="https://huggingface.co/datasets/huggingface/badges/resolve/main/visualize-this-dataset-xl-dark.svg"/>
18
+ </a>
19
+
20
+
21
+ ## Dataset Description
22
+
23
+
24
+
25
+ - **Homepage:** [More Information Needed]
26
+ - **Paper:** [More Information Needed]
27
+ - **License:** apache-2.0
28
+
29
+ ## Dataset Structure
30
+
31
+ [meta/info.json](meta/info.json):
32
+ ```json
33
+ {
34
+ "codebase_version": "v3.0",
35
+ "robot_type": "so_follower",
36
+ "total_episodes": 50,
37
+ "total_frames": 28764,
38
+ "total_tasks": 1,
39
+ "chunks_size": 1000,
40
+ "data_files_size_in_mb": 100,
41
+ "video_files_size_in_mb": 200,
42
+ "fps": 30,
43
+ "splits": {
44
+ "train": "0:50"
45
+ },
46
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
47
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
48
+ "features": {
49
+ "action": {
50
+ "dtype": "float32",
51
+ "names": [
52
+ "shoulder_pan.pos",
53
+ "shoulder_lift.pos",
54
+ "elbow_flex.pos",
55
+ "wrist_flex.pos",
56
+ "wrist_roll.pos",
57
+ "gripper.pos"
58
+ ],
59
+ "shape": [
60
+ 6
61
+ ]
62
+ },
63
+ "observation.state": {
64
+ "dtype": "float32",
65
+ "names": [
66
+ "shoulder_pan.pos",
67
+ "shoulder_lift.pos",
68
+ "elbow_flex.pos",
69
+ "wrist_flex.pos",
70
+ "wrist_roll.pos",
71
+ "gripper.pos"
72
+ ],
73
+ "shape": [
74
+ 6
75
+ ]
76
+ },
77
+ "observation.images.front": {
78
+ "dtype": "video",
79
+ "shape": [
80
+ 480,
81
+ 640,
82
+ 3
83
+ ],
84
+ "names": [
85
+ "height",
86
+ "width",
87
+ "channels"
88
+ ],
89
+ "info": {
90
+ "video.height": 480,
91
+ "video.width": 640,
92
+ "video.codec": "h264",
93
+ "video.pix_fmt": "yuv420p",
94
+ "video.is_depth_map": false,
95
+ "video.fps": 30,
96
+ "video.channels": 3,
97
+ "has_audio": false
98
+ }
99
+ },
100
+ "observation.images.top": {
101
+ "dtype": "video",
102
+ "shape": [
103
+ 480,
104
+ 640,
105
+ 3
106
+ ],
107
+ "names": [
108
+ "height",
109
+ "width",
110
+ "channels"
111
+ ],
112
+ "info": {
113
+ "video.height": 480,
114
+ "video.width": 640,
115
+ "video.codec": "h264",
116
+ "video.pix_fmt": "yuv420p",
117
+ "video.is_depth_map": false,
118
+ "video.fps": 30,
119
+ "video.channels": 3,
120
+ "has_audio": false
121
+ }
122
+ },
123
+ "timestamp": {
124
+ "dtype": "float32",
125
+ "shape": [
126
+ 1
127
+ ],
128
+ "names": null
129
+ },
130
+ "frame_index": {
131
+ "dtype": "int64",
132
+ "shape": [
133
+ 1
134
+ ],
135
+ "names": null
136
+ },
137
+ "episode_index": {
138
+ "dtype": "int64",
139
+ "shape": [
140
+ 1
141
+ ],
142
+ "names": null
143
+ },
144
+ "index": {
145
+ "dtype": "int64",
146
+ "shape": [
147
+ 1
148
+ ],
149
+ "names": null
150
+ },
151
+ "task_index": {
152
+ "dtype": "int64",
153
+ "shape": [
154
+ 1
155
+ ],
156
+ "names": null
157
+ }
158
+ }
159
+ }
160
+ ```
161
+
162
+
163
+ ## Citation
164
+
165
+ **BibTeX:**
166
+
167
+ ```bibtex
168
+ [More Information Needed]
169
+ ```
Cube_pick_place/data/chunk-000/file-000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed62b90a0a3ddf0a1597cdfd4290b74e3bd4afd68fc3cdb66aeb6ecd3d3d96d2
3
+ size 1240562
Cube_pick_place/meta/episodes/chunk-000/file-000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:165f0ab1545d01b2a319446393d480676a03871ed66eae66e354085f9e5d8b65
3
+ size 231736
Cube_pick_place/meta/info.json ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "codebase_version": "v3.0",
3
+ "robot_type": "so_follower",
4
+ "total_episodes": 50,
5
+ "total_frames": 28764,
6
+ "total_tasks": 1,
7
+ "chunks_size": 1000,
8
+ "data_files_size_in_mb": 100,
9
+ "video_files_size_in_mb": 200,
10
+ "fps": 30,
11
+ "splits": {
12
+ "train": "0:50"
13
+ },
14
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
15
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
16
+ "features": {
17
+ "action": {
18
+ "dtype": "float32",
19
+ "names": [
20
+ "shoulder_pan.pos",
21
+ "shoulder_lift.pos",
22
+ "elbow_flex.pos",
23
+ "wrist_flex.pos",
24
+ "wrist_roll.pos",
25
+ "gripper.pos"
26
+ ],
27
+ "shape": [
28
+ 6
29
+ ]
30
+ },
31
+ "observation.state": {
32
+ "dtype": "float32",
33
+ "names": [
34
+ "shoulder_pan.pos",
35
+ "shoulder_lift.pos",
36
+ "elbow_flex.pos",
37
+ "wrist_flex.pos",
38
+ "wrist_roll.pos",
39
+ "gripper.pos"
40
+ ],
41
+ "shape": [
42
+ 6
43
+ ]
44
+ },
45
+ "observation.images.front": {
46
+ "dtype": "video",
47
+ "shape": [
48
+ 480,
49
+ 640,
50
+ 3
51
+ ],
52
+ "names": [
53
+ "height",
54
+ "width",
55
+ "channels"
56
+ ],
57
+ "info": {
58
+ "video.height": 480,
59
+ "video.width": 640,
60
+ "video.codec": "h264",
61
+ "video.pix_fmt": "yuv420p",
62
+ "video.is_depth_map": false,
63
+ "video.fps": 30,
64
+ "video.channels": 3,
65
+ "has_audio": false
66
+ }
67
+ },
68
+ "observation.images.top": {
69
+ "dtype": "video",
70
+ "shape": [
71
+ 480,
72
+ 640,
73
+ 3
74
+ ],
75
+ "names": [
76
+ "height",
77
+ "width",
78
+ "channels"
79
+ ],
80
+ "info": {
81
+ "video.height": 480,
82
+ "video.width": 640,
83
+ "video.codec": "h264",
84
+ "video.pix_fmt": "yuv420p",
85
+ "video.is_depth_map": false,
86
+ "video.fps": 30,
87
+ "video.channels": 3,
88
+ "has_audio": false
89
+ }
90
+ },
91
+ "timestamp": {
92
+ "dtype": "float32",
93
+ "shape": [
94
+ 1
95
+ ],
96
+ "names": null
97
+ },
98
+ "frame_index": {
99
+ "dtype": "int64",
100
+ "shape": [
101
+ 1
102
+ ],
103
+ "names": null
104
+ },
105
+ "episode_index": {
106
+ "dtype": "int64",
107
+ "shape": [
108
+ 1
109
+ ],
110
+ "names": null
111
+ },
112
+ "index": {
113
+ "dtype": "int64",
114
+ "shape": [
115
+ 1
116
+ ],
117
+ "names": null
118
+ },
119
+ "task_index": {
120
+ "dtype": "int64",
121
+ "shape": [
122
+ 1
123
+ ],
124
+ "names": null
125
+ }
126
+ }
127
+ }
Cube_pick_place/meta/stats.json ADDED
@@ -0,0 +1,632 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "observation.images.top": {
3
+ "min": [
4
+ [
5
+ [
6
+ 0.0
7
+ ]
8
+ ],
9
+ [
10
+ [
11
+ 0.0
12
+ ]
13
+ ],
14
+ [
15
+ [
16
+ 0.0
17
+ ]
18
+ ]
19
+ ],
20
+ "max": [
21
+ [
22
+ [
23
+ 1.0
24
+ ]
25
+ ],
26
+ [
27
+ [
28
+ 1.0
29
+ ]
30
+ ],
31
+ [
32
+ [
33
+ 1.0
34
+ ]
35
+ ]
36
+ ],
37
+ "mean": [
38
+ [
39
+ [
40
+ 0.504198487417437
41
+ ]
42
+ ],
43
+ [
44
+ [
45
+ 0.531678998165315
46
+ ]
47
+ ],
48
+ [
49
+ [
50
+ 0.5237790364785705
51
+ ]
52
+ ]
53
+ ],
54
+ "std": [
55
+ [
56
+ [
57
+ 0.007489489238029178
58
+ ]
59
+ ],
60
+ [
61
+ [
62
+ 0.006678218225348941
63
+ ]
64
+ ],
65
+ [
66
+ [
67
+ 0.0055140412499618445
68
+ ]
69
+ ]
70
+ ],
71
+ "count": [
72
+ 552268800
73
+ ],
74
+ "q01": [
75
+ [
76
+ [
77
+ 0.030044714072956405
78
+ ]
79
+ ],
80
+ [
81
+ [
82
+ 0.057272369967811
83
+ ]
84
+ ],
85
+ [
86
+ [
87
+ 0.026416266911828672
88
+ ]
89
+ ]
90
+ ],
91
+ "q10": [
92
+ [
93
+ [
94
+ 0.3030581879592316
95
+ ]
96
+ ],
97
+ [
98
+ [
99
+ 0.34577731756583735
100
+ ]
101
+ ],
102
+ [
103
+ [
104
+ 0.3501076617253659
105
+ ]
106
+ ]
107
+ ],
108
+ "q50": [
109
+ [
110
+ [
111
+ 0.4727565680046134
112
+ ]
113
+ ],
114
+ [
115
+ [
116
+ 0.504522429659642
117
+ ]
118
+ ],
119
+ [
120
+ [
121
+ 0.5152809393476337
122
+ ]
123
+ ]
124
+ ],
125
+ "q90": [
126
+ [
127
+ [
128
+ 0.8328738293067686
129
+ ]
130
+ ],
131
+ [
132
+ [
133
+ 0.8309733379714179
134
+ ]
135
+ ],
136
+ [
137
+ [
138
+ 0.7498917664295688
139
+ ]
140
+ ]
141
+ ],
142
+ "q99": [
143
+ [
144
+ [
145
+ 0.999680515237108
146
+ ]
147
+ ],
148
+ [
149
+ [
150
+ 0.9986590845224258
151
+ ]
152
+ ],
153
+ [
154
+ [
155
+ 0.9635346705827386
156
+ ]
157
+ ]
158
+ ]
159
+ },
160
+ "index": {
161
+ "min": [
162
+ 0
163
+ ],
164
+ "max": [
165
+ 28763
166
+ ],
167
+ "mean": [
168
+ 14381.5
169
+ ],
170
+ "std": [
171
+ 8303.451566467205
172
+ ],
173
+ "count": [
174
+ 28764
175
+ ],
176
+ "q01": [
177
+ 14085.30554009919
178
+ ],
179
+ "q10": [
180
+ 14139.654362375113
181
+ ],
182
+ "q50": [
183
+ 14381.270507523295
184
+ ],
185
+ "q90": [
186
+ 14623.260852129126
187
+ ],
188
+ "q99": [
189
+ 14677.67064471516
190
+ ]
191
+ },
192
+ "episode_index": {
193
+ "min": [
194
+ 0
195
+ ],
196
+ "max": [
197
+ 49
198
+ ],
199
+ "mean": [
200
+ 21.7308093450146
201
+ ],
202
+ "std": [
203
+ 14.616226575013018
204
+ ],
205
+ "count": [
206
+ 28764
207
+ ],
208
+ "q01": [
209
+ 21.7308093450146
210
+ ],
211
+ "q10": [
212
+ 21.730809345014606
213
+ ],
214
+ "q50": [
215
+ 21.730809345014613
216
+ ],
217
+ "q90": [
218
+ 21.73080934501463
219
+ ],
220
+ "q99": [
221
+ 21.73080934501463
222
+ ]
223
+ },
224
+ "frame_index": {
225
+ "min": [
226
+ 0
227
+ ],
228
+ "max": [
229
+ 883
230
+ ],
231
+ "mean": [
232
+ 301.7453413989708
233
+ ],
234
+ "std": [
235
+ 191.12339919754146
236
+ ],
237
+ "count": [
238
+ 28764
239
+ ],
240
+ "q01": [
241
+ 5.550881498163551
242
+ ],
243
+ "q10": [
244
+ 59.899703774081985
245
+ ],
246
+ "q50": [
247
+ 301.47984292866073
248
+ ],
249
+ "q90": [
250
+ 543.5061935281018
251
+ ],
252
+ "q99": [
253
+ 597.9159861141294
254
+ ]
255
+ },
256
+ "timestamp": {
257
+ "min": [
258
+ 0.0
259
+ ],
260
+ "max": [
261
+ 29.433333333333334
262
+ ],
263
+ "mean": [
264
+ 10.05817804663237
265
+ ],
266
+ "std": [
267
+ 6.370779973251383
268
+ ],
269
+ "count": [
270
+ 28764
271
+ ],
272
+ "q01": [
273
+ 0.18502938317722453
274
+ ],
275
+ "q10": [
276
+ 1.9966567923919132
277
+ ],
278
+ "q50": [
279
+ 10.050528297408718
280
+ ],
281
+ "q90": [
282
+ 18.116873117680832
283
+ ],
284
+ "q99": [
285
+ 19.930532870565873
286
+ ]
287
+ },
288
+ "observation.state": {
289
+ "min": [
290
+ -30.549449920654297,
291
+ -103.25274658203125,
292
+ -35.64834976196289,
293
+ 45.230770111083984,
294
+ -146.15383911132812,
295
+ 2.6490066051483154
296
+ ],
297
+ "max": [
298
+ 88.04395294189453,
299
+ 40.74725341796875,
300
+ 97.45054626464844,
301
+ 102.28571319580078,
302
+ -13.582417488098145,
303
+ 83.3112564086914
304
+ ],
305
+ "mean": [
306
+ 35.98318584252757,
307
+ -35.85714775921489,
308
+ 36.80460517990987,
309
+ 75.03572728885528,
310
+ -79.57736926953426,
311
+ 17.80065623846229
312
+ ],
313
+ "std": [
314
+ 27.880968159879085,
315
+ 41.623917864385696,
316
+ 22.862346894080243,
317
+ 11.783750532605,
318
+ 26.087489928186642,
319
+ 15.513119419798844
320
+ ],
321
+ "count": [
322
+ 28764
323
+ ],
324
+ "q01": [
325
+ -11.917897097310595,
326
+ -102.79056854812397,
327
+ 10.247663579171938,
328
+ 59.48264987105879,
329
+ -103.97360926654858,
330
+ 2.828706057085611
331
+ ],
332
+ "q10": [
333
+ -3.9120014242266823,
334
+ -101.62222302387111,
335
+ 14.341277339402211,
336
+ 61.739583914396235,
337
+ -100.53334845441523,
338
+ 2.845609123388861
339
+ ],
340
+ "q50": [
341
+ 31.742201404760944,
342
+ -28.16437372914528,
343
+ 35.27501261323125,
344
+ 74.61481247851356,
345
+ -80.98995602910176,
346
+ 15.967503747804383
347
+ ],
348
+ "q90": [
349
+ 74.22990720982091,
350
+ 8.378365932566183,
351
+ 64.75538552572428,
352
+ 88.33291572868737,
353
+ -60.5311662638493,
354
+ 42.46611680831012
355
+ ],
356
+ "q99": [
357
+ 77.01762003177878,
358
+ 9.918189691950209,
359
+ 68.0716687977346,
360
+ 92.36970930490303,
361
+ -56.10545907362247,
362
+ 44.343059807123694
363
+ ]
364
+ },
365
+ "task_index": {
366
+ "min": [
367
+ 0
368
+ ],
369
+ "max": [
370
+ 0
371
+ ],
372
+ "mean": [
373
+ 0.0
374
+ ],
375
+ "std": [
376
+ 0.0
377
+ ],
378
+ "count": [
379
+ 28764
380
+ ],
381
+ "q01": [
382
+ 3.9999999999994176e-16
383
+ ],
384
+ "q10": [
385
+ 3.999999999999417e-15
386
+ ],
387
+ "q50": [
388
+ 1.9999999999997088e-14
389
+ ],
390
+ "q90": [
391
+ 3.5999999999994754e-14
392
+ ],
393
+ "q99": [
394
+ 3.959999999999423e-14
395
+ ]
396
+ },
397
+ "observation.images.front": {
398
+ "min": [
399
+ [
400
+ [
401
+ 0.0
402
+ ]
403
+ ],
404
+ [
405
+ [
406
+ 0.0
407
+ ]
408
+ ],
409
+ [
410
+ [
411
+ 0.0
412
+ ]
413
+ ]
414
+ ],
415
+ "max": [
416
+ [
417
+ [
418
+ 1.0
419
+ ]
420
+ ],
421
+ [
422
+ [
423
+ 1.0
424
+ ]
425
+ ],
426
+ [
427
+ [
428
+ 1.0
429
+ ]
430
+ ]
431
+ ],
432
+ "mean": [
433
+ [
434
+ [
435
+ 0.4126269918476186
436
+ ]
437
+ ],
438
+ [
439
+ [
440
+ 0.45180687771649464
441
+ ]
442
+ ],
443
+ [
444
+ [
445
+ 0.430055038103639
446
+ ]
447
+ ]
448
+ ],
449
+ "std": [
450
+ [
451
+ [
452
+ 0.011005636800144405
453
+ ]
454
+ ],
455
+ [
456
+ [
457
+ 0.010901346880866924
458
+ ]
459
+ ],
460
+ [
461
+ [
462
+ 0.010084770403823913
463
+ ]
464
+ ]
465
+ ],
466
+ "count": [
467
+ 552268800
468
+ ],
469
+ "q01": [
470
+ [
471
+ [
472
+ -4.22832734818305e-11
473
+ ]
474
+ ],
475
+ [
476
+ [
477
+ 0.0072213215103158574
478
+ ]
479
+ ],
480
+ [
481
+ [
482
+ -4.22832734818305e-11
483
+ ]
484
+ ]
485
+ ],
486
+ "q10": [
487
+ [
488
+ [
489
+ 0.019421516021395333
490
+ ]
491
+ ],
492
+ [
493
+ [
494
+ 0.049432325562384534
495
+ ]
496
+ ],
497
+ [
498
+ [
499
+ 0.024929139714183837
500
+ ]
501
+ ]
502
+ ],
503
+ "q50": [
504
+ [
505
+ [
506
+ 0.35986554985960356
507
+ ]
508
+ ],
509
+ [
510
+ [
511
+ 0.41055814017281933
512
+ ]
513
+ ],
514
+ [
515
+ [
516
+ 0.4110569556635823
517
+ ]
518
+ ]
519
+ ],
520
+ "q90": [
521
+ [
522
+ [
523
+ 0.9028909716803396
524
+ ]
525
+ ],
526
+ [
527
+ [
528
+ 0.9205091202938689
529
+ ]
530
+ ],
531
+ [
532
+ [
533
+ 0.869472981053346
534
+ ]
535
+ ]
536
+ ],
537
+ "q99": [
538
+ [
539
+ [
540
+ 0.9999043385102985
541
+ ]
542
+ ],
543
+ [
544
+ [
545
+ 0.9999508026681801
546
+ ]
547
+ ],
548
+ [
549
+ [
550
+ 0.983890675937911
551
+ ]
552
+ ]
553
+ ]
554
+ },
555
+ "action": {
556
+ "min": [
557
+ -35.29670333862305,
558
+ -104.61538696289062,
559
+ -40.43955993652344,
560
+ 41.80219650268555,
561
+ -145.1868133544922,
562
+ 0.0
563
+ ],
564
+ "max": [
565
+ 92.0,
566
+ 39.20878982543945,
567
+ 96.52747344970703,
568
+ 102.37362670898438,
569
+ -12.087912559509277,
570
+ 84.12828826904297
571
+ ],
572
+ "mean": [
573
+ 35.777242679885056,
574
+ -36.985259186921475,
575
+ 34.42686121163057,
576
+ 74.46672840699286,
577
+ -79.71630601215855,
578
+ 15.57210075276698
579
+ ],
580
+ "std": [
581
+ 28.87185770402836,
582
+ 40.84710047479019,
583
+ 23.368015908725518,
584
+ 12.738620608277934,
585
+ 26.24571054750289,
586
+ 16.863778637121417
587
+ ],
588
+ "count": [
589
+ 28764
590
+ ],
591
+ "q01": [
592
+ -14.463503621550856,
593
+ -103.43449408371927,
594
+ 6.225880224182638,
595
+ 56.84207492911586,
596
+ -104.96832159307348,
597
+ 1.1582340398488793
598
+ ],
599
+ "q10": [
600
+ -5.752091827120178,
601
+ -101.7315470617287,
602
+ 11.35910213036296,
603
+ 60.111037875402666,
604
+ -100.3245959102893,
605
+ 1.2795939034239012
606
+ ],
607
+ "q50": [
608
+ 31.475952690588645,
609
+ -30.24254135043154,
610
+ 33.123557622184336,
611
+ 73.90802715955961,
612
+ -81.10906535249681,
613
+ 9.55267453067243
614
+ ],
615
+ "q90": [
616
+ 75.3672366737681,
617
+ 7.211007447160418,
618
+ 62.92018429457598,
619
+ 89.38378685649873,
620
+ -60.248146675582504,
621
+ 42.85573870615608
622
+ ],
623
+ "q99": [
624
+ 80.33035145950936,
625
+ 9.407939320586276,
626
+ 67.33579211210458,
627
+ 94.40858223784738,
628
+ -54.948028876252955,
629
+ 44.66178656577225
630
+ ]
631
+ }
632
+ }
Cube_pick_place/meta/tasks.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:16c9baede4e2b447b412acbeb2aff8910ff6799aa668b8300da18aaef1888057
3
+ size 2033
Cube_pick_place/videos/observation.images.front/chunk-000/file-000.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3707440c2c7a1d029bedc6b7307919c2bcebb9ddfa1eed71dc33857db45707f3
3
+ size 103160949
Cube_pick_place/videos/observation.images.top/chunk-000/file-000.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:09efb3cb664e766284823ccac559ff877d15c30b8cb09de9da46bfca37df3b60
3
+ size 84752493