zjt24 commited on
Commit
c5f54e7
·
verified ·
1 Parent(s): 555d2d4

Add TsFile (converted from lerobot/berkeley_cable_routing)

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/berkeley_cable_routing.tsfile filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - tsfile
8
+ - time-series
9
+ - modality:timeseries
10
+ configs:
11
+ - config_name: default
12
+ data_files:
13
+ - split: train
14
+ path: data/berkeley_cable_routing.tsfile
15
+ ---
16
+
17
+ # berkeley_cable_routing
18
+
19
+ This dataset is a TsFile conversion of the Hugging Face dataset
20
+ [`lerobot/berkeley_cable_routing`](https://huggingface.co/datasets/lerobot/berkeley_cable_routing).
21
+ The source dataset was created using [LeRobot](https://github.com/huggingface/lerobot).
22
+
23
+ Modalities: Time-series. The original repository also contains video streams; videos are not
24
+ included in this converted repository.
25
+
26
+ ## Source Dataset
27
+
28
+ - Original dataset: [`lerobot/berkeley_cable_routing`](https://huggingface.co/datasets/lerobot/berkeley_cable_routing)
29
+ - License: `apache-2.0`
30
+ - LeRobot codebase version: `v3.0`
31
+ - Robot type: `unknown`
32
+ - Task: `route cable`
33
+ - Split: `train` (`0:1647`)
34
+ - Source scale from `meta/info.json`: `1,647` episodes, `42,328` frames, `1` task
35
+ - Sampling rate: `10` fps
36
+ - Source data layout: `data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet`
37
+ - Source video layout: `videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4`
38
+
39
+ ## Converted Files
40
+
41
+ - TsFile: `data/berkeley_cable_routing.tsfile`
42
+ - Converted rows: `42,328`
43
+ - TsFile table: `berkeley_cable_routing`
44
+ - Time precision: milliseconds
45
+ - TAG columns: `episode_index`, `task_index`
46
+
47
+ The conversion follows the LeRobot v3 data path in `meta/info.json` and uses the
48
+ `file-*.parquet` frame data layout.
49
+
50
+ ## Schema
51
+
52
+ `Time` is synthesized as `round(timestamp * 1000)` in milliseconds. The source
53
+ `timestamp` column is dropped because it is redundant with `Time / 1000` seconds.
54
+
55
+ TAG columns:
56
+
57
+ - `episode_index`
58
+ - `task_index`
59
+
60
+ FIELD columns:
61
+
62
+ - `frame_index`
63
+ - `sample_index` (renamed from source `index`)
64
+ - `next_reward` (renamed from source `next.reward`)
65
+ - `next_done` (renamed from source `next.done`, stored as `0/1`)
66
+ - `observation_state_0` to `observation_state_7`
67
+ - `action_0` to `action_6`
68
+
69
+ Vector features are flattened by preserving the source feature name and replacing
70
+ `.` with `_`. For example, `observation.state` becomes
71
+ `observation_state_0` to `observation_state_7`, and `action` becomes
72
+ `action_0` to `action_6`.
73
+
74
+ ## Video Policy
75
+
76
+ The following source video features are not converted into TsFile and are not
77
+ uploaded here:
78
+
79
+ - `observation.images.top_image`
80
+ - `observation.images.wrist225_image`
81
+ - `observation.images.wrist45_image`
82
+ - `observation.images.image`
83
+
84
+ Use the original dataset for videos:
85
+ [`lerobot/berkeley_cable_routing/videos`](https://huggingface.co/datasets/lerobot/berkeley_cable_routing/tree/main/videos).
86
+
87
+ ## Validation
88
+
89
+ The converted TsFile was validated with the project pipeline and read back using
90
+ the TsFile Python SDK:
91
+
92
+ - staged Parquet rows: `42,328`
93
+ - TsFile metadata rows: `42,328`
94
+ - TsFile query rows: `42,328`
95
+
96
+ ## Usage
97
+
98
+ ```python
99
+ from tsfile import TsFileReader
100
+
101
+ path = "data/berkeley_cable_routing.tsfile"
102
+ with TsFileReader(path) as reader:
103
+ schemas = reader.get_all_table_schemas()
104
+ print(schemas.keys())
105
+ ```
data/berkeley_cable_routing.tsfile ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27c9bbf6a9f0b08b0bf99670101ecbc356982c31c96e51dc315509426266d3ff
3
+ size 5341009
meta/episodes/chunk-000/file-000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:56827e74c4f803ae6aafe54b1b10167229e6c9dd1501e547a787f2a244773915
3
+ size 2167447
meta/info.json ADDED
@@ -0,0 +1,316 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "codebase_version": "v3.0",
3
+ "robot_type": "unknown",
4
+ "total_episodes": 1647,
5
+ "total_frames": 42328,
6
+ "total_tasks": 1,
7
+ "chunks_size": 1000,
8
+ "fps": 10,
9
+ "splits": {
10
+ "train": "0:1647"
11
+ },
12
+ "data_path": "data/berkeley_cable_routing.tsfile",
13
+ "features": {
14
+ "Time": {
15
+ "dtype": "int64",
16
+ "shape": [
17
+ 1
18
+ ],
19
+ "tsfile_role": "TIME",
20
+ "unit": "ms"
21
+ },
22
+ "episode_index": {
23
+ "dtype": "int64",
24
+ "shape": [
25
+ 1
26
+ ],
27
+ "tsfile_role": "TAG"
28
+ },
29
+ "task_index": {
30
+ "dtype": "int64",
31
+ "shape": [
32
+ 1
33
+ ],
34
+ "tsfile_role": "TAG"
35
+ },
36
+ "frame_index": {
37
+ "dtype": "int64",
38
+ "shape": [
39
+ 1
40
+ ],
41
+ "tsfile_role": "FIELD"
42
+ },
43
+ "sample_index": {
44
+ "dtype": "int64",
45
+ "shape": [
46
+ 1
47
+ ],
48
+ "tsfile_role": "FIELD"
49
+ },
50
+ "next_reward": {
51
+ "dtype": "float32",
52
+ "shape": [
53
+ 1
54
+ ],
55
+ "tsfile_role": "FIELD"
56
+ },
57
+ "next_done": {
58
+ "dtype": "int64",
59
+ "shape": [
60
+ 1
61
+ ],
62
+ "tsfile_role": "FIELD"
63
+ },
64
+ "observation_state_0": {
65
+ "dtype": "float32",
66
+ "shape": [
67
+ 1
68
+ ],
69
+ "tsfile_role": "FIELD"
70
+ },
71
+ "observation_state_1": {
72
+ "dtype": "float32",
73
+ "shape": [
74
+ 1
75
+ ],
76
+ "tsfile_role": "FIELD"
77
+ },
78
+ "observation_state_2": {
79
+ "dtype": "float32",
80
+ "shape": [
81
+ 1
82
+ ],
83
+ "tsfile_role": "FIELD"
84
+ },
85
+ "observation_state_3": {
86
+ "dtype": "float32",
87
+ "shape": [
88
+ 1
89
+ ],
90
+ "tsfile_role": "FIELD"
91
+ },
92
+ "observation_state_4": {
93
+ "dtype": "float32",
94
+ "shape": [
95
+ 1
96
+ ],
97
+ "tsfile_role": "FIELD"
98
+ },
99
+ "observation_state_5": {
100
+ "dtype": "float32",
101
+ "shape": [
102
+ 1
103
+ ],
104
+ "tsfile_role": "FIELD"
105
+ },
106
+ "observation_state_6": {
107
+ "dtype": "float32",
108
+ "shape": [
109
+ 1
110
+ ],
111
+ "tsfile_role": "FIELD"
112
+ },
113
+ "observation_state_7": {
114
+ "dtype": "float32",
115
+ "shape": [
116
+ 1
117
+ ],
118
+ "tsfile_role": "FIELD"
119
+ },
120
+ "action_0": {
121
+ "dtype": "float32",
122
+ "shape": [
123
+ 1
124
+ ],
125
+ "tsfile_role": "FIELD"
126
+ },
127
+ "action_1": {
128
+ "dtype": "float32",
129
+ "shape": [
130
+ 1
131
+ ],
132
+ "tsfile_role": "FIELD"
133
+ },
134
+ "action_2": {
135
+ "dtype": "float32",
136
+ "shape": [
137
+ 1
138
+ ],
139
+ "tsfile_role": "FIELD"
140
+ },
141
+ "action_3": {
142
+ "dtype": "float32",
143
+ "shape": [
144
+ 1
145
+ ],
146
+ "tsfile_role": "FIELD"
147
+ },
148
+ "action_4": {
149
+ "dtype": "float32",
150
+ "shape": [
151
+ 1
152
+ ],
153
+ "tsfile_role": "FIELD"
154
+ },
155
+ "action_5": {
156
+ "dtype": "float32",
157
+ "shape": [
158
+ 1
159
+ ],
160
+ "tsfile_role": "FIELD"
161
+ },
162
+ "action_6": {
163
+ "dtype": "float32",
164
+ "shape": [
165
+ 1
166
+ ],
167
+ "tsfile_role": "FIELD"
168
+ }
169
+ },
170
+ "data_files_size_in_mb": 100,
171
+ "video_files_size_in_mb": 200,
172
+ "video_path_original": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
173
+ "tsfile_conversion": {
174
+ "source_dataset": "lerobot/berkeley_cable_routing",
175
+ "source_data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
176
+ "converted_data_path": "data/berkeley_cable_routing.tsfile",
177
+ "table_name": "berkeley_cable_routing",
178
+ "granularity": "merged",
179
+ "time_precision": "ms",
180
+ "time_mapping": {
181
+ "source": "timestamp",
182
+ "fps": 10,
183
+ "unit": "milliseconds"
184
+ },
185
+ "tag_columns": [
186
+ "episode_index",
187
+ "task_index"
188
+ ],
189
+ "row_count": 42328,
190
+ "feature_source": "features describe the converted TsFile schema",
191
+ "flattened_features": {
192
+ "observation.state": [
193
+ "observation_state_0",
194
+ "observation_state_1",
195
+ "observation_state_2",
196
+ "observation_state_3",
197
+ "observation_state_4",
198
+ "observation_state_5",
199
+ "observation_state_6",
200
+ "observation_state_7"
201
+ ],
202
+ "action": [
203
+ "action_0",
204
+ "action_1",
205
+ "action_2",
206
+ "action_3",
207
+ "action_4",
208
+ "action_5",
209
+ "action_6"
210
+ ]
211
+ },
212
+ "renamed_features": {
213
+ "next.reward": "next_reward",
214
+ "next.done": "next_done",
215
+ "index": "sample_index"
216
+ },
217
+ "dropped_features": [
218
+ "timestamp",
219
+ "observation.images.top_image",
220
+ "observation.images.wrist225_image",
221
+ "observation.images.wrist45_image",
222
+ "observation.images.image"
223
+ ],
224
+ "omitted_features": [
225
+ "observation.images.top_image",
226
+ "observation.images.wrist225_image",
227
+ "observation.images.wrist45_image",
228
+ "observation.images.image"
229
+ ],
230
+ "original_video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
231
+ "original_video_features": {
232
+ "observation.images.top_image": {
233
+ "dtype": "video",
234
+ "shape": [
235
+ 128,
236
+ 128,
237
+ 3
238
+ ],
239
+ "names": [
240
+ "height",
241
+ "width",
242
+ "channels"
243
+ ],
244
+ "video_info": {
245
+ "video.codec": "av1",
246
+ "video.pix_fmt": "yuv420p",
247
+ "video.is_depth_map": false,
248
+ "video.fps": 10,
249
+ "has_audio": false
250
+ }
251
+ },
252
+ "observation.images.wrist225_image": {
253
+ "dtype": "video",
254
+ "shape": [
255
+ 128,
256
+ 128,
257
+ 3
258
+ ],
259
+ "names": [
260
+ "height",
261
+ "width",
262
+ "channels"
263
+ ],
264
+ "video_info": {
265
+ "video.codec": "av1",
266
+ "video.pix_fmt": "yuv420p",
267
+ "video.is_depth_map": false,
268
+ "video.fps": 10,
269
+ "has_audio": false
270
+ }
271
+ },
272
+ "observation.images.wrist45_image": {
273
+ "dtype": "video",
274
+ "shape": [
275
+ 128,
276
+ 128,
277
+ 3
278
+ ],
279
+ "names": [
280
+ "height",
281
+ "width",
282
+ "channels"
283
+ ],
284
+ "video_info": {
285
+ "video.codec": "av1",
286
+ "video.pix_fmt": "yuv420p",
287
+ "video.is_depth_map": false,
288
+ "video.fps": 10,
289
+ "has_audio": false
290
+ }
291
+ },
292
+ "observation.images.image": {
293
+ "dtype": "video",
294
+ "shape": [
295
+ 128,
296
+ 128,
297
+ 3
298
+ ],
299
+ "names": [
300
+ "height",
301
+ "width",
302
+ "channels"
303
+ ],
304
+ "video_info": {
305
+ "video.codec": "av1",
306
+ "video.pix_fmt": "yuv420p",
307
+ "video.is_depth_map": false,
308
+ "video.fps": 10,
309
+ "has_audio": false
310
+ }
311
+ }
312
+ },
313
+ "original_video_source": "https://huggingface.co/datasets/lerobot/berkeley_cable_routing/tree/main/videos",
314
+ "video_policy": "Videos are not uploaded to this repository; use the original HuggingFace dataset videos."
315
+ }
316
+ }
meta/stats.json ADDED
@@ -0,0 +1,499 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "action": {
3
+ "min": [
4
+ -0.9809081554412842,
5
+ -0.9554349184036255,
6
+ -0.9994775056838989,
7
+ 0.0,
8
+ 0.0,
9
+ -1.0,
10
+ 0.0
11
+ ],
12
+ "max": [
13
+ 0.9633283019065857,
14
+ 1.0,
15
+ 1.0,
16
+ 0.0,
17
+ 0.0,
18
+ 1.0,
19
+ 0.0
20
+ ],
21
+ "mean": [
22
+ -0.07139886495566365,
23
+ 0.023609018296448615,
24
+ 0.10241932439500341,
25
+ 0.0,
26
+ 0.0,
27
+ 0.049671001923551616,
28
+ 0.0
29
+ ],
30
+ "std": [
31
+ 0.18154580822126598,
32
+ 0.18109730993228726,
33
+ 0.21220591228769695,
34
+ 0.0,
35
+ 0.0,
36
+ 0.3475549793847569,
37
+ 0.0
38
+ ],
39
+ "count": [
40
+ 42328
41
+ ]
42
+ },
43
+ "index": {
44
+ "min": [
45
+ 0
46
+ ],
47
+ "max": [
48
+ 42327
49
+ ],
50
+ "mean": [
51
+ 21163.5
52
+ ],
53
+ "std": [
54
+ 12219.041093719261
55
+ ],
56
+ "count": [
57
+ 42328
58
+ ]
59
+ },
60
+ "observation.images.wrist45_image": {
61
+ "min": [
62
+ [
63
+ [
64
+ 0.0
65
+ ]
66
+ ],
67
+ [
68
+ [
69
+ 0.0
70
+ ]
71
+ ],
72
+ [
73
+ [
74
+ 0.0
75
+ ]
76
+ ]
77
+ ],
78
+ "max": [
79
+ [
80
+ [
81
+ 1.0
82
+ ]
83
+ ],
84
+ [
85
+ [
86
+ 1.0
87
+ ]
88
+ ],
89
+ [
90
+ [
91
+ 1.0
92
+ ]
93
+ ]
94
+ ],
95
+ "mean": [
96
+ [
97
+ [
98
+ 0.5292779045660428
99
+ ]
100
+ ],
101
+ [
102
+ [
103
+ 0.5227236176197834
104
+ ]
105
+ ],
106
+ [
107
+ [
108
+ 0.53776490330713
109
+ ]
110
+ ]
111
+ ],
112
+ "std": [
113
+ [
114
+ [
115
+ 0.2064231178631786
116
+ ]
117
+ ],
118
+ [
119
+ [
120
+ 0.204613253558291
121
+ ]
122
+ ],
123
+ [
124
+ [
125
+ 0.19321197879974172
126
+ ]
127
+ ]
128
+ ],
129
+ "count": [
130
+ 42327
131
+ ]
132
+ },
133
+ "task_index": {
134
+ "min": [
135
+ 0
136
+ ],
137
+ "max": [
138
+ 0
139
+ ],
140
+ "mean": [
141
+ 0.0
142
+ ],
143
+ "std": [
144
+ 0.0
145
+ ],
146
+ "count": [
147
+ 42328
148
+ ]
149
+ },
150
+ "episode_index": {
151
+ "min": [
152
+ 0
153
+ ],
154
+ "max": [
155
+ 1646
156
+ ],
157
+ "mean": [
158
+ 812.2351398601398
159
+ ],
160
+ "std": [
161
+ 476.3292423562967
162
+ ],
163
+ "count": [
164
+ 42328
165
+ ]
166
+ },
167
+ "timestamp": {
168
+ "min": [
169
+ 0.0
170
+ ],
171
+ "max": [
172
+ 10.0
173
+ ],
174
+ "mean": [
175
+ 1.5814661753186654
176
+ ],
177
+ "std": [
178
+ 1.3194058693312007
179
+ ],
180
+ "count": [
181
+ 42328
182
+ ]
183
+ },
184
+ "frame_index": {
185
+ "min": [
186
+ 0
187
+ ],
188
+ "max": [
189
+ 100
190
+ ],
191
+ "mean": [
192
+ 15.81466168966169
193
+ ],
194
+ "std": [
195
+ 13.194058670600773
196
+ ],
197
+ "count": [
198
+ 42328
199
+ ]
200
+ },
201
+ "next.done": {
202
+ "min": [
203
+ false
204
+ ],
205
+ "max": [
206
+ true
207
+ ],
208
+ "mean": [
209
+ 0.03891041391041391
210
+ ],
211
+ "std": [
212
+ 0.1933814717074368
213
+ ],
214
+ "count": [
215
+ 42328
216
+ ]
217
+ },
218
+ "observation.state": {
219
+ "min": [
220
+ 0.378939151763916,
221
+ -0.3244381248950958,
222
+ 0.02827274054288864,
223
+ -0.7039517164230347,
224
+ -0.6985868215560913,
225
+ -0.03791733458638191,
226
+ -0.05024895444512367,
227
+ 0.0
228
+ ],
229
+ "max": [
230
+ 0.7113381028175354,
231
+ 0.35645395517349243,
232
+ 0.23969891667366028,
233
+ 0.9999983310699463,
234
+ 0.9999284744262695,
235
+ 0.03716812655329704,
236
+ 0.025727130472660065,
237
+ 0.0
238
+ ],
239
+ "mean": [
240
+ 0.5639025201953058,
241
+ 0.0026733338308766253,
242
+ 0.07475980276379546,
243
+ 0.8378770417677975,
244
+ 0.44955331707387813,
245
+ -0.005651914922399097,
246
+ 0.0015231495358639237,
247
+ 0.0
248
+ ],
249
+ "std": [
250
+ 0.03770950097628216,
251
+ 0.16724775995011107,
252
+ 0.031983265492170954,
253
+ 0.1486274601743131,
254
+ 0.27139836996314487,
255
+ 0.007635880830645733,
256
+ 0.004910831305947067,
257
+ 0.0
258
+ ],
259
+ "count": [
260
+ 42328
261
+ ]
262
+ },
263
+ "next.reward": {
264
+ "min": [
265
+ 0.0
266
+ ],
267
+ "max": [
268
+ 1.0
269
+ ],
270
+ "mean": [
271
+ 0.03891041450373381
272
+ ],
273
+ "std": [
274
+ 0.19338147065051672
275
+ ],
276
+ "count": [
277
+ 42328
278
+ ]
279
+ },
280
+ "observation.images.wrist225_image": {
281
+ "min": [
282
+ [
283
+ [
284
+ 0.0
285
+ ]
286
+ ],
287
+ [
288
+ [
289
+ 0.0313725508749485
290
+ ]
291
+ ],
292
+ [
293
+ [
294
+ 0.0
295
+ ]
296
+ ]
297
+ ],
298
+ "max": [
299
+ [
300
+ [
301
+ 1.0
302
+ ]
303
+ ],
304
+ [
305
+ [
306
+ 1.0
307
+ ]
308
+ ],
309
+ [
310
+ [
311
+ 1.0
312
+ ]
313
+ ]
314
+ ],
315
+ "mean": [
316
+ [
317
+ [
318
+ 0.5372966052264854
319
+ ]
320
+ ],
321
+ [
322
+ [
323
+ 0.5327087140106971
324
+ ]
325
+ ],
326
+ [
327
+ [
328
+ 0.5384220838825575
329
+ ]
330
+ ]
331
+ ],
332
+ "std": [
333
+ [
334
+ [
335
+ 0.18782882737815026
336
+ ]
337
+ ],
338
+ [
339
+ [
340
+ 0.18764953021134453
341
+ ]
342
+ ],
343
+ [
344
+ [
345
+ 0.1839327319564146
346
+ ]
347
+ ]
348
+ ],
349
+ "count": [
350
+ 42327
351
+ ]
352
+ },
353
+ "observation.images.image": {
354
+ "min": [
355
+ [
356
+ [
357
+ 0.0
358
+ ]
359
+ ],
360
+ [
361
+ [
362
+ 0.0
363
+ ]
364
+ ],
365
+ [
366
+ [
367
+ 0.0
368
+ ]
369
+ ]
370
+ ],
371
+ "max": [
372
+ [
373
+ [
374
+ 1.0
375
+ ]
376
+ ],
377
+ [
378
+ [
379
+ 1.0
380
+ ]
381
+ ],
382
+ [
383
+ [
384
+ 1.0
385
+ ]
386
+ ]
387
+ ],
388
+ "mean": [
389
+ [
390
+ [
391
+ 0.3160686128387676
392
+ ]
393
+ ],
394
+ [
395
+ [
396
+ 0.3082497909224695
397
+ ]
398
+ ],
399
+ [
400
+ [
401
+ 0.298740638515699
402
+ ]
403
+ ]
404
+ ],
405
+ "std": [
406
+ [
407
+ [
408
+ 0.14877834901637366
409
+ ]
410
+ ],
411
+ [
412
+ [
413
+ 0.14121075960952706
414
+ ]
415
+ ],
416
+ [
417
+ [
418
+ 0.13524661831207008
419
+ ]
420
+ ]
421
+ ],
422
+ "count": [
423
+ 42327
424
+ ]
425
+ },
426
+ "observation.images.top_image": {
427
+ "min": [
428
+ [
429
+ [
430
+ 0.0
431
+ ]
432
+ ],
433
+ [
434
+ [
435
+ 0.0
436
+ ]
437
+ ],
438
+ [
439
+ [
440
+ 0.0
441
+ ]
442
+ ]
443
+ ],
444
+ "max": [
445
+ [
446
+ [
447
+ 1.0
448
+ ]
449
+ ],
450
+ [
451
+ [
452
+ 1.0
453
+ ]
454
+ ],
455
+ [
456
+ [
457
+ 1.0
458
+ ]
459
+ ]
460
+ ],
461
+ "mean": [
462
+ [
463
+ [
464
+ 0.38435977680614924
465
+ ]
466
+ ],
467
+ [
468
+ [
469
+ 0.39638978356937893
470
+ ]
471
+ ],
472
+ [
473
+ [
474
+ 0.3965126071370383
475
+ ]
476
+ ]
477
+ ],
478
+ "std": [
479
+ [
480
+ [
481
+ 0.24888551302762088
482
+ ]
483
+ ],
484
+ [
485
+ [
486
+ 0.24072198388311578
487
+ ]
488
+ ],
489
+ [
490
+ [
491
+ 0.2392837781942899
492
+ ]
493
+ ]
494
+ ],
495
+ "count": [
496
+ 42327
497
+ ]
498
+ }
499
+ }
meta/tasks.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86f8fccd7efff90d518b23ac254d29b3683319f7b917763abc9e4d62e7f79f8f
3
+ size 2045