Add validated TsFile conversion from grboguz/test_lfs

#1
by jzpeng - opened
.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/grboguz_test_lfs_train.tsfile filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,3 +1,156 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ authors:
4
+ - grboguz
5
+ task_categories:
6
+ - robotics
7
+ tags:
8
+ - tsfile
9
+ - timeseries
10
+ - tabular
11
+ - robotics
12
+ - lerobot
13
+ - sentinel_v2
14
+ - manipulation
15
+ - tutorial
16
+ modality:
17
+ - timeseries
18
+ - tabular
19
+ pretty_name: grboguz test_lfs TsFile
20
+ configs:
21
+ - config_name: default
22
+ data_files:
23
+ - split: train
24
+ path: data/grboguz_test_lfs_train.tsfile
25
+ size_categories:
26
+ - 10K<n<100K
27
+ ---
28
+
29
+ # grboguz/test_lfs TsFile
30
+
31
+ This dataset is an Apache TsFile conversion of
32
+ [`grboguz/test_lfs`](https://huggingface.co/datasets/grboguz/test_lfs), a LeRobot v2.1 sentinel_v2 robot-manipulation dataset
33
+ containing demonstrations for the task "pick the green cube."
34
+
35
+ Modalities: Time-series, Tabular. The converted repository contains numeric
36
+ robot states, actions, frame timing, and episode/task tags. The two camera
37
+ streams remain in the original Hugging Face dataset and are linked below.
38
+
39
+ ## Source Dataset and Provenance
40
+
41
+ - Original dataset: [`grboguz/test_lfs`](https://huggingface.co/datasets/grboguz/test_lfs)
42
+ - Pinned source revision: [`main`](https://huggingface.co/datasets/grboguz/test_lfs/tree/main)
43
+ - Original repository creator and uploader: [grboguz](https://huggingface.co/grboguz)
44
+ - License: Apache-2.0
45
+ - Robot type: `sentinel_v2`
46
+ - LeRobot codebase version: `v2.1`
47
+ - Task: `pick the green cube` (`task_index = 0`)
48
+ - Split: `train`
49
+ - Sampling rate: 15 fps
50
+ - Scale: 210 episodes, 72,677 frame rows, 1 task, 210 source Parquet files, 420 source videos
51
+ - Source frame layout: `data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet`
52
+ - Source video layout: `videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4`
53
+
54
+ The source dataset card provides no paper or completed citation. The Hugging
55
+ Face repository history attributes the source upload to the `grboguz` account.
56
+
57
+ ## Converted Files
58
+
59
+ - TsFile: `data/grboguz_test_lfs_train.tsfile`
60
+ - Table: `grboguz_test_lfs_train`
61
+ - Rows: 72,677
62
+ - Episodes/devices: 210
63
+ - TsFile size: 1.36 MiB
64
+ - Time precision: milliseconds
65
+ - Metadata: `meta/` is mirrored from the source, with `meta/info.json` rewritten to describe the TsFile artifact and conversion mapping.
66
+
67
+ ## TsFile Schema
68
+
69
+ `Time` is an INT64 millisecond timestamp computed as
70
+ `round(timestamp * 1000)` and restarts for each episode.
71
+
72
+ TAG columns (stored as TsFile STRING tags while preserving the original source
73
+ dtype in conversion metadata):
74
+
75
+ - `episode_index`
76
+ - `task_index`
77
+
78
+ FIELD columns:
79
+
80
+ - `frame_index`
81
+ - `sample_index`
82
+ - `observation_state_0`
83
+ - `observation_state_1`
84
+ - `observation_state_2`
85
+ - `action_0`
86
+ - `action_1`
87
+ - `action_2`
88
+ - `action_3`
89
+
90
+ Flattened vector groups:
91
+
92
+ - `observation.state` -> `observation_state_0` ... `observation_state_2` (3 FLOAT fields)
93
+ - `action` -> `action_0` ... `action_3` (4 FLOAT fields)
94
+
95
+ ## Conversion Notes
96
+
97
+ - The shared config-driven `lerobot` converter is used; the included
98
+ `convert_grboguz_test_lfs.py` is the dataset-specific local entry point.
99
+ - The train split is merged into one table-model TsFile. Filter by
100
+ `episode_index` and `task_index` to select an episode or task.
101
+ - Storage profile: Time uses `TS_2DIFF + LZ4`; FLOAT/DOUBLE use
102
+ `GORILLA + LZ4`; INT32/INT64 use `TS_2DIFF + LZ4`; BOOLEAN uses
103
+ `RLE + LZ4`. The `episode_index` and `task_index` columns remain TsFile
104
+ table-model TAG/device columns.
105
+ - `action[4]` and `observation.state[3]` are flattened to scalar FLOAT fields;
106
+ the full source prefix is retained and `.` is replaced with `_`.
107
+ - The source `timestamp` column is dropped after `Time` synthesis because it is
108
+ redundant with `Time / 1000` seconds.
109
+ - The source `index` column is retained as `sample_index`; `frame_index` is
110
+ retained unchanged.
111
+ - All 72,677 source rows and all 7 action/state dimensions are retained.
112
+
113
+ ## Videos
114
+
115
+ Videos are not duplicated in this converted repository. The source contains
116
+ two frame-aligned camera streams, each with 210 per-episode MP4 files:
117
+
118
+ - [`observation.image`](https://huggingface.co/datasets/grboguz/test_lfs/tree/main/videos/chunk-000/observation.image) - 210 per-episode MP4 files
119
+ - [`observation.wrist_image`](https://huggingface.co/datasets/grboguz/test_lfs/tree/main/videos/chunk-000/observation.wrist_image) - 210 per-episode MP4 files
120
+
121
+ The numeric TsFile rows remain aligned with the original videos through
122
+ `episode_index`, `frame_index`, and the source per-episode metadata.
123
+
124
+ ## Validation
125
+
126
+ The generated TsFile is checked for successful tool completion, non-zero size,
127
+ table schema, metadata row-count equality with the staged Parquet, and a query
128
+ readback sample. See `VALIDATION.md` and `validation_report.json`.
129
+
130
+ ## Minimal Read Example
131
+
132
+ ```python
133
+ from tsfile import TsFileReader
134
+
135
+ reader = TsFileReader("data/grboguz_test_lfs_train.tsfile")
136
+ table_name = "grboguz_test_lfs_train"
137
+ columns = [
138
+ "episode_index",
139
+ "task_index",
140
+ "frame_index",
141
+ "sample_index",
142
+ "action_0",
143
+ "observation_state_0",
144
+ ]
145
+
146
+ with reader.query_table(table_name, columns, batch_size=65536) as result:
147
+ batch = result.read_arrow_batch()
148
+ print(batch.to_pandas().head())
149
+ reader.close()
150
+ ```
151
+
152
+ ## Citation
153
+
154
+ The source dataset card provides no paper or completed citation. Cite the
155
+ original Hugging Face dataset and the `grboguz` account when using this
156
+ converted artifact.
data/grboguz_test_lfs_train.tsfile ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:99cdbc5090b09d47e84b45de83356e8517662332b168ad75570826d552441b66
3
+ size 1424914
meta/episodes.jsonl ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"episode_index": 0, "tasks": ["pick the green cube"], "length": 425}
2
+ {"episode_index": 1, "tasks": ["pick the green cube"], "length": 468}
3
+ {"episode_index": 2, "tasks": ["pick the green cube"], "length": 418}
4
+ {"episode_index": 3, "tasks": ["pick the green cube"], "length": 468}
5
+ {"episode_index": 4, "tasks": ["pick the green cube"], "length": 361}
6
+ {"episode_index": 5, "tasks": ["pick the green cube"], "length": 406}
7
+ {"episode_index": 6, "tasks": ["pick the green cube"], "length": 381}
8
+ {"episode_index": 7, "tasks": ["pick the green cube"], "length": 367}
9
+ {"episode_index": 8, "tasks": ["pick the green cube"], "length": 405}
10
+ {"episode_index": 9, "tasks": ["pick the green cube"], "length": 490}
11
+ {"episode_index": 10, "tasks": ["pick the green cube"], "length": 389}
12
+ {"episode_index": 11, "tasks": ["pick the green cube"], "length": 422}
13
+ {"episode_index": 12, "tasks": ["pick the green cube"], "length": 328}
14
+ {"episode_index": 13, "tasks": ["pick the green cube"], "length": 330}
15
+ {"episode_index": 14, "tasks": ["pick the green cube"], "length": 314}
16
+ {"episode_index": 15, "tasks": ["pick the green cube"], "length": 341}
17
+ {"episode_index": 16, "tasks": ["pick the green cube"], "length": 392}
18
+ {"episode_index": 17, "tasks": ["pick the green cube"], "length": 329}
19
+ {"episode_index": 18, "tasks": ["pick the green cube"], "length": 424}
20
+ {"episode_index": 19, "tasks": ["pick the green cube"], "length": 314}
21
+ {"episode_index": 20, "tasks": ["pick the green cube"], "length": 367}
22
+ {"episode_index": 21, "tasks": ["pick the green cube"], "length": 423}
23
+ {"episode_index": 22, "tasks": ["pick the green cube"], "length": 328}
24
+ {"episode_index": 23, "tasks": ["pick the green cube"], "length": 321}
25
+ {"episode_index": 24, "tasks": ["pick the green cube"], "length": 359}
26
+ {"episode_index": 25, "tasks": ["pick the green cube"], "length": 356}
27
+ {"episode_index": 26, "tasks": ["pick the green cube"], "length": 332}
28
+ {"episode_index": 27, "tasks": ["pick the green cube"], "length": 350}
29
+ {"episode_index": 28, "tasks": ["pick the green cube"], "length": 330}
30
+ {"episode_index": 29, "tasks": ["pick the green cube"], "length": 367}
31
+ {"episode_index": 30, "tasks": ["pick the green cube"], "length": 349}
32
+ {"episode_index": 31, "tasks": ["pick the green cube"], "length": 332}
33
+ {"episode_index": 32, "tasks": ["pick the green cube"], "length": 348}
34
+ {"episode_index": 33, "tasks": ["pick the green cube"], "length": 368}
35
+ {"episode_index": 34, "tasks": ["pick the green cube"], "length": 374}
36
+ {"episode_index": 35, "tasks": ["pick the green cube"], "length": 343}
37
+ {"episode_index": 36, "tasks": ["pick the green cube"], "length": 409}
38
+ {"episode_index": 37, "tasks": ["pick the green cube"], "length": 425}
39
+ {"episode_index": 38, "tasks": ["pick the green cube"], "length": 342}
40
+ {"episode_index": 39, "tasks": ["pick the green cube"], "length": 400}
41
+ {"episode_index": 40, "tasks": ["pick the green cube"], "length": 354}
42
+ {"episode_index": 41, "tasks": ["pick the green cube"], "length": 319}
43
+ {"episode_index": 42, "tasks": ["pick the green cube"], "length": 416}
44
+ {"episode_index": 43, "tasks": ["pick the green cube"], "length": 347}
45
+ {"episode_index": 44, "tasks": ["pick the green cube"], "length": 378}
46
+ {"episode_index": 45, "tasks": ["pick the green cube"], "length": 343}
47
+ {"episode_index": 46, "tasks": ["pick the green cube"], "length": 304}
48
+ {"episode_index": 47, "tasks": ["pick the green cube"], "length": 320}
49
+ {"episode_index": 48, "tasks": ["pick the green cube"], "length": 289}
50
+ {"episode_index": 49, "tasks": ["pick the green cube"], "length": 317}
51
+ {"episode_index": 50, "tasks": ["pick the green cube"], "length": 337}
52
+ {"episode_index": 51, "tasks": ["pick the green cube"], "length": 380}
53
+ {"episode_index": 52, "tasks": ["pick the green cube"], "length": 326}
54
+ {"episode_index": 53, "tasks": ["pick the green cube"], "length": 347}
55
+ {"episode_index": 54, "tasks": ["pick the green cube"], "length": 382}
56
+ {"episode_index": 55, "tasks": ["pick the green cube"], "length": 394}
57
+ {"episode_index": 56, "tasks": ["pick the green cube"], "length": 363}
58
+ {"episode_index": 57, "tasks": ["pick the green cube"], "length": 332}
59
+ {"episode_index": 58, "tasks": ["pick the green cube"], "length": 290}
60
+ {"episode_index": 59, "tasks": ["pick the green cube"], "length": 298}
61
+ {"episode_index": 60, "tasks": ["pick the green cube"], "length": 312}
62
+ {"episode_index": 61, "tasks": ["pick the green cube"], "length": 275}
63
+ {"episode_index": 62, "tasks": ["pick the green cube"], "length": 369}
64
+ {"episode_index": 63, "tasks": ["pick the green cube"], "length": 388}
65
+ {"episode_index": 64, "tasks": ["pick the green cube"], "length": 388}
66
+ {"episode_index": 65, "tasks": ["pick the green cube"], "length": 341}
67
+ {"episode_index": 66, "tasks": ["pick the green cube"], "length": 359}
68
+ {"episode_index": 67, "tasks": ["pick the green cube"], "length": 371}
69
+ {"episode_index": 68, "tasks": ["pick the green cube"], "length": 366}
70
+ {"episode_index": 69, "tasks": ["pick the green cube"], "length": 363}
71
+ {"episode_index": 70, "tasks": ["pick the green cube"], "length": 343}
72
+ {"episode_index": 71, "tasks": ["pick the green cube"], "length": 326}
73
+ {"episode_index": 72, "tasks": ["pick the green cube"], "length": 350}
74
+ {"episode_index": 73, "tasks": ["pick the green cube"], "length": 393}
75
+ {"episode_index": 74, "tasks": ["pick the green cube"], "length": 372}
76
+ {"episode_index": 75, "tasks": ["pick the green cube"], "length": 392}
77
+ {"episode_index": 76, "tasks": ["pick the green cube"], "length": 412}
78
+ {"episode_index": 77, "tasks": ["pick the green cube"], "length": 376}
79
+ {"episode_index": 78, "tasks": ["pick the green cube"], "length": 493}
80
+ {"episode_index": 79, "tasks": ["pick the green cube"], "length": 393}
81
+ {"episode_index": 80, "tasks": ["pick the green cube"], "length": 378}
82
+ {"episode_index": 81, "tasks": ["pick the green cube"], "length": 369}
83
+ {"episode_index": 82, "tasks": ["pick the green cube"], "length": 299}
84
+ {"episode_index": 83, "tasks": ["pick the green cube"], "length": 285}
85
+ {"episode_index": 84, "tasks": ["pick the green cube"], "length": 248}
86
+ {"episode_index": 85, "tasks": ["pick the green cube"], "length": 271}
87
+ {"episode_index": 86, "tasks": ["pick the green cube"], "length": 322}
88
+ {"episode_index": 87, "tasks": ["pick the green cube"], "length": 288}
89
+ {"episode_index": 88, "tasks": ["pick the green cube"], "length": 415}
90
+ {"episode_index": 89, "tasks": ["pick the green cube"], "length": 296}
91
+ {"episode_index": 90, "tasks": ["pick the green cube"], "length": 323}
92
+ {"episode_index": 91, "tasks": ["pick the green cube"], "length": 296}
93
+ {"episode_index": 92, "tasks": ["pick the green cube"], "length": 279}
94
+ {"episode_index": 93, "tasks": ["pick the green cube"], "length": 292}
95
+ {"episode_index": 94, "tasks": ["pick the green cube"], "length": 308}
96
+ {"episode_index": 95, "tasks": ["pick the green cube"], "length": 304}
97
+ {"episode_index": 96, "tasks": ["pick the green cube"], "length": 274}
98
+ {"episode_index": 97, "tasks": ["pick the green cube"], "length": 281}
99
+ {"episode_index": 98, "tasks": ["pick the green cube"], "length": 319}
100
+ {"episode_index": 99, "tasks": ["pick the green cube"], "length": 324}
101
+ {"episode_index": 100, "tasks": ["pick the green cube"], "length": 366}
102
+ {"episode_index": 101, "tasks": ["pick the green cube"], "length": 328}
103
+ {"episode_index": 102, "tasks": ["pick the green cube"], "length": 431}
104
+ {"episode_index": 103, "tasks": ["pick the green cube"], "length": 325}
105
+ {"episode_index": 104, "tasks": ["pick the green cube"], "length": 294}
106
+ {"episode_index": 105, "tasks": ["pick the green cube"], "length": 350}
107
+ {"episode_index": 106, "tasks": ["pick the green cube"], "length": 290}
108
+ {"episode_index": 107, "tasks": ["pick the green cube"], "length": 305}
109
+ {"episode_index": 108, "tasks": ["pick the green cube"], "length": 331}
110
+ {"episode_index": 109, "tasks": ["pick the green cube"], "length": 347}
111
+ {"episode_index": 110, "tasks": ["pick the green cube"], "length": 290}
112
+ {"episode_index": 111, "tasks": ["pick the green cube"], "length": 307}
113
+ {"episode_index": 112, "tasks": ["pick the green cube"], "length": 349}
114
+ {"episode_index": 113, "tasks": ["pick the green cube"], "length": 380}
115
+ {"episode_index": 114, "tasks": ["pick the green cube"], "length": 383}
116
+ {"episode_index": 115, "tasks": ["pick the green cube"], "length": 331}
117
+ {"episode_index": 116, "tasks": ["pick the green cube"], "length": 350}
118
+ {"episode_index": 117, "tasks": ["pick the green cube"], "length": 352}
119
+ {"episode_index": 118, "tasks": ["pick the green cube"], "length": 337}
120
+ {"episode_index": 119, "tasks": ["pick the green cube"], "length": 295}
121
+ {"episode_index": 120, "tasks": ["pick the green cube"], "length": 374}
122
+ {"episode_index": 121, "tasks": ["pick the green cube"], "length": 381}
123
+ {"episode_index": 122, "tasks": ["pick the green cube"], "length": 433}
124
+ {"episode_index": 123, "tasks": ["pick the green cube"], "length": 437}
125
+ {"episode_index": 124, "tasks": ["pick the green cube"], "length": 403}
126
+ {"episode_index": 125, "tasks": ["pick the green cube"], "length": 404}
127
+ {"episode_index": 126, "tasks": ["pick the green cube"], "length": 411}
128
+ {"episode_index": 127, "tasks": ["pick the green cube"], "length": 418}
129
+ {"episode_index": 128, "tasks": ["pick the green cube"], "length": 414}
130
+ {"episode_index": 129, "tasks": ["pick the green cube"], "length": 428}
131
+ {"episode_index": 130, "tasks": ["pick the green cube"], "length": 411}
132
+ {"episode_index": 131, "tasks": ["pick the green cube"], "length": 395}
133
+ {"episode_index": 132, "tasks": ["pick the green cube"], "length": 411}
134
+ {"episode_index": 133, "tasks": ["pick the green cube"], "length": 295}
135
+ {"episode_index": 134, "tasks": ["pick the green cube"], "length": 242}
136
+ {"episode_index": 135, "tasks": ["pick the green cube"], "length": 272}
137
+ {"episode_index": 136, "tasks": ["pick the green cube"], "length": 217}
138
+ {"episode_index": 137, "tasks": ["pick the green cube"], "length": 267}
139
+ {"episode_index": 138, "tasks": ["pick the green cube"], "length": 241}
140
+ {"episode_index": 139, "tasks": ["pick the green cube"], "length": 276}
141
+ {"episode_index": 140, "tasks": ["pick the green cube"], "length": 222}
142
+ {"episode_index": 141, "tasks": ["pick the green cube"], "length": 242}
143
+ {"episode_index": 142, "tasks": ["pick the green cube"], "length": 256}
144
+ {"episode_index": 143, "tasks": ["pick the green cube"], "length": 252}
145
+ {"episode_index": 144, "tasks": ["pick the green cube"], "length": 289}
146
+ {"episode_index": 145, "tasks": ["pick the green cube"], "length": 233}
147
+ {"episode_index": 146, "tasks": ["pick the green cube"], "length": 260}
148
+ {"episode_index": 147, "tasks": ["pick the green cube"], "length": 273}
149
+ {"episode_index": 148, "tasks": ["pick the green cube"], "length": 267}
150
+ {"episode_index": 149, "tasks": ["pick the green cube"], "length": 308}
151
+ {"episode_index": 150, "tasks": ["pick the green cube"], "length": 261}
152
+ {"episode_index": 151, "tasks": ["pick the green cube"], "length": 284}
153
+ {"episode_index": 152, "tasks": ["pick the green cube"], "length": 285}
154
+ {"episode_index": 153, "tasks": ["pick the green cube"], "length": 334}
155
+ {"episode_index": 154, "tasks": ["pick the green cube"], "length": 300}
156
+ {"episode_index": 155, "tasks": ["pick the green cube"], "length": 310}
157
+ {"episode_index": 156, "tasks": ["pick the green cube"], "length": 327}
158
+ {"episode_index": 157, "tasks": ["pick the green cube"], "length": 306}
159
+ {"episode_index": 158, "tasks": ["pick the green cube"], "length": 361}
160
+ {"episode_index": 159, "tasks": ["pick the green cube"], "length": 384}
161
+ {"episode_index": 160, "tasks": ["pick the green cube"], "length": 406}
162
+ {"episode_index": 161, "tasks": ["pick the green cube"], "length": 417}
163
+ {"episode_index": 162, "tasks": ["pick the green cube"], "length": 406}
164
+ {"episode_index": 163, "tasks": ["pick the green cube"], "length": 391}
165
+ {"episode_index": 164, "tasks": ["pick the green cube"], "length": 389}
166
+ {"episode_index": 165, "tasks": ["pick the green cube"], "length": 410}
167
+ {"episode_index": 166, "tasks": ["pick the green cube"], "length": 402}
168
+ {"episode_index": 167, "tasks": ["pick the green cube"], "length": 501}
169
+ {"episode_index": 168, "tasks": ["pick the green cube"], "length": 343}
170
+ {"episode_index": 169, "tasks": ["pick the green cube"], "length": 365}
171
+ {"episode_index": 170, "tasks": ["pick the green cube"], "length": 325}
172
+ {"episode_index": 171, "tasks": ["pick the green cube"], "length": 381}
173
+ {"episode_index": 172, "tasks": ["pick the green cube"], "length": 318}
174
+ {"episode_index": 173, "tasks": ["pick the green cube"], "length": 332}
175
+ {"episode_index": 174, "tasks": ["pick the green cube"], "length": 312}
176
+ {"episode_index": 175, "tasks": ["pick the green cube"], "length": 242}
177
+ {"episode_index": 176, "tasks": ["pick the green cube"], "length": 282}
178
+ {"episode_index": 177, "tasks": ["pick the green cube"], "length": 293}
179
+ {"episode_index": 178, "tasks": ["pick the green cube"], "length": 284}
180
+ {"episode_index": 179, "tasks": ["pick the green cube"], "length": 303}
181
+ {"episode_index": 180, "tasks": ["pick the green cube"], "length": 297}
182
+ {"episode_index": 181, "tasks": ["pick the green cube"], "length": 342}
183
+ {"episode_index": 182, "tasks": ["pick the green cube"], "length": 255}
184
+ {"episode_index": 183, "tasks": ["pick the green cube"], "length": 290}
185
+ {"episode_index": 184, "tasks": ["pick the green cube"], "length": 307}
186
+ {"episode_index": 185, "tasks": ["pick the green cube"], "length": 265}
187
+ {"episode_index": 186, "tasks": ["pick the green cube"], "length": 300}
188
+ {"episode_index": 187, "tasks": ["pick the green cube"], "length": 303}
189
+ {"episode_index": 188, "tasks": ["pick the green cube"], "length": 308}
190
+ {"episode_index": 189, "tasks": ["pick the green cube"], "length": 323}
191
+ {"episode_index": 190, "tasks": ["pick the green cube"], "length": 281}
192
+ {"episode_index": 191, "tasks": ["pick the green cube"], "length": 358}
193
+ {"episode_index": 192, "tasks": ["pick the green cube"], "length": 333}
194
+ {"episode_index": 193, "tasks": ["pick the green cube"], "length": 404}
195
+ {"episode_index": 194, "tasks": ["pick the green cube"], "length": 364}
196
+ {"episode_index": 195, "tasks": ["pick the green cube"], "length": 300}
197
+ {"episode_index": 196, "tasks": ["pick the green cube"], "length": 317}
198
+ {"episode_index": 197, "tasks": ["pick the green cube"], "length": 385}
199
+ {"episode_index": 198, "tasks": ["pick the green cube"], "length": 381}
200
+ {"episode_index": 199, "tasks": ["pick the green cube"], "length": 373}
201
+ {"episode_index": 200, "tasks": ["pick the green cube"], "length": 450}
202
+ {"episode_index": 201, "tasks": ["pick the green cube"], "length": 462}
203
+ {"episode_index": 202, "tasks": ["pick the green cube"], "length": 347}
204
+ {"episode_index": 203, "tasks": ["pick the green cube"], "length": 394}
205
+ {"episode_index": 204, "tasks": ["pick the green cube"], "length": 413}
206
+ {"episode_index": 205, "tasks": ["pick the green cube"], "length": 363}
207
+ {"episode_index": 206, "tasks": ["pick the green cube"], "length": 355}
208
+ {"episode_index": 207, "tasks": ["pick the green cube"], "length": 418}
209
+ {"episode_index": 208, "tasks": ["pick the green cube"], "length": 475}
210
+ {"episode_index": 209, "tasks": ["pick the green cube"], "length": 403}
meta/episodes_stats.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
meta/info.json ADDED
@@ -0,0 +1,230 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "codebase_version": "v2.1",
3
+ "robot_type": "sentinel_v2",
4
+ "total_episodes": 210,
5
+ "total_frames": 72677,
6
+ "total_tasks": 1,
7
+ "total_videos": 420,
8
+ "total_chunks": 1,
9
+ "chunks_size": 1000,
10
+ "fps": 15,
11
+ "splits": {
12
+ "train": "0:210"
13
+ },
14
+ "data_path": "data/grboguz_test_lfs_train.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": "string",
26
+ "shape": [
27
+ 1
28
+ ],
29
+ "tsfile_role": "TAG",
30
+ "source_dtype": "int64"
31
+ },
32
+ "task_index": {
33
+ "dtype": "string",
34
+ "shape": [
35
+ 1
36
+ ],
37
+ "tsfile_role": "TAG",
38
+ "source_dtype": "int64"
39
+ },
40
+ "frame_index": {
41
+ "dtype": "int64",
42
+ "shape": [
43
+ 1
44
+ ],
45
+ "tsfile_role": "FIELD"
46
+ },
47
+ "sample_index": {
48
+ "dtype": "int64",
49
+ "shape": [
50
+ 1
51
+ ],
52
+ "tsfile_role": "FIELD"
53
+ },
54
+ "observation_state_0": {
55
+ "dtype": "float32",
56
+ "shape": [
57
+ 1
58
+ ],
59
+ "tsfile_role": "FIELD"
60
+ },
61
+ "observation_state_1": {
62
+ "dtype": "float32",
63
+ "shape": [
64
+ 1
65
+ ],
66
+ "tsfile_role": "FIELD"
67
+ },
68
+ "observation_state_2": {
69
+ "dtype": "float32",
70
+ "shape": [
71
+ 1
72
+ ],
73
+ "tsfile_role": "FIELD"
74
+ },
75
+ "action_0": {
76
+ "dtype": "float32",
77
+ "shape": [
78
+ 1
79
+ ],
80
+ "tsfile_role": "FIELD"
81
+ },
82
+ "action_1": {
83
+ "dtype": "float32",
84
+ "shape": [
85
+ 1
86
+ ],
87
+ "tsfile_role": "FIELD"
88
+ },
89
+ "action_2": {
90
+ "dtype": "float32",
91
+ "shape": [
92
+ 1
93
+ ],
94
+ "tsfile_role": "FIELD"
95
+ },
96
+ "action_3": {
97
+ "dtype": "float32",
98
+ "shape": [
99
+ 1
100
+ ],
101
+ "tsfile_role": "FIELD"
102
+ }
103
+ },
104
+ "video_path_original": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
105
+ "tsfile_conversion": {
106
+ "source_dataset": "grboguz/test_lfs",
107
+ "source_data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
108
+ "converted_data_path": "data/grboguz_test_lfs_train.tsfile",
109
+ "table_name": "grboguz_test_lfs_train",
110
+ "granularity": "per_split",
111
+ "time_precision": "ms",
112
+ "time_mapping": {
113
+ "source": "timestamp",
114
+ "fps": 15,
115
+ "unit": "milliseconds"
116
+ },
117
+ "tag_columns": [
118
+ "episode_index",
119
+ "task_index"
120
+ ],
121
+ "row_count": 72677,
122
+ "feature_source": "features describe the converted TsFile schema",
123
+ "flattened_features": {
124
+ "observation.state": [
125
+ "observation_state_0",
126
+ "observation_state_1",
127
+ "observation_state_2"
128
+ ],
129
+ "action": [
130
+ "action_0",
131
+ "action_1",
132
+ "action_2",
133
+ "action_3"
134
+ ]
135
+ },
136
+ "renamed_features": {
137
+ "index": "sample_index"
138
+ },
139
+ "dropped_features": [
140
+ "timestamp"
141
+ ],
142
+ "omitted_features": [
143
+ "observation.image",
144
+ "observation.wrist_image"
145
+ ],
146
+ "original_video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
147
+ "original_video_features": {
148
+ "observation.image": {
149
+ "dtype": "video",
150
+ "shape": [
151
+ 3,
152
+ 256,
153
+ 256
154
+ ],
155
+ "names": [
156
+ "channels",
157
+ "height",
158
+ "width"
159
+ ],
160
+ "info": {
161
+ "video.height": 256,
162
+ "video.width": 256,
163
+ "video.codec": "av1",
164
+ "video.pix_fmt": "yuv420p",
165
+ "video.is_depth_map": false,
166
+ "video.fps": 15,
167
+ "video.channels": 3,
168
+ "has_audio": false
169
+ }
170
+ },
171
+ "observation.wrist_image": {
172
+ "dtype": "video",
173
+ "shape": [
174
+ 3,
175
+ 256,
176
+ 256
177
+ ],
178
+ "names": [
179
+ "channels",
180
+ "height",
181
+ "width"
182
+ ],
183
+ "info": {
184
+ "video.height": 256,
185
+ "video.width": 256,
186
+ "video.codec": "av1",
187
+ "video.pix_fmt": "yuv420p",
188
+ "video.is_depth_map": false,
189
+ "video.fps": 15,
190
+ "video.channels": 3,
191
+ "has_audio": false
192
+ }
193
+ }
194
+ },
195
+ "original_video_source": "https://huggingface.co/datasets/grboguz/test_lfs/tree/main/videos",
196
+ "video_policy": "Videos are not uploaded to this repository; use the original HuggingFace dataset videos.",
197
+ "source_revision": "main",
198
+ "source_author": {
199
+ "name": "grboguz",
200
+ "huggingface_user": "grboguz",
201
+ "url": "https://huggingface.co/grboguz"
202
+ },
203
+ "task_index_mapping": {
204
+ "0": "pick the green cube"
205
+ },
206
+ "source_video_file_count": 420,
207
+ "source_video_files_per_stream": 210,
208
+ "source_video_bytes": null,
209
+ "source_video_streams": [
210
+ "observation.image",
211
+ "observation.wrist_image"
212
+ ],
213
+ "storage_profile": {
214
+ "time_encoding": "TS_2DIFF",
215
+ "time_compression": "LZ4",
216
+ "float_encoding": "GORILLA",
217
+ "float_compression": "LZ4",
218
+ "double_encoding": "GORILLA",
219
+ "double_compression": "LZ4",
220
+ "int32_encoding": "TS_2DIFF",
221
+ "int32_compression": "LZ4",
222
+ "int64_encoding": "TS_2DIFF",
223
+ "int64_compression": "LZ4",
224
+ "boolean_encoding": "RLE",
225
+ "boolean_compression": "LZ4",
226
+ "tag_storage": "TsFile table-model device/tag columns"
227
+ },
228
+ "frame_video_alignment": "episode_index and frame_index preserve alignment with the original per-episode MP4 files and source episode metadata."
229
+ }
230
+ }
meta/tasks.jsonl ADDED
@@ -0,0 +1 @@
 
 
1
+ {"task_index": 0, "task": "pick the green cube"}