zjt24 commited on
Commit
d1f88ae
·
verified ·
1 Parent(s): 19e5a3c

Add TsFile (converted from iiyudana/random50_v3)

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/random50_v3_train.tsfile filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,141 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - robotics
8
+ - tsfile
9
+ - time-series
10
+ - modality:timeseries
11
+ pretty_name: Random50 v3 (TsFile)
12
+ size_categories:
13
+ - 10K<n<100K
14
+ configs:
15
+ - config_name: default
16
+ data_files:
17
+ - split: train
18
+ path: data/random50_v3_train.tsfile
19
+ ---
20
+
21
+ # Random50 v3 (TsFile)
22
+
23
+ This dataset is an Apache TsFile conversion of the Hugging Face dataset
24
+ [`iiyudana/random50_v3`](https://huggingface.co/datasets/iiyudana/random50_v3).
25
+ The source dataset was created with
26
+ [LeRobot](https://github.com/huggingface/lerobot) and contains ALOHA robot
27
+ demonstrations for transferring a cube between arms.
28
+
29
+ Modalities: Time-series. The original repository also contains synchronized
30
+ top-camera videos; videos are not included in this converted repository.
31
+
32
+ ## Source Dataset
33
+
34
+ - Original dataset: [`iiyudana/random50_v3`](https://huggingface.co/datasets/iiyudana/random50_v3)
35
+ - License: `apache-2.0`
36
+ - LeRobot codebase version: `v2.1`
37
+ - Robot type: `aloha`
38
+ - Task: `Pick up the cube with the right arm and transfer it to the left arm.`
39
+ - Split: `train` (`0:50`)
40
+ - Scale: `50` episodes, `20,000` frames, `1` task
41
+ - Sampling rate: `50` fps
42
+ - Source videos: `50` MP4 files from `observation.images.top`
43
+ - Source data layout: `data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet`
44
+ - Source video layout: `videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4`
45
+
46
+ ## Converted File
47
+
48
+ - TsFile: `data/random50_v3_train.tsfile`
49
+ - TsFile table: `random50_v3_train`
50
+ - Converted rows: `20,000`
51
+ - Episodes: `50`
52
+ - Time precision: milliseconds
53
+ - TAG columns: `episode_index`, `task_index`
54
+ - File size: `2,195,882` bytes
55
+
56
+ All source episodes in the train split are merged into one TsFile. The source
57
+ `episode_index` and `task_index` columns are retained as TAG columns, allowing
58
+ queries to select an episode without creating synthetic tag aliases.
59
+
60
+ ## Schema
61
+
62
+ `Time` is computed as `round(timestamp * 1000)` in milliseconds and restarts in
63
+ each episode. At 50 fps, consecutive source frames are approximately 20 ms
64
+ apart. The source `timestamp` column is dropped because it is redundant with
65
+ `Time / 1000` seconds. No source rows are dropped.
66
+
67
+ TAG columns:
68
+
69
+ - `episode_index`
70
+ - `task_index`
71
+
72
+ FIELD columns:
73
+
74
+ - `frame_index`
75
+ - `sample_index` (renamed from source `index`)
76
+ - `observation_state_0` through `observation_state_13` (FLOAT)
77
+ - `action_0` through `action_13` (FLOAT)
78
+
79
+ The 14 elements in both `observation.state` and `action` use this source order:
80
+
81
+ 1. `left_waist`
82
+ 2. `left_shoulder`
83
+ 3. `left_elbow`
84
+ 4. `left_forearm_roll`
85
+ 5. `left_wrist_angle`
86
+ 6. `left_wrist_rotate`
87
+ 7. `left_gripper`
88
+ 8. `right_waist`
89
+ 9. `right_shoulder`
90
+ 10. `right_elbow`
91
+ 11. `right_forearm_roll`
92
+ 12. `right_wrist_angle`
93
+ 13. `right_wrist_rotate`
94
+ 14. `right_gripper`
95
+
96
+ Vector names preserve the full source feature name: `.` is replaced with `_`
97
+ and the element index is appended.
98
+
99
+ ## Video Policy
100
+
101
+ The source feature `observation.images.top` is not converted or uploaded. It is
102
+ 480 x 640 RGB AV1 video at 50 fps. Use the original dataset for the synchronized
103
+ videos:
104
+ [`iiyudana/random50_v3/videos`](https://huggingface.co/datasets/iiyudana/random50_v3/tree/main/videos).
105
+
106
+ The numeric rows retain `episode_index`, `frame_index`, `task_index`, and
107
+ `sample_index`, preserving their alignment with the original per-episode video.
108
+
109
+ ## Metadata
110
+
111
+ The source `meta/` files are mirrored in this repository. `meta/info.json` is
112
+ updated so `data_path` points to `data/random50_v3_train.tsfile`. Its
113
+ `tsfile_conversion` object records the actual table name, source episode-file
114
+ count, converted TsFile count, Time formula, TAG columns, row count, flattened
115
+ features, renamed and dropped fields, and frame/video alignment. The converted
116
+ `total_videos` value is `0`; the original count of `50` is preserved as
117
+ `tsfile_conversion.source_video_count`.
118
+
119
+ ## Validation
120
+
121
+ The converted file was validated with the project pipeline and read back with
122
+ the TsFile Python SDK:
123
+
124
+ - staged Parquet rows: `20,000`
125
+ - TsFile metadata rows: `20,000`
126
+ - TsFile query rows: `20,000`
127
+ - duplicate `(episode_index, task_index, Time)` rows: `0`
128
+ - TsFile size: `2,195,882` bytes
129
+
130
+ ## Usage
131
+
132
+ ```python
133
+ from tsfile import TsFileReader
134
+
135
+ path = "data/random50_v3_train.tsfile"
136
+ with TsFileReader(path) as reader:
137
+ schemas = reader.get_all_table_schemas()
138
+ table = schemas["random50_v3_train"]
139
+ print([(column.get_column_name(), column.get_category())
140
+ for column in table.get_columns()])
141
+ ```
data/random50_v3_train.tsfile ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:07f396d8f1944ce41d57837700fbfeda94e86a5f00d0b5a00d2788f6c12fb2bc
3
+ size 2195882
meta/episodes.jsonl ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"episode_index": 0, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
2
+ {"episode_index": 1, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
3
+ {"episode_index": 2, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
4
+ {"episode_index": 3, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
5
+ {"episode_index": 4, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
6
+ {"episode_index": 5, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
7
+ {"episode_index": 6, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
8
+ {"episode_index": 7, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
9
+ {"episode_index": 8, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
10
+ {"episode_index": 9, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
11
+ {"episode_index": 10, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
12
+ {"episode_index": 11, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
13
+ {"episode_index": 12, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
14
+ {"episode_index": 13, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
15
+ {"episode_index": 14, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
16
+ {"episode_index": 15, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
17
+ {"episode_index": 16, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
18
+ {"episode_index": 17, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
19
+ {"episode_index": 18, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
20
+ {"episode_index": 19, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
21
+ {"episode_index": 20, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
22
+ {"episode_index": 21, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
23
+ {"episode_index": 22, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
24
+ {"episode_index": 23, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
25
+ {"episode_index": 24, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
26
+ {"episode_index": 25, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
27
+ {"episode_index": 26, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
28
+ {"episode_index": 27, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
29
+ {"episode_index": 28, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
30
+ {"episode_index": 29, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
31
+ {"episode_index": 30, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
32
+ {"episode_index": 31, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
33
+ {"episode_index": 32, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
34
+ {"episode_index": 33, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
35
+ {"episode_index": 34, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
36
+ {"episode_index": 35, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
37
+ {"episode_index": 36, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
38
+ {"episode_index": 37, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
39
+ {"episode_index": 38, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
40
+ {"episode_index": 39, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
41
+ {"episode_index": 40, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
42
+ {"episode_index": 41, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
43
+ {"episode_index": 42, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
44
+ {"episode_index": 43, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
45
+ {"episode_index": 44, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
46
+ {"episode_index": 45, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
47
+ {"episode_index": 46, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
48
+ {"episode_index": 47, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
49
+ {"episode_index": 48, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
50
+ {"episode_index": 49, "tasks": ["Pick up the cube with the right arm and transfer it to the left arm."], "length": 400}
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,362 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "codebase_version": "v2.1",
3
+ "robot_type": "aloha",
4
+ "total_episodes": 50,
5
+ "total_frames": 20000,
6
+ "total_tasks": 1,
7
+ "total_videos": 0,
8
+ "total_chunks": 1,
9
+ "chunks_size": 1000,
10
+ "fps": 50,
11
+ "splits": {
12
+ "train": "0:50"
13
+ },
14
+ "data_path": "data/random50_v3_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": "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
+ "observation_state_0": {
53
+ "dtype": "float32",
54
+ "shape": [
55
+ 1
56
+ ],
57
+ "tsfile_role": "FIELD"
58
+ },
59
+ "observation_state_1": {
60
+ "dtype": "float32",
61
+ "shape": [
62
+ 1
63
+ ],
64
+ "tsfile_role": "FIELD"
65
+ },
66
+ "observation_state_2": {
67
+ "dtype": "float32",
68
+ "shape": [
69
+ 1
70
+ ],
71
+ "tsfile_role": "FIELD"
72
+ },
73
+ "observation_state_3": {
74
+ "dtype": "float32",
75
+ "shape": [
76
+ 1
77
+ ],
78
+ "tsfile_role": "FIELD"
79
+ },
80
+ "observation_state_4": {
81
+ "dtype": "float32",
82
+ "shape": [
83
+ 1
84
+ ],
85
+ "tsfile_role": "FIELD"
86
+ },
87
+ "observation_state_5": {
88
+ "dtype": "float32",
89
+ "shape": [
90
+ 1
91
+ ],
92
+ "tsfile_role": "FIELD"
93
+ },
94
+ "observation_state_6": {
95
+ "dtype": "float32",
96
+ "shape": [
97
+ 1
98
+ ],
99
+ "tsfile_role": "FIELD"
100
+ },
101
+ "observation_state_7": {
102
+ "dtype": "float32",
103
+ "shape": [
104
+ 1
105
+ ],
106
+ "tsfile_role": "FIELD"
107
+ },
108
+ "observation_state_8": {
109
+ "dtype": "float32",
110
+ "shape": [
111
+ 1
112
+ ],
113
+ "tsfile_role": "FIELD"
114
+ },
115
+ "observation_state_9": {
116
+ "dtype": "float32",
117
+ "shape": [
118
+ 1
119
+ ],
120
+ "tsfile_role": "FIELD"
121
+ },
122
+ "observation_state_10": {
123
+ "dtype": "float32",
124
+ "shape": [
125
+ 1
126
+ ],
127
+ "tsfile_role": "FIELD"
128
+ },
129
+ "observation_state_11": {
130
+ "dtype": "float32",
131
+ "shape": [
132
+ 1
133
+ ],
134
+ "tsfile_role": "FIELD"
135
+ },
136
+ "observation_state_12": {
137
+ "dtype": "float32",
138
+ "shape": [
139
+ 1
140
+ ],
141
+ "tsfile_role": "FIELD"
142
+ },
143
+ "observation_state_13": {
144
+ "dtype": "float32",
145
+ "shape": [
146
+ 1
147
+ ],
148
+ "tsfile_role": "FIELD"
149
+ },
150
+ "action_0": {
151
+ "dtype": "float32",
152
+ "shape": [
153
+ 1
154
+ ],
155
+ "tsfile_role": "FIELD"
156
+ },
157
+ "action_1": {
158
+ "dtype": "float32",
159
+ "shape": [
160
+ 1
161
+ ],
162
+ "tsfile_role": "FIELD"
163
+ },
164
+ "action_2": {
165
+ "dtype": "float32",
166
+ "shape": [
167
+ 1
168
+ ],
169
+ "tsfile_role": "FIELD"
170
+ },
171
+ "action_3": {
172
+ "dtype": "float32",
173
+ "shape": [
174
+ 1
175
+ ],
176
+ "tsfile_role": "FIELD"
177
+ },
178
+ "action_4": {
179
+ "dtype": "float32",
180
+ "shape": [
181
+ 1
182
+ ],
183
+ "tsfile_role": "FIELD"
184
+ },
185
+ "action_5": {
186
+ "dtype": "float32",
187
+ "shape": [
188
+ 1
189
+ ],
190
+ "tsfile_role": "FIELD"
191
+ },
192
+ "action_6": {
193
+ "dtype": "float32",
194
+ "shape": [
195
+ 1
196
+ ],
197
+ "tsfile_role": "FIELD"
198
+ },
199
+ "action_7": {
200
+ "dtype": "float32",
201
+ "shape": [
202
+ 1
203
+ ],
204
+ "tsfile_role": "FIELD"
205
+ },
206
+ "action_8": {
207
+ "dtype": "float32",
208
+ "shape": [
209
+ 1
210
+ ],
211
+ "tsfile_role": "FIELD"
212
+ },
213
+ "action_9": {
214
+ "dtype": "float32",
215
+ "shape": [
216
+ 1
217
+ ],
218
+ "tsfile_role": "FIELD"
219
+ },
220
+ "action_10": {
221
+ "dtype": "float32",
222
+ "shape": [
223
+ 1
224
+ ],
225
+ "tsfile_role": "FIELD"
226
+ },
227
+ "action_11": {
228
+ "dtype": "float32",
229
+ "shape": [
230
+ 1
231
+ ],
232
+ "tsfile_role": "FIELD"
233
+ },
234
+ "action_12": {
235
+ "dtype": "float32",
236
+ "shape": [
237
+ 1
238
+ ],
239
+ "tsfile_role": "FIELD"
240
+ },
241
+ "action_13": {
242
+ "dtype": "float32",
243
+ "shape": [
244
+ 1
245
+ ],
246
+ "tsfile_role": "FIELD"
247
+ }
248
+ },
249
+ "video_path_original": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
250
+ "tsfile_conversion": {
251
+ "source_dataset": "iiyudana/random50_v3",
252
+ "source_data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
253
+ "converted_data_path": "data/random50_v3_train.tsfile",
254
+ "table_name": "random50_v3_train",
255
+ "granularity": "per_split",
256
+ "time_precision": "ms",
257
+ "time_mapping": {
258
+ "source": "timestamp",
259
+ "formula": "Time = round(timestamp * 1000)",
260
+ "source_unit": "seconds",
261
+ "fps": 50,
262
+ "unit": "milliseconds"
263
+ },
264
+ "tag_columns": [
265
+ "episode_index",
266
+ "task_index"
267
+ ],
268
+ "row_count": 20000,
269
+ "feature_source": "features describe the converted TsFile schema",
270
+ "flattened_features": {
271
+ "observation.state": [
272
+ "observation_state_0",
273
+ "observation_state_1",
274
+ "observation_state_2",
275
+ "observation_state_3",
276
+ "observation_state_4",
277
+ "observation_state_5",
278
+ "observation_state_6",
279
+ "observation_state_7",
280
+ "observation_state_8",
281
+ "observation_state_9",
282
+ "observation_state_10",
283
+ "observation_state_11",
284
+ "observation_state_12",
285
+ "observation_state_13"
286
+ ],
287
+ "action": [
288
+ "action_0",
289
+ "action_1",
290
+ "action_2",
291
+ "action_3",
292
+ "action_4",
293
+ "action_5",
294
+ "action_6",
295
+ "action_7",
296
+ "action_8",
297
+ "action_9",
298
+ "action_10",
299
+ "action_11",
300
+ "action_12",
301
+ "action_13"
302
+ ]
303
+ },
304
+ "renamed_features": {
305
+ "index": "sample_index"
306
+ },
307
+ "dropped_features": [
308
+ "timestamp"
309
+ ],
310
+ "omitted_features": [
311
+ "observation.images.top"
312
+ ],
313
+ "original_video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
314
+ "original_video_features": {
315
+ "observation.images.top": {
316
+ "dtype": "video",
317
+ "shape": [
318
+ 480,
319
+ 640,
320
+ 3
321
+ ],
322
+ "names": [
323
+ "height",
324
+ "width",
325
+ "channels"
326
+ ],
327
+ "info": {
328
+ "video.height": 480,
329
+ "video.width": 640,
330
+ "video.codec": "av1",
331
+ "video.pix_fmt": "yuv420p",
332
+ "video.is_depth_map": false,
333
+ "video.fps": 50,
334
+ "video.channels": 3,
335
+ "has_audio": false
336
+ }
337
+ }
338
+ },
339
+ "original_video_source": "https://huggingface.co/datasets/iiyudana/random50_v3/tree/main/videos",
340
+ "video_policy": "Videos are not uploaded to this repository; use the original HuggingFace dataset videos.",
341
+ "source_video_count": 50,
342
+ "source_episode_file_count": 50,
343
+ "converted_tsfile_count": 1,
344
+ "table_names": [
345
+ "random50_v3_train"
346
+ ],
347
+ "frame_video_alignment": {
348
+ "relationship": "one converted row per source frame",
349
+ "preserved_columns": [
350
+ "episode_index",
351
+ "task_index",
352
+ "frame_index",
353
+ "sample_index"
354
+ ],
355
+ "sample_index_mapping": {
356
+ "source": "index",
357
+ "converted": "sample_index"
358
+ },
359
+ "video_location": "original_dataset_only"
360
+ }
361
+ }
362
+ }
meta/tasks.jsonl ADDED
@@ -0,0 +1 @@
 
 
1
+ {"task_index": 0, "task": "Pick up the cube with the right arm and transfer it to the left arm."}