VGalaxies666 commited on
Commit
cb8d8ba
·
verified ·
1 Parent(s): dde097e

Add files using upload-large-folder tool

Browse files
.gitattributes CHANGED
@@ -58,3 +58,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
61
+ data/eval2_compositional_augmented.tsfile filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: eval2_compositional_augmented TsFile
3
+ tags:
4
+ - TsFile
5
+ - time-series
6
+ - robotics
7
+ - LeRobot
8
+ - SO-101
9
+ - imitation-learning
10
+ modality: timeseries
11
+ configs:
12
+ - config_name: default
13
+ data_files:
14
+ - split: train
15
+ path: data/eval2_compositional_augmented.tsfile
16
+ ---
17
+
18
+ # eval2_compositional_augmented
19
+
20
+ This dataset was converted from
21
+ [`robot-learning-group47/eval2_compositional_augmented`](https://huggingface.co/datasets/robot-learning-group47/eval2_compositional_augmented)
22
+ to Apache TsFile format.
23
+
24
+ Modalities: Time-series.
25
+
26
+ ## Source Dataset
27
+
28
+ - Original dataset: [`robot-learning-group47/eval2_compositional_augmented`](https://huggingface.co/datasets/robot-learning-group47/eval2_compositional_augmented)
29
+ - Source format: LeRobot v3 parquet frames with metadata and one front-camera video stream
30
+ - Robot type: `so_follower`
31
+ - Split: `train`
32
+ - Episodes: 720
33
+ - Frames / TsFile rows: 161,780
34
+ - Tasks: 22
35
+ - Sampling rate: 15 fps
36
+
37
+ The source contains compositional prompt augmentations for banana-and-bowl
38
+ manipulation tasks. The file `combo_augmented_map.csv` is included with this
39
+ conversion and maps prompt-combination groups to source and augmented episode
40
+ ranges.
41
+
42
+ ## Files
43
+
44
+ - `data/eval2_compositional_augmented.tsfile`: converted numeric time-series table
45
+ - `meta/`: source metadata mirrored from the original dataset, with `meta/info.json`
46
+ rewritten to describe the converted TsFile layout
47
+ - `combo_augmented_map.csv`: source augmentation map
48
+
49
+ Videos are not included in this repository. The original camera video stream
50
+ `observation.images.front` remains in the source dataset under
51
+ [`videos/`](https://huggingface.co/datasets/robot-learning-group47/eval2_compositional_augmented/tree/main/videos).
52
+
53
+ ## Schema
54
+
55
+ The TsFile table name is `eval2_compositional_augmented`.
56
+
57
+ - `Time`: integer timestamp in milliseconds, synthesized as `round(timestamp * 1000)`
58
+ - TAG columns: `episode_index`, `task_index`
59
+ - FIELD columns: `frame_index`, `sample_index`, `action_0..action_5`,
60
+ `observation_state_0..observation_state_5`
61
+
62
+ The six action and observation-state dimensions use the original LeRobot joint
63
+ order: `shoulder_pan.pos`, `shoulder_lift.pos`, `elbow_flex.pos`,
64
+ `wrist_flex.pos`, `wrist_roll.pos`, and `gripper.pos`.
65
+
66
+ ## Conversion Notes
67
+
68
+ - Converted with the generic `lerobot` converter in the HuggingFace-to-TsFile
69
+ pipeline.
70
+ - All 720 episodes are stored in one TsFile. Use `episode_index` and
71
+ `task_index` as device TAG filters when querying.
72
+ - Source `action[6]` was flattened to `action_0..action_5` as FLOAT fields.
73
+ - Source `observation.state[6]` was flattened to `observation_state_0..5` as
74
+ FLOAT fields.
75
+ - Source `index` was renamed to `sample_index`.
76
+ - Source `timestamp` is not retained as a separate field because the same
77
+ information is represented by `Time / 1000` seconds.
78
+ - Source video field `observation.images.front` is omitted from this TsFile
79
+ conversion and remains available in the original dataset.
80
+ - No rows were dropped.
81
+
82
+ ## Minimal Read Example
83
+
84
+ ```python
85
+ from tsfile import TsFileReader
86
+
87
+ reader = TsFileReader("data/eval2_compositional_augmented.tsfile")
88
+ schemas = reader.get_all_table_schemas()
89
+ print(schemas.keys())
90
+ ```
combo_augmented_map.csv ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ combo,episode_start,episode_end,new_ep_start,prompts
2
+ bgr_b,0,5,0,6
3
+ bgr_g,6,11,36,8
4
+ bgr_r,12,17,84,6
5
+ brg_b,18,23,120,6
6
+ brg_g,24,29,156,6
7
+ brg_r,30,35,192,8
8
+ gbr_b,36,41,240,8
9
+ gbr_g,42,47,288,6
10
+ gbr_r,48,53,324,6
11
+ grb_b,54,59,360,6
12
+ grb_g,60,65,396,6
13
+ grb_r,66,71,432,8
14
+ rbg_b,72,77,480,8
15
+ rbg_g,78,83,528,6
16
+ rbg_r,84,89,564,6
17
+ rgb_b,90,95,600,6
18
+ rgb_g,96,101,636,8
19
+ rgb_r,102,107,684,6
data/eval2_compositional_augmented.tsfile ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c7e2aa85aa6ab93f83749be5e906e210889312475d79949303d89830cd455c55
3
+ size 3175202
meta/episodes.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
meta/episodes/chunk-000/file-000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a4fb4b76861979ccebfdf7ebed3ae2b25b6da2765e2257f5f689e12e3e722d6
3
+ size 74250
meta/info.json ADDED
@@ -0,0 +1,212 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "codebase_version": "v3.0",
3
+ "robot_type": "so_follower",
4
+ "total_episodes": 720,
5
+ "total_frames": 161780,
6
+ "total_tasks": 22,
7
+ "chunks_size": 1000,
8
+ "data_files_size_in_mb": 100,
9
+ "video_files_size_in_mb": 200,
10
+ "fps": 15,
11
+ "splits": {
12
+ "train": "0:720"
13
+ },
14
+ "data_path": "data/eval2_compositional_augmented.tsfile",
15
+ "features": {
16
+ "Time": {
17
+ "dtype": "int64",
18
+ "shape": [
19
+ 1
20
+ ],
21
+ "tsfile_role": "TIME",
22
+ "unit": "ms"
23
+ },
24
+ "episode_index": {
25
+ "dtype": "int64",
26
+ "shape": [
27
+ 1
28
+ ],
29
+ "tsfile_role": "TAG"
30
+ },
31
+ "task_index": {
32
+ "dtype": "int64",
33
+ "shape": [
34
+ 1
35
+ ],
36
+ "tsfile_role": "TAG"
37
+ },
38
+ "frame_index": {
39
+ "dtype": "int64",
40
+ "shape": [
41
+ 1
42
+ ],
43
+ "tsfile_role": "FIELD"
44
+ },
45
+ "sample_index": {
46
+ "dtype": "int64",
47
+ "shape": [
48
+ 1
49
+ ],
50
+ "tsfile_role": "FIELD"
51
+ },
52
+ "action_0": {
53
+ "dtype": "float32",
54
+ "shape": [
55
+ 1
56
+ ],
57
+ "tsfile_role": "FIELD"
58
+ },
59
+ "action_1": {
60
+ "dtype": "float32",
61
+ "shape": [
62
+ 1
63
+ ],
64
+ "tsfile_role": "FIELD"
65
+ },
66
+ "action_2": {
67
+ "dtype": "float32",
68
+ "shape": [
69
+ 1
70
+ ],
71
+ "tsfile_role": "FIELD"
72
+ },
73
+ "action_3": {
74
+ "dtype": "float32",
75
+ "shape": [
76
+ 1
77
+ ],
78
+ "tsfile_role": "FIELD"
79
+ },
80
+ "action_4": {
81
+ "dtype": "float32",
82
+ "shape": [
83
+ 1
84
+ ],
85
+ "tsfile_role": "FIELD"
86
+ },
87
+ "action_5": {
88
+ "dtype": "float32",
89
+ "shape": [
90
+ 1
91
+ ],
92
+ "tsfile_role": "FIELD"
93
+ },
94
+ "observation_state_0": {
95
+ "dtype": "float32",
96
+ "shape": [
97
+ 1
98
+ ],
99
+ "tsfile_role": "FIELD"
100
+ },
101
+ "observation_state_1": {
102
+ "dtype": "float32",
103
+ "shape": [
104
+ 1
105
+ ],
106
+ "tsfile_role": "FIELD"
107
+ },
108
+ "observation_state_2": {
109
+ "dtype": "float32",
110
+ "shape": [
111
+ 1
112
+ ],
113
+ "tsfile_role": "FIELD"
114
+ },
115
+ "observation_state_3": {
116
+ "dtype": "float32",
117
+ "shape": [
118
+ 1
119
+ ],
120
+ "tsfile_role": "FIELD"
121
+ },
122
+ "observation_state_4": {
123
+ "dtype": "float32",
124
+ "shape": [
125
+ 1
126
+ ],
127
+ "tsfile_role": "FIELD"
128
+ },
129
+ "observation_state_5": {
130
+ "dtype": "float32",
131
+ "shape": [
132
+ 1
133
+ ],
134
+ "tsfile_role": "FIELD"
135
+ }
136
+ },
137
+ "video_path_original": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
138
+ "tsfile_conversion": {
139
+ "source_dataset": "robot-learning-group47/eval2_compositional_augmented",
140
+ "source_data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
141
+ "converted_data_path": "data/eval2_compositional_augmented.tsfile",
142
+ "table_name": "eval2_compositional_augmented",
143
+ "granularity": "merged",
144
+ "time_precision": "ms",
145
+ "time_mapping": {
146
+ "source": "timestamp",
147
+ "fps": 15,
148
+ "unit": "milliseconds"
149
+ },
150
+ "tag_columns": [
151
+ "episode_index",
152
+ "task_index"
153
+ ],
154
+ "row_count": 161780,
155
+ "feature_source": "features describe the converted TsFile schema",
156
+ "flattened_features": {
157
+ "action": [
158
+ "action_0",
159
+ "action_1",
160
+ "action_2",
161
+ "action_3",
162
+ "action_4",
163
+ "action_5"
164
+ ],
165
+ "observation.state": [
166
+ "observation_state_0",
167
+ "observation_state_1",
168
+ "observation_state_2",
169
+ "observation_state_3",
170
+ "observation_state_4",
171
+ "observation_state_5"
172
+ ]
173
+ },
174
+ "renamed_features": {
175
+ "index": "sample_index"
176
+ },
177
+ "dropped_features": [
178
+ "timestamp"
179
+ ],
180
+ "omitted_features": [
181
+ "observation.images.front"
182
+ ],
183
+ "original_video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
184
+ "original_video_features": {
185
+ "observation.images.front": {
186
+ "dtype": "video",
187
+ "shape": [
188
+ 256,
189
+ 256,
190
+ 3
191
+ ],
192
+ "names": [
193
+ "height",
194
+ "width",
195
+ "channels"
196
+ ],
197
+ "info": {
198
+ "video.height": 256,
199
+ "video.width": 256,
200
+ "video.codec": "h264",
201
+ "video.pix_fmt": "yuv420p",
202
+ "video.is_depth_map": false,
203
+ "video.fps": 15,
204
+ "video.channels": 3,
205
+ "has_audio": false
206
+ }
207
+ }
208
+ },
209
+ "original_video_source": "https://huggingface.co/datasets/robot-learning-group47/eval2_compositional_augmented/tree/main/videos",
210
+ "video_policy": "Videos are not uploaded to this repository; use the original HuggingFace dataset videos."
211
+ }
212
+ }
meta/stats.json ADDED
@@ -0,0 +1,474 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "index": {
3
+ "min": [
4
+ 0
5
+ ],
6
+ "max": [
7
+ 1349
8
+ ],
9
+ "mean": [
10
+ 713.4850816642148
11
+ ],
12
+ "std": [
13
+ 396.5316686700128
14
+ ],
15
+ "count": [
16
+ 26511
17
+ ],
18
+ "q01": [
19
+ 603.6327978930027
20
+ ],
21
+ "q10": [
22
+ 623.6559520892412
23
+ ],
24
+ "q50": [
25
+ 713.4513422805628
26
+ ],
27
+ "q90": [
28
+ 803.306214860327
29
+ ],
30
+ "q99": [
31
+ 823.337365435427
32
+ ]
33
+ },
34
+ "timestamp": {
35
+ "min": [
36
+ 0.0
37
+ ],
38
+ "max": [
39
+ 14.933333333333334
40
+ ],
41
+ "mean": [
42
+ 7.455740384494487
43
+ ],
44
+ "std": [
45
+ 4.323879507412316
46
+ ],
47
+ "count": [
48
+ 26511
49
+ ],
50
+ "q01": [
51
+ 0.13225479965533532
52
+ ],
53
+ "q10": [
54
+ 1.4671317460879347
55
+ ],
56
+ "q50": [
57
+ 7.453491092250986
58
+ ],
59
+ "q90": [
60
+ 13.443815930976923
61
+ ],
62
+ "q99": [
63
+ 14.779225969333636
64
+ ]
65
+ },
66
+ "observation.images.front": {
67
+ "min": [
68
+ [
69
+ [
70
+ 0.0
71
+ ]
72
+ ],
73
+ [
74
+ [
75
+ 0.0
76
+ ]
77
+ ],
78
+ [
79
+ [
80
+ 0.0
81
+ ]
82
+ ]
83
+ ],
84
+ "max": [
85
+ [
86
+ [
87
+ 1.0
88
+ ]
89
+ ],
90
+ [
91
+ [
92
+ 1.0
93
+ ]
94
+ ],
95
+ [
96
+ [
97
+ 1.0
98
+ ]
99
+ ]
100
+ ],
101
+ "mean": [
102
+ [
103
+ [
104
+ 0.5818679000337986
105
+ ]
106
+ ],
107
+ [
108
+ [
109
+ 0.5758244925203215
110
+ ]
111
+ ],
112
+ [
113
+ [
114
+ 0.5688291662534158
115
+ ]
116
+ ]
117
+ ],
118
+ "std": [
119
+ [
120
+ [
121
+ 0.012578391141370644
122
+ ]
123
+ ],
124
+ [
125
+ [
126
+ 0.016039600825866442
127
+ ]
128
+ ],
129
+ [
130
+ [
131
+ 0.022016665388786355
132
+ ]
133
+ ]
134
+ ],
135
+ "count": [
136
+ 1737424896
137
+ ],
138
+ "q01": [
139
+ [
140
+ [
141
+ 0.03447050240077897
142
+ ]
143
+ ],
144
+ [
145
+ [
146
+ 0.024474136122742317
147
+ ]
148
+ ],
149
+ [
150
+ [
151
+ -9.240664437477303e-11
152
+ ]
153
+ ]
154
+ ],
155
+ "q10": [
156
+ [
157
+ [
158
+ 0.10785943652330814
159
+ ]
160
+ ],
161
+ [
162
+ [
163
+ 0.10164022464659757
164
+ ]
165
+ ],
166
+ [
167
+ [
168
+ 0.06148447244767461
169
+ ]
170
+ ]
171
+ ],
172
+ "q50": [
173
+ [
174
+ [
175
+ 0.7270977789032801
176
+ ]
177
+ ],
178
+ [
179
+ [
180
+ 0.7092572338960378
181
+ ]
182
+ ],
183
+ [
184
+ [
185
+ 0.710923645793109
186
+ ]
187
+ ]
188
+ ],
189
+ "q90": [
190
+ [
191
+ [
192
+ 0.857297869317963
193
+ ]
194
+ ],
195
+ [
196
+ [
197
+ 0.8437762689482899
198
+ ]
199
+ ],
200
+ [
201
+ [
202
+ 0.8491882928515798
203
+ ]
204
+ ]
205
+ ],
206
+ "q99": [
207
+ [
208
+ [
209
+ 0.9066293799739087
210
+ ]
211
+ ],
212
+ [
213
+ [
214
+ 0.8875542108232578
215
+ ]
216
+ ],
217
+ [
218
+ [
219
+ 0.9898890715615202
220
+ ]
221
+ ]
222
+ ]
223
+ },
224
+ "action": {
225
+ "min": [
226
+ -35.07692337036133,
227
+ -102.4175796508789,
228
+ -60.43955993652344,
229
+ -2.857142925262451,
230
+ -8.923076629638672,
231
+ 1.3835511207580566
232
+ ],
233
+ "max": [
234
+ 31.824174880981445,
235
+ 61.4505500793457,
236
+ 89.97801971435547,
237
+ 99.9120864868164,
238
+ 17.186813354492188,
239
+ 79.93850708007812
240
+ ],
241
+ "mean": [
242
+ -2.5602745783108225,
243
+ -4.612237472580085,
244
+ 11.458827113437115,
245
+ 66.13650364098962,
246
+ 6.561002154434547,
247
+ 22.45944733493965
248
+ ],
249
+ "std": [
250
+ 14.807121019715664,
251
+ 51.188885143934655,
252
+ 42.28640716173621,
253
+ 12.76104564952015,
254
+ 2.3876260785195926,
255
+ 21.292441469563457
256
+ ],
257
+ "count": [
258
+ 26511
259
+ ],
260
+ "q01": [
261
+ -13.385037876130307,
262
+ -102.1555576979461,
263
+ -22.045713172286778,
264
+ 52.6661122404986,
265
+ 5.1466546667964055,
266
+ 2.140891308317156
267
+ ],
268
+ "q10": [
269
+ -13.002684334812777,
270
+ -101.82473714371645,
271
+ -21.77014946374631,
272
+ 54.91797209032956,
273
+ 5.444187533073392,
274
+ 2.1533107919847034
275
+ ],
276
+ "q50": [
277
+ -3.2561696235359108,
278
+ 19.213091965105622,
279
+ -1.5240938845755103,
280
+ 68.66618574535507,
281
+ 6.9678860294829414,
282
+ 16.755499269517017
283
+ ],
284
+ "q90": [
285
+ 8.102899632044059,
286
+ 37.147939212740326,
287
+ 89.18808397188847,
288
+ 76.00947063433885,
289
+ 7.3381246020550215,
290
+ 48.76323356999138
291
+ ],
292
+ "q99": [
293
+ 9.072565211040294,
294
+ 37.75375678112768,
295
+ 89.43254168461809,
296
+ 79.08510597408295,
297
+ 7.379891458843581,
298
+ 49.02052466914831
299
+ ]
300
+ },
301
+ "observation.state": {
302
+ "min": [
303
+ -33.93406677246094,
304
+ -102.28571319580078,
305
+ -57.626373291015625,
306
+ -1.5384615659713745,
307
+ -8.571428298950195,
308
+ 2.2653722763061523
309
+ ],
310
+ "max": [
311
+ 31.296703338623047,
312
+ 62.28571319580078,
313
+ 95.51648712158203,
314
+ 99.03296661376953,
315
+ 16.571428298950195,
316
+ 79.54692840576172
317
+ ],
318
+ "mean": [
319
+ -2.4867485453535614,
320
+ -5.073190382683719,
321
+ 14.757031817659879,
322
+ 66.32074447766519,
323
+ 6.713614167064459,
324
+ 22.54754577395845
325
+ ],
326
+ "std": [
327
+ 14.502917146915173,
328
+ 52.297398907906334,
329
+ 42.65333131861522,
330
+ 12.479370853002083,
331
+ 2.264349975335463,
332
+ 20.461295052527518
333
+ ],
334
+ "count": [
335
+ 26511
336
+ ],
337
+ "q01": [
338
+ -12.955143155498746,
339
+ -102.02543543120396,
340
+ -19.296305175546312,
341
+ 53.490606032063454,
342
+ 5.553485432196968,
343
+ 2.433694593342799
344
+ ],
345
+ "q10": [
346
+ -12.746494337568736,
347
+ -101.80526535504085,
348
+ -19.125580709059395,
349
+ 55.08328511060887,
350
+ 5.745988578506964,
351
+ 2.4509960521062277
352
+ ],
353
+ "q50": [
354
+ -3.162987530526627,
355
+ 19.96851798151333,
356
+ 0.7883581111270693,
357
+ 68.7860759740331,
358
+ 7.031197560915591,
359
+ 15.983903021286407
360
+ ],
361
+ "q90": [
362
+ 7.992510254846719,
363
+ 37.752281920413004,
364
+ 91.4328182141147,
365
+ 75.77141799182644,
366
+ 7.451357677355337,
367
+ 48.43856769112354
368
+ ],
369
+ "q99": [
370
+ 8.687377712664494,
371
+ 37.99413241496412,
372
+ 91.57497879070824,
373
+ 78.6668132101219,
374
+ 7.466368080289096,
375
+ 48.71370310049718
376
+ ]
377
+ },
378
+ "task_index": {
379
+ "min": [
380
+ 0
381
+ ],
382
+ "max": [
383
+ 0
384
+ ],
385
+ "mean": [
386
+ 0.0
387
+ ],
388
+ "std": [
389
+ 0.0
390
+ ],
391
+ "count": [
392
+ 26511
393
+ ],
394
+ "q01": [
395
+ 3.999999999999417e-16
396
+ ],
397
+ "q10": [
398
+ 3.9999999999994166e-15
399
+ ],
400
+ "q50": [
401
+ 1.9999999999997084e-14
402
+ ],
403
+ "q90": [
404
+ 3.5999999999994754e-14
405
+ ],
406
+ "q99": [
407
+ 3.9599999999994235e-14
408
+ ]
409
+ },
410
+ "frame_index": {
411
+ "min": [
412
+ 0
413
+ ],
414
+ "max": [
415
+ 224
416
+ ],
417
+ "mean": [
418
+ 111.8361057674173
419
+ ],
420
+ "std": [
421
+ 64.85819261118473
422
+ ],
423
+ "count": [
424
+ 26511
425
+ ],
426
+ "q01": [
427
+ 1.983821996205195
428
+ ],
429
+ "q10": [
430
+ 22.006976192443535
431
+ ],
432
+ "q50": [
433
+ 111.8023663837652
434
+ ],
435
+ "q90": [
436
+ 201.6572389635294
437
+ ],
438
+ "q99": [
439
+ 221.68838953862937
440
+ ]
441
+ },
442
+ "episode_index": {
443
+ "min": [
444
+ 0
445
+ ],
446
+ "max": [
447
+ 5
448
+ ],
449
+ "mean": [
450
+ 2.678661687601373
451
+ ],
452
+ "std": [
453
+ 1.7406590606429413
454
+ ],
455
+ "count": [
456
+ 26511
457
+ ],
458
+ "q01": [
459
+ 2.678661687601373
460
+ ],
461
+ "q10": [
462
+ 2.6786616876013767
463
+ ],
464
+ "q50": [
465
+ 2.678661687601393
466
+ ],
467
+ "q90": [
468
+ 2.6786616876014087
469
+ ],
470
+ "q99": [
471
+ 2.678661687601413
472
+ ]
473
+ }
474
+ }
meta/tasks.jsonl ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"task_index": 0, "task": "Put the banana in the blue colored bowl."}
2
+ {"task_index": 1, "task": "Put the banana into the 1st bowl from the left from the robot perspective."}
3
+ {"task_index": 2, "task": "Put the banana into the 3rd bowl from the right from the robot perspective."}
4
+ {"task_index": 3, "task": "Put the banana into the bowl on the left of the green bowl from the robot perspective."}
5
+ {"task_index": 4, "task": "Put the banana into the bowl that is not green and not red."}
6
+ {"task_index": 5, "task": "Put the banana into the bowl that is not red and not green."}
7
+ {"task_index": 6, "task": "Put the banana in the green colored bowl."}
8
+ {"task_index": 7, "task": "Put the banana into the 2nd bowl from the left from the robot perspective."}
9
+ {"task_index": 8, "task": "Put the banana into the 2nd bowl from the right from the robot perspective."}
10
+ {"task_index": 9, "task": "Put the banana into the middle bowl from the robot perspective."}
11
+ {"task_index": 10, "task": "Put the banana into the bowl on the right of the blue bowl from the robot perspective."}
12
+ {"task_index": 11, "task": "Put the banana into the bowl on the left of the red bowl from the robot perspective."}
13
+ {"task_index": 12, "task": "Put the banana into the bowl that is not blue and not red."}
14
+ {"task_index": 13, "task": "Put the banana into the bowl that is not red and not blue."}
15
+ {"task_index": 14, "task": "Put the banana in the red colored bowl."}
16
+ {"task_index": 15, "task": "Put the banana into the 3rd bowl from the left from the robot perspective."}
17
+ {"task_index": 16, "task": "Put the banana into the 1st bowl from the right from the robot perspective."}
18
+ {"task_index": 17, "task": "Put the banana into the bowl on the right of the green bowl from the robot perspective."}
19
+ {"task_index": 18, "task": "Put the banana into the bowl that is not blue and not green."}
20
+ {"task_index": 19, "task": "Put the banana into the bowl that is not green and not blue."}
21
+ {"task_index": 20, "task": "Put the banana into the bowl on the right of the red bowl from the robot perspective."}
22
+ {"task_index": 21, "task": "Put the banana into the bowl on the left of the blue bowl from the robot perspective."}
meta/tasks.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:501755ba68137b008240f4f6cef44a083d11df37b6c4132bbf2d55959ceb2811
3
+ size 2690