lorenzomazza commited on
Commit
2675eb5
·
verified ·
1 Parent(s): 10b42d5

Upload LeRobot dataset release

Browse files
LICENSE ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ This dataset repository is distributed under `license: other` because it contains LeRobot-formatted adaptations of upstream robotics benchmark data/assets.
2
+
3
+ The LeRobot formatting/adaptation files were prepared for this release. The underlying benchmark environments, trajectories, images, videos, and task definitions retain their original upstream copyrights, licenses, and attribution requirements. This notice does not relicense upstream assets.
4
+
5
+ Please see `README.md` for dataset-specific provenance and citation notes.
README.md ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ pretty_name: Robotics PushT LeRobot
4
+ tags:
5
+ - lerobot
6
+ - robotics
7
+ - imitation-learning
8
+ - multimodal-behavior-cloning
9
+ ---
10
+
11
+ # PushT LeRobot Dataset
12
+
13
+ LeRobot-formatted PushT robot pushing dataset used for multimodal behavior cloning experiments.
14
+
15
+ ## Dataset Details
16
+
17
+ - Format: LeRobot v3.0
18
+ - Robot type: `pusht_sim`
19
+ - Episodes: 206
20
+ - Frames: 25650
21
+ - FPS: 10
22
+ - Tasks: 1
23
+ - Action shape: `[2]`
24
+ - State shape: `[24]`
25
+ - Videos: yes
26
+
27
+ The repository follows the standard LeRobot layout with `meta/`, `data/`, and, when available, `videos/` at the repository root.
28
+
29
+ ## Loading
30
+
31
+ ```python
32
+ from lerobot.common.datasets.lerobot_dataset import LeRobotDataset
33
+
34
+ dataset = LeRobotDataset("nct-tso/robotics_pusht_lerobot")
35
+ ```
36
+
37
+ ## Provenance and License
38
+
39
+ This release is a LeRobot-formatted adaptation of an upstream robotics benchmark dataset.
40
+
41
+ Upstream benchmark/source: PushT benchmark from the Diffusion Policy robotics benchmark lineage.
42
+
43
+ The Hub metadata uses `license: other` because the release combines converted LeRobot metadata/data files with upstream benchmark assets. The upstream benchmark assets retain their original licenses and attribution requirements. See `LICENSE` for the repository-level notice.
44
+
45
+ ## Citation
46
+
47
+ If you use this dataset release, please cite both:
48
+
49
+ 1. The LeRobot adaptation / dataset release:
50
+
51
+ **VersatIL: A Unified, Composable Imitation Learning Library for Reproducible Autonomous Robot Policies**
52
+ Lorenzo Mazza, Ariel Rodriguez, Stefanie Speidel.
53
+ Citation details coming soon.
54
+
55
+ 2. The relevant upstream benchmark papers or repositories for the original environment, task definition, and data source.
data/chunk-000/file-000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c57f3ee3e07f0f34b23a2d5d82eca8008c3e2e6974a6287ab2fbca99d054a6e
3
+ size 2688929
meta/episodes/chunk-000/file-000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ef48b4f5e73f194e8ddc984800ede42b6b31bcfa17857695c18f262e0f2e9b7f
3
+ size 956777
meta/info.json ADDED
@@ -0,0 +1,118 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "codebase_version": "v3.0",
3
+ "robot_type": "pusht_sim",
4
+ "total_episodes": 206,
5
+ "total_frames": 25650,
6
+ "total_tasks": 1,
7
+ "chunks_size": 1000,
8
+ "data_files_size_in_mb": 100,
9
+ "video_files_size_in_mb": 200,
10
+ "fps": 10,
11
+ "splits": {
12
+ "train": "0:206"
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
+ "observation.image": {
18
+ "dtype": "video",
19
+ "shape": [
20
+ 96,
21
+ 96,
22
+ 3
23
+ ],
24
+ "names": [
25
+ "height",
26
+ "width",
27
+ "channels"
28
+ ],
29
+ "info": {
30
+ "video.height": 96,
31
+ "video.width": 96,
32
+ "video.codec": "h264",
33
+ "video.pix_fmt": "yuv420p",
34
+ "video.is_depth_map": false,
35
+ "video.fps": 10,
36
+ "video.channels": 3,
37
+ "has_audio": false
38
+ }
39
+ },
40
+ "action": {
41
+ "dtype": "float32",
42
+ "shape": [
43
+ 2
44
+ ],
45
+ "names": [
46
+ "x",
47
+ "y"
48
+ ]
49
+ },
50
+ "observation.state": {
51
+ "dtype": "float32",
52
+ "shape": [
53
+ 24
54
+ ],
55
+ "names": [
56
+ "agent_x",
57
+ "agent_y",
58
+ "block_x",
59
+ "block_y",
60
+ "block_angle",
61
+ "kp0_x",
62
+ "kp0_y",
63
+ "kp1_x",
64
+ "kp1_y",
65
+ "kp2_x",
66
+ "kp2_y",
67
+ "kp3_x",
68
+ "kp3_y",
69
+ "kp4_x",
70
+ "kp4_y",
71
+ "kp5_x",
72
+ "kp5_y",
73
+ "kp6_x",
74
+ "kp6_y",
75
+ "kp7_x",
76
+ "kp7_y",
77
+ "kp8_x",
78
+ "kp8_y",
79
+ "n_contacts"
80
+ ]
81
+ },
82
+ "timestamp": {
83
+ "dtype": "float32",
84
+ "shape": [
85
+ 1
86
+ ],
87
+ "names": null
88
+ },
89
+ "frame_index": {
90
+ "dtype": "int64",
91
+ "shape": [
92
+ 1
93
+ ],
94
+ "names": null
95
+ },
96
+ "episode_index": {
97
+ "dtype": "int64",
98
+ "shape": [
99
+ 1
100
+ ],
101
+ "names": null
102
+ },
103
+ "index": {
104
+ "dtype": "int64",
105
+ "shape": [
106
+ 1
107
+ ],
108
+ "names": null
109
+ },
110
+ "task_index": {
111
+ "dtype": "int64",
112
+ "shape": [
113
+ 1
114
+ ],
115
+ "names": null
116
+ }
117
+ }
118
+ }
meta/stats.json ADDED
@@ -0,0 +1,600 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "action": {
3
+ "min": [
4
+ 12.0,
5
+ 25.0
6
+ ],
7
+ "max": [
8
+ 511.0,
9
+ 511.0
10
+ ],
11
+ "mean": [
12
+ 228.23964986314087,
13
+ 293.98908411632056
14
+ ],
15
+ "std": [
16
+ 101.59956194876133,
17
+ 96.03916748547877
18
+ ],
19
+ "count": [
20
+ 25650
21
+ ],
22
+ "q01": [
23
+ 97.14267933230163,
24
+ 142.11640522276628
25
+ ],
26
+ "q10": [
27
+ 128.82459792364648,
28
+ 188.86139924615887
29
+ ],
30
+ "q50": [
31
+ 221.78533799462488,
32
+ 296.29388025808487
33
+ ],
34
+ "q90": [
35
+ 336.54286767153025,
36
+ 395.76620448521345
37
+ ],
38
+ "q99": [
39
+ 380.22595494464093,
40
+ 430.53566696739415
41
+ ]
42
+ },
43
+ "index": {
44
+ "min": [
45
+ 0
46
+ ],
47
+ "max": [
48
+ 25649
49
+ ],
50
+ "mean": [
51
+ 12824.5
52
+ ],
53
+ "std": [
54
+ 7404.517196729752
55
+ ],
56
+ "count": [
57
+ 25650
58
+ ],
59
+ "q01": [
60
+ 12758.527748485361
61
+ ],
62
+ "q10": [
63
+ 12770.562335528964
64
+ ],
65
+ "q50": [
66
+ 12824.28036173099
67
+ ],
68
+ "q90": [
69
+ 12878.349577141606
70
+ ],
71
+ "q99": [
72
+ 12890.466026534521
73
+ ]
74
+ },
75
+ "task_index": {
76
+ "min": [
77
+ 0
78
+ ],
79
+ "max": [
80
+ 0
81
+ ],
82
+ "mean": [
83
+ 0.0
84
+ ],
85
+ "std": [
86
+ 0.0
87
+ ],
88
+ "count": [
89
+ 25650
90
+ ],
91
+ "q01": [
92
+ 3.9999999999994176e-16
93
+ ],
94
+ "q10": [
95
+ 3.999999999999416e-15
96
+ ],
97
+ "q50": [
98
+ 1.9999999999997094e-14
99
+ ],
100
+ "q90": [
101
+ 3.599999999999477e-14
102
+ ],
103
+ "q99": [
104
+ 3.9599999999994254e-14
105
+ ]
106
+ },
107
+ "timestamp": {
108
+ "min": [
109
+ 0.0
110
+ ],
111
+ "max": [
112
+ 24.5
113
+ ],
114
+ "mean": [
115
+ 6.684296296296307
116
+ ],
117
+ "std": [
118
+ 4.41065197670106
119
+ ],
120
+ "count": [
121
+ 25650
122
+ ],
123
+ "q01": [
124
+ 0.08707114474333809
125
+ ],
126
+ "q10": [
127
+ 1.2905298491200317
128
+ ],
129
+ "q50": [
130
+ 6.662307429239408
131
+ ],
132
+ "q90": [
133
+ 12.069254010528951
134
+ ],
135
+ "q99": [
136
+ 13.28089894983754
137
+ ]
138
+ },
139
+ "episode_index": {
140
+ "min": [
141
+ 0
142
+ ],
143
+ "max": [
144
+ 205
145
+ ],
146
+ "mean": [
147
+ 104.13235867446402
148
+ ],
149
+ "std": [
150
+ 60.34683692452595
151
+ ],
152
+ "count": [
153
+ 25650
154
+ ],
155
+ "q01": [
156
+ 104.13235867446402
157
+ ],
158
+ "q10": [
159
+ 104.13235867446402
160
+ ],
161
+ "q50": [
162
+ 104.13235867446402
163
+ ],
164
+ "q90": [
165
+ 104.13235867446402
166
+ ],
167
+ "q99": [
168
+ 104.13235867446402
169
+ ]
170
+ },
171
+ "observation.image": {
172
+ "min": [
173
+ [
174
+ [
175
+ 0.2549019607843137
176
+ ]
177
+ ],
178
+ [
179
+ [
180
+ 0.3176470588235294
181
+ ]
182
+ ],
183
+ [
184
+ [
185
+ 0.29411764705882354
186
+ ]
187
+ ]
188
+ ],
189
+ "max": [
190
+ [
191
+ [
192
+ 1.0
193
+ ]
194
+ ],
195
+ [
196
+ [
197
+ 1.0
198
+ ]
199
+ ],
200
+ [
201
+ [
202
+ 1.0
203
+ ]
204
+ ]
205
+ ],
206
+ "mean": [
207
+ [
208
+ [
209
+ 0.9727213976965858
210
+ ]
211
+ ],
212
+ [
213
+ [
214
+ 0.9818128226358656
215
+ ]
216
+ ],
217
+ [
218
+ [
219
+ 0.9787146850638172
220
+ ]
221
+ ]
222
+ ],
223
+ "std": [
224
+ [
225
+ [
226
+ 0.0012291225774980546
227
+ ]
228
+ ],
229
+ [
230
+ [
231
+ 0.00022519144736493838
232
+ ]
233
+ ],
234
+ [
235
+ [
236
+ 0.0012285701428964499
237
+ ]
238
+ ]
239
+ ],
240
+ "count": [
241
+ 19619
242
+ ],
243
+ "q01": [
244
+ [
245
+ [
246
+ 0.5232850516943734
247
+ ]
248
+ ],
249
+ [
250
+ [
251
+ 0.5984063944462998
252
+ ]
253
+ ],
254
+ [
255
+ [
256
+ 0.5655494251472564
257
+ ]
258
+ ]
259
+ ],
260
+ "q10": [
261
+ [
262
+ [
263
+ 0.9690235827827713
264
+ ]
265
+ ],
266
+ [
267
+ [
268
+ 0.9691214224110769
269
+ ]
270
+ ],
271
+ [
272
+ [
273
+ 0.9693249889948569
274
+ ]
275
+ ]
276
+ ],
277
+ "q50": [
278
+ [
279
+ [
280
+ 0.9999141955132248
281
+ ]
282
+ ],
283
+ [
284
+ [
285
+ 0.9999233045400484
286
+ ]
287
+ ],
288
+ [
289
+ [
290
+ 0.9999258628276969
291
+ ]
292
+ ]
293
+ ],
294
+ "q90": [
295
+ [
296
+ [
297
+ 0.9999828391029588
298
+ ]
299
+ ],
300
+ [
301
+ [
302
+ 0.9999846609083239
303
+ ]
304
+ ],
305
+ [
306
+ [
307
+ 0.9999851725658525
308
+ ]
309
+ ]
310
+ ],
311
+ "q99": [
312
+ [
313
+ [
314
+ 0.9999982839106477
315
+ ]
316
+ ],
317
+ [
318
+ [
319
+ 0.9999984660911855
320
+ ]
321
+ ],
322
+ [
323
+ [
324
+ 0.9999985172569379
325
+ ]
326
+ ]
327
+ ]
328
+ },
329
+ "frame_index": {
330
+ "min": [
331
+ 0
332
+ ],
333
+ "max": [
334
+ 245
335
+ ],
336
+ "mean": [
337
+ 66.842962962963
338
+ ],
339
+ "std": [
340
+ 44.106519767010575
341
+ ],
342
+ "count": [
343
+ 25650
344
+ ],
345
+ "q01": [
346
+ 0.8707114483222849
347
+ ],
348
+ "q10": [
349
+ 12.905298491927045
350
+ ],
351
+ "q50": [
352
+ 66.62319686549664
353
+ ],
354
+ "q90": [
355
+ 120.69254010456396
356
+ ],
357
+ "q99": [
358
+ 132.80898949748683
359
+ ]
360
+ },
361
+ "observation.state": {
362
+ "min": [
363
+ 13.45642375946045,
364
+ 32.93829345703125,
365
+ 57.47176742553711,
366
+ 108.27995300292969,
367
+ 0.00021559125161729753,
368
+ 45.29408264160156,
369
+ 100.4148178100586,
370
+ 21.67076873779297,
371
+ 69.74055480957031,
372
+ 44.88191223144531,
373
+ 81.3858413696289,
374
+ 78.58175659179688,
375
+ 132.85989379882812,
376
+ 12.201386451721191,
377
+ 67.23052215576172,
378
+ 79.0167007446289,
379
+ 114.15277099609375,
380
+ 61.47622299194336,
381
+ 107.9910888671875,
382
+ 70.99691009521484,
383
+ 126.12452697753906,
384
+ 62.567440032958984,
385
+ 103.49392700195312,
386
+ 0.0
387
+ ],
388
+ "max": [
389
+ 496.14617919921875,
390
+ 510.9578857421875,
391
+ 439.9153137207031,
392
+ 485.6640930175781,
393
+ 6.283087730407715,
394
+ 444.74102783203125,
395
+ 485.7815246582031,
396
+ 462.09991455078125,
397
+ 519.6060791015625,
398
+ 465.1421203613281,
399
+ 509.7257080078125,
400
+ 414.4031677246094,
401
+ 461.7652587890625,
402
+ 468.9631652832031,
403
+ 521.0679321289062,
404
+ 436.9776611328125,
405
+ 477.0761413574219,
406
+ 435.26593017578125,
407
+ 481.9198303222656,
408
+ 410.964599609375,
409
+ 461.8531494140625,
410
+ 443.0559997558594,
411
+ 495.96209716796875,
412
+ 2.0
413
+ ],
414
+ "mean": [
415
+ 229.11103166814436,
416
+ 293.3112367905884,
417
+ 246.49617313318086,
418
+ 272.36215376409643,
419
+ 1.8194933566096698,
420
+ 213.81475295663574,
421
+ 318.35459200318104,
422
+ 218.41549620451747,
423
+ 246.72977188794468,
424
+ 275.6048956560578,
425
+ 296.7557311601245,
426
+ 235.86624944854202,
427
+ 284.2167579808522,
428
+ 189.4064420007778,
429
+ 324.11348434656463,
430
+ 251.25710423162806,
431
+ 303.79188126413436,
432
+ 214.31514872827964,
433
+ 271.2605322152598,
434
+ 212.7658169502124,
435
+ 294.89295072618734,
436
+ 258.2238591863026,
437
+ 281.24515717564026,
438
+ 0.4905653045377304
439
+ ],
440
+ "std": [
441
+ 101.85469202466231,
442
+ 96.48949174984946,
443
+ 63.86954959340835,
444
+ 65.88838767996091,
445
+ 1.7861025592749864,
446
+ 69.41153876025494,
447
+ 62.83311490560804,
448
+ 72.06452308325674,
449
+ 77.49703695695665,
450
+ 72.16173361466205,
451
+ 71.49432817368032,
452
+ 61.471387344539515,
453
+ 61.14373000077025,
454
+ 81.30353665117195,
455
+ 70.61302746962755,
456
+ 64.15579935428768,
457
+ 62.71983455128726,
458
+ 65.88549359992227,
459
+ 65.80819334178248,
460
+ 65.17447331011208,
461
+ 60.621803836786405,
462
+ 65.42492847076477,
463
+ 66.30492306938655,
464
+ 0.5509593554076063
465
+ ],
466
+ "count": [
467
+ 25650
468
+ ],
469
+ "q01": [
470
+ 100.22690278850581,
471
+ 144.2893760958339,
472
+ 194.48201778193348,
473
+ 219.6247152242813,
474
+ 0.3869582725839759,
475
+ 158.7490161213036,
476
+ 255.96692300390464,
477
+ 157.99238827073867,
478
+ 183.75816164645215,
479
+ 208.06192634181636,
480
+ 233.20825906293504,
481
+ 185.62333358307356,
482
+ 233.1307326158745,
483
+ 124.73673076326712,
484
+ 255.23916062978506,
485
+ 197.26896267632065,
486
+ 246.91589215236786,
487
+ 160.47913196404576,
488
+ 216.82171796354646,
489
+ 160.9542348936696,
490
+ 240.8177055800781,
491
+ 202.1652360237778,
492
+ 226.26436824626964,
493
+ -1.000000013351432e-10
494
+ ],
495
+ "q10": [
496
+ 129.15640474683076,
497
+ 186.64717158103772,
498
+ 198.47493857031165,
499
+ 224.17293740823098,
500
+ 0.5852167790463809,
501
+ 163.41859423832415,
502
+ 259.2969551366844,
503
+ 163.13380009595804,
504
+ 188.51203322620898,
505
+ 212.0693065645751,
506
+ 238.04766974219015,
507
+ 189.55803166836898,
508
+ 236.82198946877588,
509
+ 130.11327811961888,
510
+ 259.7792481811892,
511
+ 201.6154946891654,
512
+ 250.06469888502835,
513
+ 164.84555992137513,
514
+ 220.55341257447327,
515
+ 165.31446982317897,
516
+ 244.0499276341522,
517
+ 206.31269947573728,
518
+ 230.61474862947088,
519
+ -1.000000013351432e-10
520
+ ],
521
+ "q50": [
522
+ 222.29945306277335,
523
+ 296.22355038988394,
524
+ 247.17459952085267,
525
+ 267.93501497970607,
526
+ 1.2947597312763388,
527
+ 206.090366209568,
528
+ 324.1992004537532,
529
+ 213.523387173382,
530
+ 236.80757889898794,
531
+ 282.56978436615447,
532
+ 298.527715028017,
533
+ 234.69759321698623,
534
+ 282.46207100891013,
535
+ 175.6216539846716,
536
+ 330.222422649845,
537
+ 252.54157428749053,
538
+ 306.49547331348936,
539
+ 208.14074705892008,
540
+ 267.46118614397847,
541
+ 205.0916293556785,
542
+ 296.11722709101554,
543
+ 261.11147723969634,
544
+ 278.80353482425284,
545
+ 0.3335375777359788
546
+ ],
547
+ "q90": [
548
+ 339.10812644009644,
549
+ 395.8152109824731,
550
+ 292.1984021161582,
551
+ 327.4546889815355,
552
+ 3.8094908575418676,
553
+ 275.67435560331234,
554
+ 366.85095363155426,
555
+ 277.64690386211703,
556
+ 322.0130917888365,
557
+ 327.2596382844124,
558
+ 352.0917255912155,
559
+ 282.1254316492821,
560
+ 335.08068121644584,
561
+ 270.84613862585195,
562
+ 377.811821929774,
563
+ 298.47935461081374,
564
+ 352.4812426757539,
565
+ 270.99866591373035,
566
+ 328.65127610202165,
567
+ 271.11649670482774,
568
+ 344.4496304449949,
569
+ 304.948954666601,
570
+ 335.3083752749334,
571
+ 1.0903183724584147
572
+ ],
573
+ "q99": [
574
+ 377.2011653032406,
575
+ 426.90961735062825,
576
+ 297.6158799507087,
577
+ 330.536485021968,
578
+ 4.108598580719279,
579
+ 278.7167402128353,
580
+ 370.8244279524958,
581
+ 282.0963433437386,
582
+ 324.5196297579701,
583
+ 333.4893545656616,
584
+ 356.2476535673918,
585
+ 286.8537105002854,
586
+ 338.1940470991749,
587
+ 273.2564044446374,
588
+ 382.81238154645393,
589
+ 303.75984150217937,
590
+ 355.8733889199341,
591
+ 273.85071235279713,
592
+ 331.7729285939145,
593
+ 273.1271936679646,
594
+ 347.7970480178882,
595
+ 310.61831632287993,
596
+ 338.72271651373563,
597
+ 1.3115531473105275
598
+ ]
599
+ }
600
+ }
meta/tasks.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36e7e32c5c4e831c0529a25cb1a7fb1bdce3f456991c57f92a9d01df954e6953
3
+ size 2216
videos/observation.image/chunk-000/file-000.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a70288e6d67fac82a1e555bcdd2c1d9af6c4a327367596c57927265aef31a98
3
+ size 5641642
zarr.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "attributes": {},
3
+ "zarr_format": 3,
4
+ "consolidated_metadata": null,
5
+ "node_type": "group"
6
+ }