lorenzomazza commited on
Commit
8a24d90
·
verified ·
1 Parent(s): 1a45f79

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 BlockPush Absolute Actions LeRobot
4
+ tags:
5
+ - lerobot
6
+ - robotics
7
+ - imitation-learning
8
+ - multimodal-behavior-cloning
9
+ ---
10
+
11
+ # BlockPush Absolute Actions LeRobot Dataset
12
+
13
+ LeRobot-formatted BlockPush dataset with absolute end-effector target actions.
14
+
15
+ ## Dataset Details
16
+
17
+ - Format: LeRobot v3.0
18
+ - Robot type: `block_pushing_sim`
19
+ - Episodes: 1000
20
+ - Frames: 114962
21
+ - FPS: 10
22
+ - Tasks: 1
23
+ - Action shape: `[2]`
24
+ - State shape: `[16]`
25
+ - Videos: no
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_blockpush_absolute_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: Block Pushing multimodal benchmark lineage, including the IBC block pushing environment family.
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:ee2d782c75d997062b4f483aad471086cbc69d9ee2204a03e13c64826abb8a85
3
+ size 10254920
meta/episodes/chunk-000/file-000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be2caf1248424a88ab2ab38354ab6364f054f3c58d14ca126e7ede1af1d710ef
3
+ size 3388421
meta/info.json ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "codebase_version": "v3.0",
3
+ "robot_type": "block_pushing_sim",
4
+ "total_episodes": 1000,
5
+ "total_frames": 114962,
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:1000"
13
+ },
14
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
15
+ "video_path": null,
16
+ "features": {
17
+ "observation.state": {
18
+ "dtype": "float32",
19
+ "shape": [
20
+ 16
21
+ ],
22
+ "names": [
23
+ "block1_x",
24
+ "block1_y",
25
+ "block1_angle",
26
+ "block2_x",
27
+ "block2_y",
28
+ "block2_angle",
29
+ "ee_actual_x",
30
+ "ee_actual_y",
31
+ "ee_commanded_x",
32
+ "ee_commanded_y",
33
+ "target1_x",
34
+ "target1_y",
35
+ "target1_angle",
36
+ "target2_x",
37
+ "target2_y",
38
+ "target2_angle"
39
+ ]
40
+ },
41
+ "action": {
42
+ "dtype": "float32",
43
+ "shape": [
44
+ 2
45
+ ],
46
+ "names": [
47
+ "ee_x",
48
+ "ee_y"
49
+ ]
50
+ },
51
+ "timestamp": {
52
+ "dtype": "float32",
53
+ "shape": [
54
+ 1
55
+ ],
56
+ "names": null
57
+ },
58
+ "frame_index": {
59
+ "dtype": "int64",
60
+ "shape": [
61
+ 1
62
+ ],
63
+ "names": null
64
+ },
65
+ "episode_index": {
66
+ "dtype": "int64",
67
+ "shape": [
68
+ 1
69
+ ],
70
+ "names": null
71
+ },
72
+ "index": {
73
+ "dtype": "int64",
74
+ "shape": [
75
+ 1
76
+ ],
77
+ "names": null
78
+ },
79
+ "task_index": {
80
+ "dtype": "int64",
81
+ "shape": [
82
+ 1
83
+ ],
84
+ "names": null
85
+ }
86
+ }
87
+ }
meta/stats.json ADDED
@@ -0,0 +1,370 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "action": {
3
+ "min": [
4
+ 0.13503025472164154,
5
+ -0.4000000059604645
6
+ ],
7
+ "max": [
8
+ 0.7299999594688416,
9
+ 0.5299999713897705
10
+ ],
11
+ "mean": [
12
+ 0.3749871955197564,
13
+ -0.09280393748625307
14
+ ],
15
+ "std": [
16
+ 0.08135397826916219,
17
+ 0.1676951208805652
18
+ ],
19
+ "count": [
20
+ 114962
21
+ ],
22
+ "q01": [
23
+ 0.24063996284803807,
24
+ -0.3998171563583837
25
+ ],
26
+ "q10": [
27
+ 0.26973474274863224,
28
+ -0.32947056106811534
29
+ ],
30
+ "q50": [
31
+ 0.375336398881298,
32
+ -0.08644745906419904
33
+ ],
34
+ "q90": [
35
+ 0.4702289240193485,
36
+ 0.11854877074496604
37
+ ],
38
+ "q99": [
39
+ 0.4897488138508763,
40
+ 0.1604506957766438
41
+ ]
42
+ },
43
+ "observation.state": {
44
+ "min": [
45
+ 0.17851275205612183,
46
+ -0.3499775826931,
47
+ 9.426218457520008e-05,
48
+ 0.16829024255275726,
49
+ -0.34988293051719666,
50
+ 3.8111727917566895e-05,
51
+ 0.14993005990982056,
52
+ -0.3986649215221405,
53
+ 0.15000000596046448,
54
+ -0.4000000059604645,
55
+ 0.27500292658805847,
56
+ 0.1925238072872162,
57
+ 0.00024277332704514265,
58
+ 0.2750203013420105,
59
+ 0.19254480302333832,
60
+ 0.0010863309726119041
61
+ ],
62
+ "max": [
63
+ 0.7525132298469543,
64
+ 0.28113701939582825,
65
+ 3.1415903568267822,
66
+ 0.7129085063934326,
67
+ 0.5324277281761169,
68
+ 3.141571044921875,
69
+ 0.6867192983627319,
70
+ 0.4997938573360443,
71
+ 0.699999988079071,
72
+ 0.5,
73
+ 0.5249698162078857,
74
+ 0.2074957937002182,
75
+ 3.141423463821411,
76
+ 0.5249806046485901,
77
+ 0.20749898254871368,
78
+ 3.1415865421295166
79
+ ],
80
+ "mean": [
81
+ 0.3870027599200165,
82
+ -0.021265606297483617,
83
+ 1.7172598217613781,
84
+ 0.3915084280201057,
85
+ -0.02174194009982666,
86
+ 1.7635605494502606,
87
+ 0.3742243028937784,
88
+ -0.09732098637087137,
89
+ 0.3744011382392653,
90
+ -0.09767740984531537,
91
+ 0.3945385056380175,
92
+ 0.20013765834790515,
93
+ 1.6511478056072606,
94
+ 0.40538295455931156,
95
+ 0.2000643072280717,
96
+ 1.5746862971318563
97
+ ],
98
+ "std": [
99
+ 0.08938248961775101,
100
+ 0.1773796118155437,
101
+ 0.8089641441451573,
102
+ 0.09501816162372734,
103
+ 0.1778546747130318,
104
+ 0.7809231475852193,
105
+ 0.0802132946454855,
106
+ 0.167857005958697,
107
+ 0.0806557847257107,
108
+ 0.1683171939053343,
109
+ 0.11996340428284331,
110
+ 0.004328481131934675,
111
+ 1.5136477081052555,
112
+ 0.11996688993913919,
113
+ 0.00436999169780371,
114
+ 1.5179244329850026
115
+ ],
116
+ "count": [
117
+ 114962
118
+ ],
119
+ "q01": [
120
+ 0.31877108151059125,
121
+ -0.20399269110418322,
122
+ 1.0473781485534388,
123
+ 0.3219513277223426,
124
+ -0.20211840033185377,
125
+ 1.1198794874158968,
126
+ 0.24251607790843646,
127
+ -0.3983514667779716,
128
+ 0.24190439388425938,
129
+ -0.3998598939312611,
130
+ 0.39453848578933176,
131
+ 0.20013764888616942,
132
+ 1.6511478268473203,
133
+ 0.40538296563881127,
134
+ 0.2000642994407431,
135
+ 1.5746862392407368
136
+ ],
137
+ "q10": [
138
+ 0.33275745399078543,
139
+ -0.1850692111721797,
140
+ 1.2424983876074798,
141
+ 0.33647404328799496,
142
+ -0.18383821708435083,
143
+ 1.3495879501690213,
144
+ 0.27019293133361155,
145
+ -0.33555816400075644,
146
+ 0.27007428092917474,
147
+ -0.3363476992807565,
148
+ 0.39453848578933176,
149
+ 0.20013764888616942,
150
+ 1.6511478268473383,
151
+ 0.40538296563881127,
152
+ 0.2000642994407431,
153
+ 1.5746862392407683
154
+ ],
155
+ "q50": [
156
+ 0.38911311106329083,
157
+ -0.006860073548255421,
158
+ 1.706639916872019,
159
+ 0.3936132463574657,
160
+ -0.008681835219353359,
161
+ 1.7474514532730203,
162
+ 0.37433264622271717,
163
+ -0.0906965751169493,
164
+ 0.3745401213220103,
165
+ -0.09110046329606007,
166
+ 0.39453848578933176,
167
+ 0.20013764888616942,
168
+ 1.6511478268474262,
169
+ 0.40538296563881127,
170
+ 0.2000642994407431,
171
+ 1.5746862392409062
172
+ ],
173
+ "q90": [
174
+ 0.43649777934778655,
175
+ 0.1267669584481333,
176
+ 2.208887711294989,
177
+ 0.4405186574881,
178
+ 0.12716236149220234,
179
+ 2.2010481987982837,
180
+ 0.46918218195056005,
181
+ 0.11494839191644872,
182
+ 0.4697285216599586,
183
+ 0.11516220395610223,
184
+ 0.39453848578933176,
185
+ 0.20013764888616942,
186
+ 1.651147826847511,
187
+ 0.40538296563881127,
188
+ 0.2000642994407431,
189
+ 1.5746862392410448
190
+ ],
191
+ "q99": [
192
+ 0.44616167487768404,
193
+ 0.1682549385462293,
194
+ 2.3216098930225146,
195
+ 0.45019458980847965,
196
+ 0.1684375972523723,
197
+ 2.304845673484152,
198
+ 0.4877392962629037,
199
+ 0.15540000083450348,
200
+ 0.48870638868396304,
201
+ 0.15633405449595306,
202
+ 0.39453848578933176,
203
+ 0.20013764888616942,
204
+ 1.6511478268475315,
205
+ 0.40538296563881127,
206
+ 0.2000642994407431,
207
+ 1.574686239241076
208
+ ]
209
+ },
210
+ "timestamp": {
211
+ "min": [
212
+ 0.0
213
+ ],
214
+ "max": [
215
+ 35.0
216
+ ],
217
+ "mean": [
218
+ 5.816415859153424
219
+ ],
220
+ "std": [
221
+ 3.6782063796190756
222
+ ],
223
+ "count": [
224
+ 114962
225
+ ],
226
+ "q01": [
227
+ 0.09502090634723302
228
+ ],
229
+ "q10": [
230
+ 1.1183136403221223
231
+ ],
232
+ "q50": [
233
+ 5.793286086532538
234
+ ],
235
+ "q90": [
236
+ 10.503972560335262
237
+ ],
238
+ "q99": [
239
+ 11.536433562555484
240
+ ]
241
+ },
242
+ "frame_index": {
243
+ "min": [
244
+ 0
245
+ ],
246
+ "max": [
247
+ 350
248
+ ],
249
+ "mean": [
250
+ 58.164158591534594
251
+ ],
252
+ "std": [
253
+ 36.7820637961908
254
+ ],
255
+ "count": [
256
+ 114962
257
+ ],
258
+ "q01": [
259
+ 0.9502090643577088
260
+ ],
261
+ "q10": [
262
+ 11.18313640394834
263
+ ],
264
+ "q50": [
265
+ 57.93360117604037
266
+ ],
267
+ "q90": [
268
+ 105.03972560262747
269
+ ],
270
+ "q99": [
271
+ 115.36433562466999
272
+ ]
273
+ },
274
+ "task_index": {
275
+ "min": [
276
+ 0
277
+ ],
278
+ "max": [
279
+ 0
280
+ ],
281
+ "mean": [
282
+ 0.0
283
+ ],
284
+ "std": [
285
+ 0.0
286
+ ],
287
+ "count": [
288
+ 114962
289
+ ],
290
+ "q01": [
291
+ 3.9999999999994176e-16
292
+ ],
293
+ "q10": [
294
+ 3.999999999999417e-15
295
+ ],
296
+ "q50": [
297
+ 1.9999999999997122e-14
298
+ ],
299
+ "q90": [
300
+ 3.5999999999994754e-14
301
+ ],
302
+ "q99": [
303
+ 3.959999999999426e-14
304
+ ]
305
+ },
306
+ "episode_index": {
307
+ "min": [
308
+ 0
309
+ ],
310
+ "max": [
311
+ 999
312
+ ],
313
+ "mean": [
314
+ 500.24113185226395
315
+ ],
316
+ "std": [
317
+ 288.1753029997354
318
+ ],
319
+ "count": [
320
+ 114962
321
+ ],
322
+ "q01": [
323
+ 500.24113185226395
324
+ ],
325
+ "q10": [
326
+ 500.24113185226395
327
+ ],
328
+ "q50": [
329
+ 500.24113185226395
330
+ ],
331
+ "q90": [
332
+ 500.241131852264
333
+ ],
334
+ "q99": [
335
+ 500.241131852264
336
+ ]
337
+ },
338
+ "index": {
339
+ "min": [
340
+ 0
341
+ ],
342
+ "max": [
343
+ 114961
344
+ ],
345
+ "mean": [
346
+ 57480.5
347
+ ],
348
+ "std": [
349
+ 33186.67082203336
350
+ ],
351
+ "count": [
352
+ 114962
353
+ ],
354
+ "q01": [
355
+ 57423.28605047269
356
+ ],
357
+ "q10": [
358
+ 57433.51897781235
359
+ ],
360
+ "q50": [
361
+ 57480.27067471338
362
+ ],
363
+ "q90": [
364
+ 57527.375567011215
365
+ ],
366
+ "q99": [
367
+ 57537.700177033235
368
+ ]
369
+ }
370
+ }
meta/tasks.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f0aea42de99934d6ad43191401925ccdcd6ad770bc4dd6b1fd90502f2d383bfe
3
+ size 2193