azithromycin commited on
Commit
ff4cc42
·
verified ·
1 Parent(s): bae0b62

Add TsFile (converted from unitreerobotics/G1_Dex3_BlockStacking_Dataset)

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/unitreerobotics_g1_dex3_blockstacking.tsfile filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,130 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - tsfile
7
+ - timeseries
8
+ - tabular
9
+ modality:
10
+ - timeseries
11
+ - tabular
12
+ pretty_name: G1 Dex3 Block Stacking TsFile
13
+ size_categories:
14
+ - 100K<n<1M
15
+ configs:
16
+ - config_name: default
17
+ data_files:
18
+ - split: train
19
+ path: data/unitreerobotics_g1_dex3_blockstacking.tsfile
20
+ ---
21
+
22
+ # G1 Dex3 Block Stacking TsFile
23
+
24
+ This repository is an Apache TsFile conversion of
25
+ [`unitreerobotics/G1_Dex3_BlockStacking_Dataset`](https://huggingface.co/datasets/unitreerobotics/G1_Dex3_BlockStacking_Dataset),
26
+ a LeRobot manipulation dataset for stacking three cubic blocks on a desktop in
27
+ red, yellow, and blue order.
28
+
29
+ ## Source dataset
30
+
31
+ - Original dataset: https://huggingface.co/datasets/unitreerobotics/G1_Dex3_BlockStacking_Dataset
32
+ - Author / repository owner: Unitree Robotics (`unitreerobotics`)
33
+ - Source-tree contributors shown by Hugging Face: `Henry-Ellis`, `lv-1`
34
+ - License: Apache-2.0
35
+ - Robot: Unitree G1, 7-DOF dual-arm, with three-finger Dex3 hands
36
+ - Recording frequency: 30 Hz
37
+ - Cameras: two head-mounted streams (`cam_left_high`, `cam_right_high`) and two wrist-mounted streams (`cam_left_wrist`, `cam_right_wrist`)
38
+ - Resolution: 640x480 RGB; source video codec is AV1
39
+ - Split: `train` (`0:301` episodes)
40
+ - Episodes / rows / tasks: 301 / 281,196 / 1
41
+ - Source data shards: 1 chunk / 1 Parquet file; source card reports 1,204 video files
42
+ - Source frame file: `data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet`
43
+
44
+ The task description in the original card is to stack three 5 cm cubic blocks on
45
+ black tape on the desktop from bottom to top in red, yellow, and blue order.
46
+
47
+ ## Converted files
48
+
49
+ - TsFile: `data/unitreerobotics_g1_dex3_blockstacking.tsfile`
50
+ - Table: `unitreerobotics_g1_dex3_blockstacking`
51
+ - Rows: 281,196
52
+ - Episodes: 301
53
+ - Episode files: 1 merged table-model TsFile
54
+ - Time precision: milliseconds
55
+ - Source metadata: `meta/tasks.parquet`, `meta/episodes/...`, and `meta/stats.json` are retained; `meta/info.json` documents the conversion.
56
+
57
+ ## Schema
58
+
59
+ | Role | Columns |
60
+ | --- | --- |
61
+ | TIME | `Time` (`INT64` timestamp, milliseconds) |
62
+ | TAG / device metadata | `episode_index`, `task_index` (original source names) |
63
+ | FIELD | `frame_index`, `sample_index` (renamed from source `index`) |
64
+ | FIELD FLOAT | `observation_state_0` ... `observation_state_27` |
65
+ | FIELD FLOAT | `action_0` ... `action_27` |
66
+
67
+ `Time = round(timestamp * 1000)`. The source timestamp is in seconds and
68
+ restarts at zero for each episode, so `Time` is monotonic within each
69
+ (`episode_index`, `task_index`) device. The source `timestamp` column is dropped
70
+ after synthesis because it is redundant with `Time / 1000`.
71
+
72
+ Vector columns are flattened row-major while preserving source prefixes:
73
+
74
+ - `observation.state[28]` -> `observation_state_0` ... `observation_state_27`
75
+ - `action[28]` -> `action_0` ... `action_27`
76
+
77
+ The source `index` is renamed to `sample_index`; `frame_index`,
78
+ `episode_index`, and `task_index` are preserved. No numeric state/action rows
79
+ are dropped. Image/video feature columns are not written into TsFile because
80
+ the local source Parquet contains numeric references only.
81
+
82
+ ## Encoding and compression
83
+
84
+ The compact TsFile profile is used to avoid producing a file larger than the
85
+ source Parquet:
86
+
87
+ - FLOAT/DOUBLE: `GORILLA` + `LZ4`
88
+ - INT32/INT64: `TS_2DIFF` + `LZ4`
89
+ - Time: `TS_2DIFF` + `LZ4`
90
+ - BOOLEAN: `RLE` + `LZ4` (no BOOLEAN fields are present in this dataset)
91
+ - TAG columns: TsFile table/device TAG mechanism
92
+
93
+ The staged Parquet and local validation report are kept outside the upload set
94
+ under `.conversion_work/`.
95
+
96
+ ## Videos and attribution
97
+
98
+ Videos are not included in this TsFile repository. They remain in the original
99
+ Hugging Face dataset at:
100
+
101
+ - [`videos/observation.images.cam_left_high`](https://huggingface.co/datasets/unitreerobotics/G1_Dex3_BlockStacking_Dataset/tree/main/videos/observation.images.cam_left_high)
102
+ - [`videos/observation.images.cam_left_wrist`](https://huggingface.co/datasets/unitreerobotics/G1_Dex3_BlockStacking_Dataset/tree/main/videos/observation.images.cam_left_wrist)
103
+ - [`videos/observation.images.cam_right_high`](https://huggingface.co/datasets/unitreerobotics/G1_Dex3_BlockStacking_Dataset/tree/main/videos/observation.images.cam_right_high)
104
+ - [`videos/observation.images.cam_right_wrist`](https://huggingface.co/datasets/unitreerobotics/G1_Dex3_BlockStacking_Dataset/tree/main/videos/observation.images.cam_right_wrist)
105
+
106
+ The source metadata video pattern is
107
+ `videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4`.
108
+ `episode_index` and `frame_index` remain unchanged in the TsFile so consumers
109
+ can align a time-series row with its original video frame.
110
+
111
+ ## Read example
112
+
113
+ ```python
114
+ import sys
115
+ sys.path.insert(0, r"D:\\code\\.deps")
116
+ from tsfile import TsFileReader
117
+
118
+ path = r"D:\\code\\py\\unitreerobotics_G1_Dex3_BlockStacking_Dataset\\data\\unitreerobotics_g1_dex3_blockstacking.tsfile"
119
+ reader = TsFileReader(path)
120
+ table = reader.get_all_table_schemas()["unitreerobotics_g1_dex3_blockstacking"]
121
+ columns = [c.get_column_name() for c in table.get_columns() if c.get_column_name() != "Time"]
122
+ with reader.query_table("unitreerobotics_g1_dex3_blockstacking", columns, batch_size=65536) as result:
123
+ batch = result.read_arrow_batch()
124
+ ```
125
+
126
+ ## Citation
127
+
128
+ Please cite the original Unitree Robotics dataset repository and the LeRobot
129
+ project when using this conversion. No separate paper or BibTeX entry was
130
+ provided in the source dataset card.
data/unitreerobotics_g1_dex3_blockstacking.tsfile ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea82ce1b96f848a9e6c54fe97aac439c1c8b7a4d6b679def2243c21abc035fa4
3
+ size 51445810
meta/episodes/chunk-000/file-000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:127bf236532cde778b197774f94e1869de6e5db7ab08aa7296baad737e1ba658
3
+ size 678425
meta/info.json ADDED
@@ -0,0 +1,638 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "codebase_version": "v3.0",
3
+ "robot_type": "Unitree_G1",
4
+ "total_episodes": 301,
5
+ "total_frames": 281196,
6
+ "total_tasks": 1,
7
+ "chunks_size": 1000,
8
+ "fps": 30.0,
9
+ "splits": {
10
+ "train": "0:301"
11
+ },
12
+ "data_path": "data/unitreerobotics_g1_dex3_blockstacking.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
+ "source": "index"
50
+ },
51
+ "observation_state_0": {
52
+ "dtype": "float32",
53
+ "shape": [
54
+ 1
55
+ ],
56
+ "tsfile_role": "FIELD",
57
+ "source": "observation.state"
58
+ },
59
+ "observation_state_1": {
60
+ "dtype": "float32",
61
+ "shape": [
62
+ 1
63
+ ],
64
+ "tsfile_role": "FIELD",
65
+ "source": "observation.state"
66
+ },
67
+ "observation_state_2": {
68
+ "dtype": "float32",
69
+ "shape": [
70
+ 1
71
+ ],
72
+ "tsfile_role": "FIELD",
73
+ "source": "observation.state"
74
+ },
75
+ "observation_state_3": {
76
+ "dtype": "float32",
77
+ "shape": [
78
+ 1
79
+ ],
80
+ "tsfile_role": "FIELD",
81
+ "source": "observation.state"
82
+ },
83
+ "observation_state_4": {
84
+ "dtype": "float32",
85
+ "shape": [
86
+ 1
87
+ ],
88
+ "tsfile_role": "FIELD",
89
+ "source": "observation.state"
90
+ },
91
+ "observation_state_5": {
92
+ "dtype": "float32",
93
+ "shape": [
94
+ 1
95
+ ],
96
+ "tsfile_role": "FIELD",
97
+ "source": "observation.state"
98
+ },
99
+ "observation_state_6": {
100
+ "dtype": "float32",
101
+ "shape": [
102
+ 1
103
+ ],
104
+ "tsfile_role": "FIELD",
105
+ "source": "observation.state"
106
+ },
107
+ "observation_state_7": {
108
+ "dtype": "float32",
109
+ "shape": [
110
+ 1
111
+ ],
112
+ "tsfile_role": "FIELD",
113
+ "source": "observation.state"
114
+ },
115
+ "observation_state_8": {
116
+ "dtype": "float32",
117
+ "shape": [
118
+ 1
119
+ ],
120
+ "tsfile_role": "FIELD",
121
+ "source": "observation.state"
122
+ },
123
+ "observation_state_9": {
124
+ "dtype": "float32",
125
+ "shape": [
126
+ 1
127
+ ],
128
+ "tsfile_role": "FIELD",
129
+ "source": "observation.state"
130
+ },
131
+ "observation_state_10": {
132
+ "dtype": "float32",
133
+ "shape": [
134
+ 1
135
+ ],
136
+ "tsfile_role": "FIELD",
137
+ "source": "observation.state"
138
+ },
139
+ "observation_state_11": {
140
+ "dtype": "float32",
141
+ "shape": [
142
+ 1
143
+ ],
144
+ "tsfile_role": "FIELD",
145
+ "source": "observation.state"
146
+ },
147
+ "observation_state_12": {
148
+ "dtype": "float32",
149
+ "shape": [
150
+ 1
151
+ ],
152
+ "tsfile_role": "FIELD",
153
+ "source": "observation.state"
154
+ },
155
+ "observation_state_13": {
156
+ "dtype": "float32",
157
+ "shape": [
158
+ 1
159
+ ],
160
+ "tsfile_role": "FIELD",
161
+ "source": "observation.state"
162
+ },
163
+ "observation_state_14": {
164
+ "dtype": "float32",
165
+ "shape": [
166
+ 1
167
+ ],
168
+ "tsfile_role": "FIELD",
169
+ "source": "observation.state"
170
+ },
171
+ "observation_state_15": {
172
+ "dtype": "float32",
173
+ "shape": [
174
+ 1
175
+ ],
176
+ "tsfile_role": "FIELD",
177
+ "source": "observation.state"
178
+ },
179
+ "observation_state_16": {
180
+ "dtype": "float32",
181
+ "shape": [
182
+ 1
183
+ ],
184
+ "tsfile_role": "FIELD",
185
+ "source": "observation.state"
186
+ },
187
+ "observation_state_17": {
188
+ "dtype": "float32",
189
+ "shape": [
190
+ 1
191
+ ],
192
+ "tsfile_role": "FIELD",
193
+ "source": "observation.state"
194
+ },
195
+ "observation_state_18": {
196
+ "dtype": "float32",
197
+ "shape": [
198
+ 1
199
+ ],
200
+ "tsfile_role": "FIELD",
201
+ "source": "observation.state"
202
+ },
203
+ "observation_state_19": {
204
+ "dtype": "float32",
205
+ "shape": [
206
+ 1
207
+ ],
208
+ "tsfile_role": "FIELD",
209
+ "source": "observation.state"
210
+ },
211
+ "observation_state_20": {
212
+ "dtype": "float32",
213
+ "shape": [
214
+ 1
215
+ ],
216
+ "tsfile_role": "FIELD",
217
+ "source": "observation.state"
218
+ },
219
+ "observation_state_21": {
220
+ "dtype": "float32",
221
+ "shape": [
222
+ 1
223
+ ],
224
+ "tsfile_role": "FIELD",
225
+ "source": "observation.state"
226
+ },
227
+ "observation_state_22": {
228
+ "dtype": "float32",
229
+ "shape": [
230
+ 1
231
+ ],
232
+ "tsfile_role": "FIELD",
233
+ "source": "observation.state"
234
+ },
235
+ "observation_state_23": {
236
+ "dtype": "float32",
237
+ "shape": [
238
+ 1
239
+ ],
240
+ "tsfile_role": "FIELD",
241
+ "source": "observation.state"
242
+ },
243
+ "observation_state_24": {
244
+ "dtype": "float32",
245
+ "shape": [
246
+ 1
247
+ ],
248
+ "tsfile_role": "FIELD",
249
+ "source": "observation.state"
250
+ },
251
+ "observation_state_25": {
252
+ "dtype": "float32",
253
+ "shape": [
254
+ 1
255
+ ],
256
+ "tsfile_role": "FIELD",
257
+ "source": "observation.state"
258
+ },
259
+ "observation_state_26": {
260
+ "dtype": "float32",
261
+ "shape": [
262
+ 1
263
+ ],
264
+ "tsfile_role": "FIELD",
265
+ "source": "observation.state"
266
+ },
267
+ "observation_state_27": {
268
+ "dtype": "float32",
269
+ "shape": [
270
+ 1
271
+ ],
272
+ "tsfile_role": "FIELD",
273
+ "source": "observation.state"
274
+ },
275
+ "action_0": {
276
+ "dtype": "float32",
277
+ "shape": [
278
+ 1
279
+ ],
280
+ "tsfile_role": "FIELD",
281
+ "source": "action"
282
+ },
283
+ "action_1": {
284
+ "dtype": "float32",
285
+ "shape": [
286
+ 1
287
+ ],
288
+ "tsfile_role": "FIELD",
289
+ "source": "action"
290
+ },
291
+ "action_2": {
292
+ "dtype": "float32",
293
+ "shape": [
294
+ 1
295
+ ],
296
+ "tsfile_role": "FIELD",
297
+ "source": "action"
298
+ },
299
+ "action_3": {
300
+ "dtype": "float32",
301
+ "shape": [
302
+ 1
303
+ ],
304
+ "tsfile_role": "FIELD",
305
+ "source": "action"
306
+ },
307
+ "action_4": {
308
+ "dtype": "float32",
309
+ "shape": [
310
+ 1
311
+ ],
312
+ "tsfile_role": "FIELD",
313
+ "source": "action"
314
+ },
315
+ "action_5": {
316
+ "dtype": "float32",
317
+ "shape": [
318
+ 1
319
+ ],
320
+ "tsfile_role": "FIELD",
321
+ "source": "action"
322
+ },
323
+ "action_6": {
324
+ "dtype": "float32",
325
+ "shape": [
326
+ 1
327
+ ],
328
+ "tsfile_role": "FIELD",
329
+ "source": "action"
330
+ },
331
+ "action_7": {
332
+ "dtype": "float32",
333
+ "shape": [
334
+ 1
335
+ ],
336
+ "tsfile_role": "FIELD",
337
+ "source": "action"
338
+ },
339
+ "action_8": {
340
+ "dtype": "float32",
341
+ "shape": [
342
+ 1
343
+ ],
344
+ "tsfile_role": "FIELD",
345
+ "source": "action"
346
+ },
347
+ "action_9": {
348
+ "dtype": "float32",
349
+ "shape": [
350
+ 1
351
+ ],
352
+ "tsfile_role": "FIELD",
353
+ "source": "action"
354
+ },
355
+ "action_10": {
356
+ "dtype": "float32",
357
+ "shape": [
358
+ 1
359
+ ],
360
+ "tsfile_role": "FIELD",
361
+ "source": "action"
362
+ },
363
+ "action_11": {
364
+ "dtype": "float32",
365
+ "shape": [
366
+ 1
367
+ ],
368
+ "tsfile_role": "FIELD",
369
+ "source": "action"
370
+ },
371
+ "action_12": {
372
+ "dtype": "float32",
373
+ "shape": [
374
+ 1
375
+ ],
376
+ "tsfile_role": "FIELD",
377
+ "source": "action"
378
+ },
379
+ "action_13": {
380
+ "dtype": "float32",
381
+ "shape": [
382
+ 1
383
+ ],
384
+ "tsfile_role": "FIELD",
385
+ "source": "action"
386
+ },
387
+ "action_14": {
388
+ "dtype": "float32",
389
+ "shape": [
390
+ 1
391
+ ],
392
+ "tsfile_role": "FIELD",
393
+ "source": "action"
394
+ },
395
+ "action_15": {
396
+ "dtype": "float32",
397
+ "shape": [
398
+ 1
399
+ ],
400
+ "tsfile_role": "FIELD",
401
+ "source": "action"
402
+ },
403
+ "action_16": {
404
+ "dtype": "float32",
405
+ "shape": [
406
+ 1
407
+ ],
408
+ "tsfile_role": "FIELD",
409
+ "source": "action"
410
+ },
411
+ "action_17": {
412
+ "dtype": "float32",
413
+ "shape": [
414
+ 1
415
+ ],
416
+ "tsfile_role": "FIELD",
417
+ "source": "action"
418
+ },
419
+ "action_18": {
420
+ "dtype": "float32",
421
+ "shape": [
422
+ 1
423
+ ],
424
+ "tsfile_role": "FIELD",
425
+ "source": "action"
426
+ },
427
+ "action_19": {
428
+ "dtype": "float32",
429
+ "shape": [
430
+ 1
431
+ ],
432
+ "tsfile_role": "FIELD",
433
+ "source": "action"
434
+ },
435
+ "action_20": {
436
+ "dtype": "float32",
437
+ "shape": [
438
+ 1
439
+ ],
440
+ "tsfile_role": "FIELD",
441
+ "source": "action"
442
+ },
443
+ "action_21": {
444
+ "dtype": "float32",
445
+ "shape": [
446
+ 1
447
+ ],
448
+ "tsfile_role": "FIELD",
449
+ "source": "action"
450
+ },
451
+ "action_22": {
452
+ "dtype": "float32",
453
+ "shape": [
454
+ 1
455
+ ],
456
+ "tsfile_role": "FIELD",
457
+ "source": "action"
458
+ },
459
+ "action_23": {
460
+ "dtype": "float32",
461
+ "shape": [
462
+ 1
463
+ ],
464
+ "tsfile_role": "FIELD",
465
+ "source": "action"
466
+ },
467
+ "action_24": {
468
+ "dtype": "float32",
469
+ "shape": [
470
+ 1
471
+ ],
472
+ "tsfile_role": "FIELD",
473
+ "source": "action"
474
+ },
475
+ "action_25": {
476
+ "dtype": "float32",
477
+ "shape": [
478
+ 1
479
+ ],
480
+ "tsfile_role": "FIELD",
481
+ "source": "action"
482
+ },
483
+ "action_26": {
484
+ "dtype": "float32",
485
+ "shape": [
486
+ 1
487
+ ],
488
+ "tsfile_role": "FIELD",
489
+ "source": "action"
490
+ },
491
+ "action_27": {
492
+ "dtype": "float32",
493
+ "shape": [
494
+ 1
495
+ ],
496
+ "tsfile_role": "FIELD",
497
+ "source": "action"
498
+ }
499
+ },
500
+ "data_files_size_in_mb": 100,
501
+ "video_files_size_in_mb": 500,
502
+ "video_path_original": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
503
+ "tsfile_conversion": {
504
+ "source_dataset": "unitreerobotics/G1_Dex3_BlockStacking_Dataset",
505
+ "source_data_path": "data/unitreerobotics_g1_dex3_blockstacking.tsfile",
506
+ "converted_data_path": "data/unitreerobotics_g1_dex3_blockstacking.tsfile",
507
+ "table_name": "unitreerobotics_g1_dex3_blockstacking",
508
+ "granularity": "merged",
509
+ "time_precision": "ms",
510
+ "time_mapping": {
511
+ "source": "timestamp",
512
+ "fps": 30,
513
+ "unit": "milliseconds",
514
+ "formula": "Time = round(timestamp * 1000); timestamp resets per episode"
515
+ },
516
+ "tag_columns": [
517
+ "episode_index",
518
+ "task_index"
519
+ ],
520
+ "row_count": 281196,
521
+ "episode_file_count": 1,
522
+ "feature_source": "features describe the converted TsFile schema",
523
+ "flattened_features": {
524
+ "observation.state": "observation_state_0..observation_state_27",
525
+ "action": "action_0..action_27"
526
+ },
527
+ "renamed_features": {
528
+ "index": "sample_index"
529
+ },
530
+ "dropped_features": [
531
+ "timestamp"
532
+ ],
533
+ "omitted_features": [
534
+ "observation.images.cam_left_high",
535
+ "observation.images.cam_left_wrist",
536
+ "observation.images.cam_right_high",
537
+ "observation.images.cam_right_wrist"
538
+ ],
539
+ "original_video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
540
+ "original_video_features": {
541
+ "observation.images.cam_left_high": {
542
+ "dtype": "video",
543
+ "shape": [
544
+ 3,
545
+ 480,
546
+ 640
547
+ ],
548
+ "names": [
549
+ "channels",
550
+ "height",
551
+ "width"
552
+ ],
553
+ "info": {
554
+ "video.fps": 30.0,
555
+ "video.height": 480,
556
+ "video.width": 640,
557
+ "video.channels": 3,
558
+ "video.codec": "av1",
559
+ "video.pix_fmt": "yuv420p",
560
+ "video.is_depth_map": false,
561
+ "has_audio": false
562
+ }
563
+ },
564
+ "observation.images.cam_left_wrist": {
565
+ "dtype": "video",
566
+ "shape": [
567
+ 3,
568
+ 480,
569
+ 640
570
+ ],
571
+ "names": [
572
+ "channels",
573
+ "height",
574
+ "width"
575
+ ],
576
+ "info": {
577
+ "video.fps": 30.0,
578
+ "video.height": 480,
579
+ "video.width": 640,
580
+ "video.channels": 3,
581
+ "video.codec": "av1",
582
+ "video.pix_fmt": "yuv420p",
583
+ "video.is_depth_map": false,
584
+ "has_audio": false
585
+ }
586
+ },
587
+ "observation.images.cam_right_high": {
588
+ "dtype": "video",
589
+ "shape": [
590
+ 3,
591
+ 480,
592
+ 640
593
+ ],
594
+ "names": [
595
+ "channels",
596
+ "height",
597
+ "width"
598
+ ],
599
+ "info": {
600
+ "video.fps": 30.0,
601
+ "video.height": 480,
602
+ "video.width": 640,
603
+ "video.channels": 3,
604
+ "video.codec": "av1",
605
+ "video.pix_fmt": "yuv420p",
606
+ "video.is_depth_map": false,
607
+ "has_audio": false
608
+ }
609
+ },
610
+ "observation.images.cam_right_wrist": {
611
+ "dtype": "video",
612
+ "shape": [
613
+ 3,
614
+ 480,
615
+ 640
616
+ ],
617
+ "names": [
618
+ "channels",
619
+ "height",
620
+ "width"
621
+ ],
622
+ "info": {
623
+ "video.fps": 30.0,
624
+ "video.height": 480,
625
+ "video.width": 640,
626
+ "video.channels": 3,
627
+ "video.codec": "av1",
628
+ "video.pix_fmt": "yuv420p",
629
+ "video.is_depth_map": false,
630
+ "has_audio": false
631
+ }
632
+ }
633
+ },
634
+ "frame_video_alignment": "frame_index and episode_index remain unchanged; source videos remain in the original Hugging Face dataset",
635
+ "video_policy": "Videos are not included in this TsFile repository.",
636
+ "original_video_source": "https://huggingface.co/datasets/unitreerobotics/G1_Dex3_BlockStacking_Dataset/tree/main/videos"
637
+ }
638
+ }
meta/stats.json ADDED
@@ -0,0 +1,629 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "observation.images.cam_right_high": {
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.5065798633793634
41
+ ]
42
+ ],
43
+ [
44
+ [
45
+ 0.499573790773689
46
+ ]
47
+ ],
48
+ [
49
+ [
50
+ 0.4709063408189684
51
+ ]
52
+ ]
53
+ ],
54
+ "std": [
55
+ [
56
+ [
57
+ 0.23873019810985247
58
+ ]
59
+ ],
60
+ [
61
+ [
62
+ 0.23262613650875938
63
+ ]
64
+ ],
65
+ [
66
+ [
67
+ 0.23849618785463422
68
+ ]
69
+ ]
70
+ ],
71
+ "count": [
72
+ 50388
73
+ ]
74
+ },
75
+ "observation.images.cam_left_wrist": {
76
+ "min": [
77
+ [
78
+ [
79
+ 0.0
80
+ ]
81
+ ],
82
+ [
83
+ [
84
+ 0.0
85
+ ]
86
+ ],
87
+ [
88
+ [
89
+ 0.0
90
+ ]
91
+ ]
92
+ ],
93
+ "max": [
94
+ [
95
+ [
96
+ 1.0
97
+ ]
98
+ ],
99
+ [
100
+ [
101
+ 1.0
102
+ ]
103
+ ],
104
+ [
105
+ [
106
+ 1.0
107
+ ]
108
+ ]
109
+ ],
110
+ "mean": [
111
+ [
112
+ [
113
+ 0.43317515058686185
114
+ ]
115
+ ],
116
+ [
117
+ [
118
+ 0.4269818053302466
119
+ ]
120
+ ],
121
+ [
122
+ [
123
+ 0.4134873692542161
124
+ ]
125
+ ]
126
+ ],
127
+ "std": [
128
+ [
129
+ [
130
+ 0.3018915022846747
131
+ ]
132
+ ],
133
+ [
134
+ [
135
+ 0.28479098141746156
136
+ ]
137
+ ],
138
+ [
139
+ [
140
+ 0.29928073327490484
141
+ ]
142
+ ]
143
+ ],
144
+ "count": [
145
+ 50388
146
+ ]
147
+ },
148
+ "observation.state": {
149
+ "min": [
150
+ -1.4550118446350098,
151
+ -0.06949806213378906,
152
+ -1.0511047840118408,
153
+ -1.03071928024292,
154
+ -0.4975949823856354,
155
+ -1.5453640222549438,
156
+ -1.3530008792877197,
157
+ -1.5718340873718262,
158
+ -1.1841716766357422,
159
+ -0.5344080924987793,
160
+ -1.0334393978118896,
161
+ -1.6194305419921875,
162
+ -1.5786588191986084,
163
+ -0.9749836921691895,
164
+ -1.0097272396087646,
165
+ 0.5789667367935181,
166
+ 0.017472300678491592,
167
+ -1.3936595916748047,
168
+ -2.083012104034424,
169
+ -1.089174509048462,
170
+ -2.0832393169403076,
171
+ -1.006208062171936,
172
+ -1.0547640323638916,
173
+ -1.0409409999847412,
174
+ -0.1988460272550583,
175
+ 0.009620487689971924,
176
+ -0.17772997915744781,
177
+ 0.008674941025674343
178
+ ],
179
+ "max": [
180
+ 0.5277786254882812,
181
+ 1.2103934288024902,
182
+ 0.5151016712188721,
183
+ 1.2654342651367188,
184
+ 1.7501063346862793,
185
+ 1.3493192195892334,
186
+ 0.9137319326400757,
187
+ 0.4504079818725586,
188
+ 0.0651240348815918,
189
+ 1.0999765396118164,
190
+ 1.3758091926574707,
191
+ 0.5103821754455566,
192
+ 1.2686320543289185,
193
+ 1.3807964324951172,
194
+ 0.1522921770811081,
195
+ 1.102331519126892,
196
+ 1.3545994758605957,
197
+ 0.1950070858001709,
198
+ -0.008813309483230114,
199
+ 0.2671687602996826,
200
+ -0.008364483714103699,
201
+ 0.026381712406873703,
202
+ -0.608210563659668,
203
+ -0.018412526696920395,
204
+ 1.645692229270935,
205
+ 2.085045099258423,
206
+ 1.453798770904541,
207
+ 2.090496778488159
208
+ ],
209
+ "mean": [
210
+ -0.3879570338915728,
211
+ 0.406045771019502,
212
+ 0.030620826597169505,
213
+ 0.0153625362322646,
214
+ 0.18191544733714546,
215
+ -0.017870269144278392,
216
+ -0.2689767563619761,
217
+ -0.5856638683315999,
218
+ -0.3806495197225512,
219
+ 0.06649060502480358,
220
+ 0.22811650194986233,
221
+ -0.12437720100303967,
222
+ -0.08365296632761351,
223
+ 0.34734994966232746,
224
+ -0.660358510889526,
225
+ 0.9788968457818484,
226
+ 0.36423653253475763,
227
+ 0.019067380869776798,
228
+ -0.07370557479993016,
229
+ -0.003843636020952974,
230
+ -0.37196278344523265,
231
+ -0.6061184709097405,
232
+ -0.9288628173178582,
233
+ -0.30492653122713365,
234
+ 0.023877166274315405,
235
+ 0.06866707648311189,
236
+ 0.07063117104538347,
237
+ 0.4259628477190553
238
+ ],
239
+ "std": [
240
+ 0.3063564384914223,
241
+ 0.2564313158539211,
242
+ 0.20863197237871364,
243
+ 0.27999546581300755,
244
+ 0.37397801500673294,
245
+ 0.28963928888180074,
246
+ 0.2777241946248484,
247
+ 0.3590919183799878,
248
+ 0.2687899695042939,
249
+ 0.2276301639384855,
250
+ 0.4077093638109428,
251
+ 0.3553332059817898,
252
+ 0.41973349729319087,
253
+ 0.29871516780037494,
254
+ 0.1497017626098519,
255
+ 0.07618077620180567,
256
+ 0.2695007548897285,
257
+ 0.2009185129244596,
258
+ 0.20752493898887106,
259
+ 0.2209242762247575,
260
+ 0.5601667997834916,
261
+ 0.14341892347115645,
262
+ 0.11111770760255912,
263
+ 0.28936093047193245,
264
+ 0.2413145127758061,
265
+ 0.20257278038838952,
266
+ 0.2726272910282082,
267
+ 0.5613446105358886
268
+ ],
269
+ "count": [
270
+ 281196
271
+ ]
272
+ },
273
+ "observation.images.cam_right_wrist": {
274
+ "min": [
275
+ [
276
+ [
277
+ 0.0
278
+ ]
279
+ ],
280
+ [
281
+ [
282
+ 0.0
283
+ ]
284
+ ],
285
+ [
286
+ [
287
+ 0.0
288
+ ]
289
+ ]
290
+ ],
291
+ "max": [
292
+ [
293
+ [
294
+ 1.0
295
+ ]
296
+ ],
297
+ [
298
+ [
299
+ 1.0
300
+ ]
301
+ ],
302
+ [
303
+ [
304
+ 1.0
305
+ ]
306
+ ]
307
+ ],
308
+ "mean": [
309
+ [
310
+ [
311
+ 0.4179111509412738
312
+ ]
313
+ ],
314
+ [
315
+ [
316
+ 0.4164055886421779
317
+ ]
318
+ ],
319
+ [
320
+ [
321
+ 0.4026551431567932
322
+ ]
323
+ ]
324
+ ],
325
+ "std": [
326
+ [
327
+ [
328
+ 0.3065409739465407
329
+ ]
330
+ ],
331
+ [
332
+ [
333
+ 0.28548764970782897
334
+ ]
335
+ ],
336
+ [
337
+ [
338
+ 0.29872460492143454
339
+ ]
340
+ ]
341
+ ],
342
+ "count": [
343
+ 50388
344
+ ]
345
+ },
346
+ "episode_index": {
347
+ "min": [
348
+ 0
349
+ ],
350
+ "max": [
351
+ 300
352
+ ],
353
+ "mean": [
354
+ 146.44165635357544
355
+ ],
356
+ "std": [
357
+ 86.17670232645737
358
+ ],
359
+ "count": [
360
+ 281196
361
+ ]
362
+ },
363
+ "index": {
364
+ "min": [
365
+ 0
366
+ ],
367
+ "max": [
368
+ 281195
369
+ ],
370
+ "mean": [
371
+ 140597.5
372
+ ],
373
+ "std": [
374
+ 81174.29314700971
375
+ ],
376
+ "count": [
377
+ 281196
378
+ ]
379
+ },
380
+ "timestamp": {
381
+ "min": [
382
+ 0.0
383
+ ],
384
+ "max": [
385
+ 226.3333282470703
386
+ ],
387
+ "mean": [
388
+ 17.958870093682307
389
+ ],
390
+ "std": [
391
+ 20.42315269176781
392
+ ],
393
+ "count": [
394
+ 281196
395
+ ]
396
+ },
397
+ "observation.images.cam_left_high": {
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.5047508094244186
436
+ ]
437
+ ],
438
+ [
439
+ [
440
+ 0.49904107562727407
441
+ ]
442
+ ],
443
+ [
444
+ [
445
+ 0.4707569804598843
446
+ ]
447
+ ]
448
+ ],
449
+ "std": [
450
+ [
451
+ [
452
+ 0.24257420341280794
453
+ ]
454
+ ],
455
+ [
456
+ [
457
+ 0.23630871385769248
458
+ ]
459
+ ],
460
+ [
461
+ [
462
+ 0.24121710847897557
463
+ ]
464
+ ]
465
+ ],
466
+ "count": [
467
+ 50388
468
+ ]
469
+ },
470
+ "action": {
471
+ "min": [
472
+ -1.5019830465316772,
473
+ -0.10465461015701294,
474
+ -1.0579173564910889,
475
+ -1.0471996068954468,
476
+ -0.5072725415229797,
477
+ -1.550949215888977,
478
+ -1.3590999841690063,
479
+ -1.7829570770263672,
480
+ -1.2025178670883179,
481
+ -0.5489614605903625,
482
+ -1.0471985340118408,
483
+ -1.6240100860595703,
484
+ -1.6144194602966309,
485
+ -0.9865021705627441,
486
+ -1.0471975803375244,
487
+ 0.5694321990013123,
488
+ 0.014022723771631718,
489
+ -1.6959482431411743,
490
+ -2.094395160675049,
491
+ -1.7615234851837158,
492
+ -2.094395160675049,
493
+ -1.0471912622451782,
494
+ -1.0471975803375244,
495
+ -1.0937144756317139,
496
+ -0.19198620319366455,
497
+ 2.9761647249808044e-24,
498
+ -0.19198620319366455,
499
+ 1.3522716746171002e-22
500
+ ],
501
+ "max": [
502
+ 0.5354967713356018,
503
+ 1.2286391258239746,
504
+ 0.5269407629966736,
505
+ 1.2704854011535645,
506
+ 1.755934238433838,
507
+ 1.3575888872146606,
508
+ 0.9239657521247864,
509
+ 0.4525030553340912,
510
+ 0.0873638242483139,
511
+ 1.1086024045944214,
512
+ 1.3864336013793945,
513
+ 0.5220990777015686,
514
+ 1.2726393938064575,
515
+ 1.3873311281204224,
516
+ 0.2105439007282257,
517
+ 1.0471975803375244,
518
+ 1.3984010219573975,
519
+ 0.19198620319366455,
520
+ -5.992518126550274e-23,
521
+ 0.19198620319366455,
522
+ -1.973005091110833e-21,
523
+ 0.09095222502946854,
524
+ -0.5916794538497925,
525
+ -0.014052720740437508,
526
+ 1.8325787782669067,
527
+ 2.094395160675049,
528
+ 1.6477811336517334,
529
+ 2.094395160675049
530
+ ],
531
+ "mean": [
532
+ -0.3863716232279148,
533
+ 0.39396745931167926,
534
+ 0.03431103041024928,
535
+ 0.009708200981389132,
536
+ 0.1722526341176066,
537
+ -0.019659362631351037,
538
+ -0.2612263374912693,
539
+ -0.5985700725298305,
540
+ -0.3845521863919965,
541
+ 0.06264817118491087,
542
+ 0.22825635141298742,
543
+ -0.12034727742691051,
544
+ -0.08447122011764718,
545
+ 0.34836003202886967,
546
+ -0.6551615797052873,
547
+ 1.0180872826390532,
548
+ 0.3756216246046298,
549
+ 0.03195931616074032,
550
+ -0.0710212018352759,
551
+ -0.0193650092538984,
552
+ -0.4033019803063864,
553
+ -0.6000273627620766,
554
+ -0.974619178094293,
555
+ -0.31548782881519905,
556
+ 0.010893788211935781,
557
+ 0.061587314852270404,
558
+ 0.08377548985850203,
559
+ 0.47268790923342574
560
+ ],
561
+ "std": [
562
+ 0.3104076833416323,
563
+ 0.24750707931350968,
564
+ 0.20972880206346728,
565
+ 0.2866169093069513,
566
+ 0.37252944644641034,
567
+ 0.2891084125434007,
568
+ 0.27607984396334756,
569
+ 0.3587734270584708,
570
+ 0.2686221540814786,
571
+ 0.2289337592155076,
572
+ 0.4082793531716458,
573
+ 0.35700841826630403,
574
+ 0.4206615200863807,
575
+ 0.29836216627340867,
576
+ 0.16762746861973923,
577
+ 0.058268190875271485,
578
+ 0.2606954802049171,
579
+ 0.2009716069388043,
580
+ 0.21631555781808606,
581
+ 0.24962205905952237,
582
+ 0.6308774557387031,
583
+ 0.15321309196122707,
584
+ 0.08768955931412543,
585
+ 0.2823158928236974,
586
+ 0.2406561448279678,
587
+ 0.2104461906537746,
588
+ 0.3059273470978774,
589
+ 0.6513390576277714
590
+ ],
591
+ "count": [
592
+ 281196
593
+ ]
594
+ },
595
+ "frame_index": {
596
+ "min": [
597
+ 0
598
+ ],
599
+ "max": [
600
+ 6790
601
+ ],
602
+ "mean": [
603
+ 538.7661026472638
604
+ ],
605
+ "std": [
606
+ 612.6945614168259
607
+ ],
608
+ "count": [
609
+ 281196
610
+ ]
611
+ },
612
+ "task_index": {
613
+ "min": [
614
+ 0
615
+ ],
616
+ "max": [
617
+ 0
618
+ ],
619
+ "mean": [
620
+ 0.0
621
+ ],
622
+ "std": [
623
+ 0.0
624
+ ],
625
+ "count": [
626
+ 281196
627
+ ]
628
+ }
629
+ }
meta/tasks.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7bbcf6b738f9b336dade138404208e9ada671c50be38eb5e460ba443668330aa
3
+ size 2131