THUgewu commited on
Commit
55e36cf
·
verified ·
1 Parent(s): ccf982d

Add TsFile (converted from DistantSky/cable_insertion_2)

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/cable_insertion_2.tsfile filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,3 +1,90 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - tsfile
7
+ - timeseries
8
+ - time-series
9
+ - LeRobot
10
+ - robotics
11
+ - cable-insertion
12
+ - imitation-learning
13
+ - manipulation
14
+ pretty_name: Cable Insertion 2 (TsFile)
15
+ size_categories:
16
+ - 10K<n<100K
17
+ configs:
18
+ - config_name: default
19
+ data_files:
20
+ - split: train
21
+ path: data/cable_insertion_2.tsfile
22
  ---
23
+
24
+ # Cable Insertion 2 (TsFile)
25
+
26
+ Apache TsFile version of [`DistantSky/cable_insertion_2`](https://huggingface.co/datasets/DistantSky/cable_insertion_2).
27
+
28
+ ## Overview
29
+
30
+ Real-robot teleoperation demonstrations of a **cable-insertion** task — *"insert
31
+ the cable into the holder"* — recorded on a `hessian` robot. Each episode is one
32
+ demonstration with per-frame robot state, velocity, and both processed and raw
33
+ actions, captured at 60 fps.
34
+
35
+ - **Robot:** `hessian` (14-DOF action / state space).
36
+ - **Episodes:** 72 demonstrations of one task ("insert the cable into the holder").
37
+ - **Frames:** 34,350 timesteps total, recorded at **60 fps**.
38
+ - **Source format:** LeRobot v2.1.
39
+
40
+ ## Schema (TsFile structure)
41
+
42
+ All 72 episodes are stored in a single `.tsfile` using the TsFile table model.
43
+
44
+ - **Time** (INT64, milliseconds) — per-frame timestamp, restarts at 0 for each
45
+ episode (`round(timestamp * 1000)`; ~17 ms apart at 60 fps).
46
+ - **episode_index** (TAG) — demonstration id (0–71). Query a single episode with
47
+ `WHERE episode_index=0`.
48
+ - **task_index** (TAG) — task id (always `0`; the dataset has one task).
49
+ - **frame_index** (FIELD, INT64) — frame number within the episode.
50
+ - **sample_index** (FIELD, INT64) — the source global `index` column.
51
+ - **prompt** (FIELD, STRING) — the language instruction
52
+ ("insert the cable into the holder"), repeated per frame.
53
+ - **source_action_time_s** (FIELD, FLOAT) — source action timestamp in seconds.
54
+ - **source_raw_action_time_s** (FIELD, FLOAT) — source raw-action timestamp in seconds.
55
+ - **observation_state_0 .. observation_state_13** (FIELD, FLOAT) — 14-D robot state.
56
+ - **observation_velocity_0 .. observation_velocity_13** (FIELD, FLOAT) — 14-D robot velocity.
57
+ - **action_0 .. action_13** (FIELD, FLOAT) — 14-D commanded action.
58
+ - **raw_action_0 .. raw_action_13** (FIELD, FLOAT) — 14-D raw action.
59
+
60
+ The source `timestamp` column is dropped because it equals `Time / 1000`.
61
+ Camera videos and raw `.npz` episodes are not included in this repository (see below).
62
+
63
+ ## Usage
64
+
65
+ Read the `.tsfile` file with the Apache TsFile Java or Python SDK.
66
+
67
+ ```python
68
+ # pip install tsfile
69
+ from tsfile import TsFileReader
70
+ reader = TsFileReader("data/cable_insertion_2.tsfile")
71
+ # query one episode: WHERE episode_index=0
72
+ ```
73
+
74
+ ## Not included
75
+
76
+ - **Camera videos.** The original dataset records three camera streams per episode
77
+ (`observation.images.video_left`, `observation.images.video_overhead`,
78
+ `observation.images.video_right`). These MP4 videos are **not** included here —
79
+ they are not time-series data. Retrieve them from the original dataset under
80
+ [`DistantSky/cable_insertion_2/videos`](https://huggingface.co/datasets/DistantSky/cable_insertion_2/tree/main/videos).
81
+ - **Raw episodes.** The original `raw_episodes/*.npz` files (raw unprocessed
82
+ episodes) are **not** included; they are not tabular time-series data. See the
83
+ original dataset for them.
84
+
85
+ ## Source & license
86
+
87
+ - Original dataset: https://huggingface.co/datasets/DistantSky/cable_insertion_2
88
+ - Author / publisher: DistantSky
89
+ - Created with: [LeRobot](https://github.com/huggingface/lerobot) (codebase v2.1)
90
+ - License: Apache-2.0 (inherited from the original dataset)
data/cable_insertion_2.tsfile ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:34f16e699878de83c23d51139f654c777cfd3efb44bd0b4cd2548b9040a87752
3
+ size 5453201
meta/episodes.jsonl ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"episode_index": 0, "tasks": ["insert the cable into the holder"], "length": 479}
2
+ {"episode_index": 1, "tasks": ["insert the cable into the holder"], "length": 479}
3
+ {"episode_index": 2, "tasks": ["insert the cable into the holder"], "length": 478}
4
+ {"episode_index": 3, "tasks": ["insert the cable into the holder"], "length": 478}
5
+ {"episode_index": 4, "tasks": ["insert the cable into the holder"], "length": 476}
6
+ {"episode_index": 5, "tasks": ["insert the cable into the holder"], "length": 477}
7
+ {"episode_index": 6, "tasks": ["insert the cable into the holder"], "length": 477}
8
+ {"episode_index": 7, "tasks": ["insert the cable into the holder"], "length": 477}
9
+ {"episode_index": 8, "tasks": ["insert the cable into the holder"], "length": 478}
10
+ {"episode_index": 9, "tasks": ["insert the cable into the holder"], "length": 477}
11
+ {"episode_index": 10, "tasks": ["insert the cable into the holder"], "length": 477}
12
+ {"episode_index": 11, "tasks": ["insert the cable into the holder"], "length": 476}
13
+ {"episode_index": 12, "tasks": ["insert the cable into the holder"], "length": 477}
14
+ {"episode_index": 13, "tasks": ["insert the cable into the holder"], "length": 478}
15
+ {"episode_index": 14, "tasks": ["insert the cable into the holder"], "length": 477}
16
+ {"episode_index": 15, "tasks": ["insert the cable into the holder"], "length": 477}
17
+ {"episode_index": 16, "tasks": ["insert the cable into the holder"], "length": 477}
18
+ {"episode_index": 17, "tasks": ["insert the cable into the holder"], "length": 477}
19
+ {"episode_index": 18, "tasks": ["insert the cable into the holder"], "length": 478}
20
+ {"episode_index": 19, "tasks": ["insert the cable into the holder"], "length": 476}
21
+ {"episode_index": 20, "tasks": ["insert the cable into the holder"], "length": 477}
22
+ {"episode_index": 21, "tasks": ["insert the cable into the holder"], "length": 476}
23
+ {"episode_index": 22, "tasks": ["insert the cable into the holder"], "length": 478}
24
+ {"episode_index": 23, "tasks": ["insert the cable into the holder"], "length": 478}
25
+ {"episode_index": 24, "tasks": ["insert the cable into the holder"], "length": 477}
26
+ {"episode_index": 25, "tasks": ["insert the cable into the holder"], "length": 478}
27
+ {"episode_index": 26, "tasks": ["insert the cable into the holder"], "length": 477}
28
+ {"episode_index": 27, "tasks": ["insert the cable into the holder"], "length": 476}
29
+ {"episode_index": 28, "tasks": ["insert the cable into the holder"], "length": 476}
30
+ {"episode_index": 29, "tasks": ["insert the cable into the holder"], "length": 477}
31
+ {"episode_index": 30, "tasks": ["insert the cable into the holder"], "length": 476}
32
+ {"episode_index": 31, "tasks": ["insert the cable into the holder"], "length": 477}
33
+ {"episode_index": 32, "tasks": ["insert the cable into the holder"], "length": 477}
34
+ {"episode_index": 33, "tasks": ["insert the cable into the holder"], "length": 477}
35
+ {"episode_index": 34, "tasks": ["insert the cable into the holder"], "length": 476}
36
+ {"episode_index": 35, "tasks": ["insert the cable into the holder"], "length": 478}
37
+ {"episode_index": 36, "tasks": ["insert the cable into the holder"], "length": 477}
38
+ {"episode_index": 37, "tasks": ["insert the cable into the holder"], "length": 477}
39
+ {"episode_index": 38, "tasks": ["insert the cable into the holder"], "length": 476}
40
+ {"episode_index": 39, "tasks": ["insert the cable into the holder"], "length": 476}
41
+ {"episode_index": 40, "tasks": ["insert the cable into the holder"], "length": 476}
42
+ {"episode_index": 41, "tasks": ["insert the cable into the holder"], "length": 477}
43
+ {"episode_index": 42, "tasks": ["insert the cable into the holder"], "length": 476}
44
+ {"episode_index": 43, "tasks": ["insert the cable into the holder"], "length": 476}
45
+ {"episode_index": 44, "tasks": ["insert the cable into the holder"], "length": 477}
46
+ {"episode_index": 45, "tasks": ["insert the cable into the holder"], "length": 478}
47
+ {"episode_index": 46, "tasks": ["insert the cable into the holder"], "length": 477}
48
+ {"episode_index": 47, "tasks": ["insert the cable into the holder"], "length": 477}
49
+ {"episode_index": 48, "tasks": ["insert the cable into the holder"], "length": 476}
50
+ {"episode_index": 49, "tasks": ["insert the cable into the holder"], "length": 476}
51
+ {"episode_index": 50, "tasks": ["insert the cable into the holder"], "length": 478}
52
+ {"episode_index": 51, "tasks": ["insert the cable into the holder"], "length": 477}
53
+ {"episode_index": 52, "tasks": ["insert the cable into the holder"], "length": 476}
54
+ {"episode_index": 53, "tasks": ["insert the cable into the holder"], "length": 477}
55
+ {"episode_index": 54, "tasks": ["insert the cable into the holder"], "length": 478}
56
+ {"episode_index": 55, "tasks": ["insert the cable into the holder"], "length": 477}
57
+ {"episode_index": 56, "tasks": ["insert the cable into the holder"], "length": 477}
58
+ {"episode_index": 57, "tasks": ["insert the cable into the holder"], "length": 477}
59
+ {"episode_index": 58, "tasks": ["insert the cable into the holder"], "length": 477}
60
+ {"episode_index": 59, "tasks": ["insert the cable into the holder"], "length": 477}
61
+ {"episode_index": 60, "tasks": ["insert the cable into the holder"], "length": 477}
62
+ {"episode_index": 61, "tasks": ["insert the cable into the holder"], "length": 477}
63
+ {"episode_index": 62, "tasks": ["insert the cable into the holder"], "length": 478}
64
+ {"episode_index": 63, "tasks": ["insert the cable into the holder"], "length": 478}
65
+ {"episode_index": 64, "tasks": ["insert the cable into the holder"], "length": 478}
66
+ {"episode_index": 65, "tasks": ["insert the cable into the holder"], "length": 479}
67
+ {"episode_index": 66, "tasks": ["insert the cable into the holder"], "length": 477}
68
+ {"episode_index": 67, "tasks": ["insert the cable into the holder"], "length": 477}
69
+ {"episode_index": 68, "tasks": ["insert the cable into the holder"], "length": 477}
70
+ {"episode_index": 69, "tasks": ["insert the cable into the holder"], "length": 478}
71
+ {"episode_index": 70, "tasks": ["insert the cable into the holder"], "length": 477}
72
+ {"episode_index": 71, "tasks": ["insert the cable into the holder"], "length": 477}
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,639 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "codebase_version": "v2.1",
3
+ "robot_type": "hessian",
4
+ "total_episodes": 72,
5
+ "total_frames": 34350,
6
+ "total_tasks": 1,
7
+ "total_videos": 216,
8
+ "total_chunks": 1,
9
+ "chunks_size": 1000,
10
+ "fps": 60,
11
+ "splits": {
12
+ "train": "0:72"
13
+ },
14
+ "data_path": "data/cable_insertion_2.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
+ "source_action_time_s": {
53
+ "dtype": "float32",
54
+ "shape": [
55
+ 1
56
+ ],
57
+ "tsfile_role": "FIELD"
58
+ },
59
+ "source_raw_action_time_s": {
60
+ "dtype": "float32",
61
+ "shape": [
62
+ 1
63
+ ],
64
+ "tsfile_role": "FIELD"
65
+ },
66
+ "prompt": {
67
+ "dtype": "string",
68
+ "shape": [
69
+ 1
70
+ ],
71
+ "tsfile_role": "FIELD"
72
+ },
73
+ "observation_state_0": {
74
+ "dtype": "float32",
75
+ "shape": [
76
+ 1
77
+ ],
78
+ "tsfile_role": "FIELD"
79
+ },
80
+ "observation_state_1": {
81
+ "dtype": "float32",
82
+ "shape": [
83
+ 1
84
+ ],
85
+ "tsfile_role": "FIELD"
86
+ },
87
+ "observation_state_2": {
88
+ "dtype": "float32",
89
+ "shape": [
90
+ 1
91
+ ],
92
+ "tsfile_role": "FIELD"
93
+ },
94
+ "observation_state_3": {
95
+ "dtype": "float32",
96
+ "shape": [
97
+ 1
98
+ ],
99
+ "tsfile_role": "FIELD"
100
+ },
101
+ "observation_state_4": {
102
+ "dtype": "float32",
103
+ "shape": [
104
+ 1
105
+ ],
106
+ "tsfile_role": "FIELD"
107
+ },
108
+ "observation_state_5": {
109
+ "dtype": "float32",
110
+ "shape": [
111
+ 1
112
+ ],
113
+ "tsfile_role": "FIELD"
114
+ },
115
+ "observation_state_6": {
116
+ "dtype": "float32",
117
+ "shape": [
118
+ 1
119
+ ],
120
+ "tsfile_role": "FIELD"
121
+ },
122
+ "observation_state_7": {
123
+ "dtype": "float32",
124
+ "shape": [
125
+ 1
126
+ ],
127
+ "tsfile_role": "FIELD"
128
+ },
129
+ "observation_state_8": {
130
+ "dtype": "float32",
131
+ "shape": [
132
+ 1
133
+ ],
134
+ "tsfile_role": "FIELD"
135
+ },
136
+ "observation_state_9": {
137
+ "dtype": "float32",
138
+ "shape": [
139
+ 1
140
+ ],
141
+ "tsfile_role": "FIELD"
142
+ },
143
+ "observation_state_10": {
144
+ "dtype": "float32",
145
+ "shape": [
146
+ 1
147
+ ],
148
+ "tsfile_role": "FIELD"
149
+ },
150
+ "observation_state_11": {
151
+ "dtype": "float32",
152
+ "shape": [
153
+ 1
154
+ ],
155
+ "tsfile_role": "FIELD"
156
+ },
157
+ "observation_state_12": {
158
+ "dtype": "float32",
159
+ "shape": [
160
+ 1
161
+ ],
162
+ "tsfile_role": "FIELD"
163
+ },
164
+ "observation_state_13": {
165
+ "dtype": "float32",
166
+ "shape": [
167
+ 1
168
+ ],
169
+ "tsfile_role": "FIELD"
170
+ },
171
+ "observation_velocity_0": {
172
+ "dtype": "float32",
173
+ "shape": [
174
+ 1
175
+ ],
176
+ "tsfile_role": "FIELD"
177
+ },
178
+ "observation_velocity_1": {
179
+ "dtype": "float32",
180
+ "shape": [
181
+ 1
182
+ ],
183
+ "tsfile_role": "FIELD"
184
+ },
185
+ "observation_velocity_2": {
186
+ "dtype": "float32",
187
+ "shape": [
188
+ 1
189
+ ],
190
+ "tsfile_role": "FIELD"
191
+ },
192
+ "observation_velocity_3": {
193
+ "dtype": "float32",
194
+ "shape": [
195
+ 1
196
+ ],
197
+ "tsfile_role": "FIELD"
198
+ },
199
+ "observation_velocity_4": {
200
+ "dtype": "float32",
201
+ "shape": [
202
+ 1
203
+ ],
204
+ "tsfile_role": "FIELD"
205
+ },
206
+ "observation_velocity_5": {
207
+ "dtype": "float32",
208
+ "shape": [
209
+ 1
210
+ ],
211
+ "tsfile_role": "FIELD"
212
+ },
213
+ "observation_velocity_6": {
214
+ "dtype": "float32",
215
+ "shape": [
216
+ 1
217
+ ],
218
+ "tsfile_role": "FIELD"
219
+ },
220
+ "observation_velocity_7": {
221
+ "dtype": "float32",
222
+ "shape": [
223
+ 1
224
+ ],
225
+ "tsfile_role": "FIELD"
226
+ },
227
+ "observation_velocity_8": {
228
+ "dtype": "float32",
229
+ "shape": [
230
+ 1
231
+ ],
232
+ "tsfile_role": "FIELD"
233
+ },
234
+ "observation_velocity_9": {
235
+ "dtype": "float32",
236
+ "shape": [
237
+ 1
238
+ ],
239
+ "tsfile_role": "FIELD"
240
+ },
241
+ "observation_velocity_10": {
242
+ "dtype": "float32",
243
+ "shape": [
244
+ 1
245
+ ],
246
+ "tsfile_role": "FIELD"
247
+ },
248
+ "observation_velocity_11": {
249
+ "dtype": "float32",
250
+ "shape": [
251
+ 1
252
+ ],
253
+ "tsfile_role": "FIELD"
254
+ },
255
+ "observation_velocity_12": {
256
+ "dtype": "float32",
257
+ "shape": [
258
+ 1
259
+ ],
260
+ "tsfile_role": "FIELD"
261
+ },
262
+ "observation_velocity_13": {
263
+ "dtype": "float32",
264
+ "shape": [
265
+ 1
266
+ ],
267
+ "tsfile_role": "FIELD"
268
+ },
269
+ "action_0": {
270
+ "dtype": "float32",
271
+ "shape": [
272
+ 1
273
+ ],
274
+ "tsfile_role": "FIELD"
275
+ },
276
+ "action_1": {
277
+ "dtype": "float32",
278
+ "shape": [
279
+ 1
280
+ ],
281
+ "tsfile_role": "FIELD"
282
+ },
283
+ "action_2": {
284
+ "dtype": "float32",
285
+ "shape": [
286
+ 1
287
+ ],
288
+ "tsfile_role": "FIELD"
289
+ },
290
+ "action_3": {
291
+ "dtype": "float32",
292
+ "shape": [
293
+ 1
294
+ ],
295
+ "tsfile_role": "FIELD"
296
+ },
297
+ "action_4": {
298
+ "dtype": "float32",
299
+ "shape": [
300
+ 1
301
+ ],
302
+ "tsfile_role": "FIELD"
303
+ },
304
+ "action_5": {
305
+ "dtype": "float32",
306
+ "shape": [
307
+ 1
308
+ ],
309
+ "tsfile_role": "FIELD"
310
+ },
311
+ "action_6": {
312
+ "dtype": "float32",
313
+ "shape": [
314
+ 1
315
+ ],
316
+ "tsfile_role": "FIELD"
317
+ },
318
+ "action_7": {
319
+ "dtype": "float32",
320
+ "shape": [
321
+ 1
322
+ ],
323
+ "tsfile_role": "FIELD"
324
+ },
325
+ "action_8": {
326
+ "dtype": "float32",
327
+ "shape": [
328
+ 1
329
+ ],
330
+ "tsfile_role": "FIELD"
331
+ },
332
+ "action_9": {
333
+ "dtype": "float32",
334
+ "shape": [
335
+ 1
336
+ ],
337
+ "tsfile_role": "FIELD"
338
+ },
339
+ "action_10": {
340
+ "dtype": "float32",
341
+ "shape": [
342
+ 1
343
+ ],
344
+ "tsfile_role": "FIELD"
345
+ },
346
+ "action_11": {
347
+ "dtype": "float32",
348
+ "shape": [
349
+ 1
350
+ ],
351
+ "tsfile_role": "FIELD"
352
+ },
353
+ "action_12": {
354
+ "dtype": "float32",
355
+ "shape": [
356
+ 1
357
+ ],
358
+ "tsfile_role": "FIELD"
359
+ },
360
+ "action_13": {
361
+ "dtype": "float32",
362
+ "shape": [
363
+ 1
364
+ ],
365
+ "tsfile_role": "FIELD"
366
+ },
367
+ "raw_action_0": {
368
+ "dtype": "float32",
369
+ "shape": [
370
+ 1
371
+ ],
372
+ "tsfile_role": "FIELD"
373
+ },
374
+ "raw_action_1": {
375
+ "dtype": "float32",
376
+ "shape": [
377
+ 1
378
+ ],
379
+ "tsfile_role": "FIELD"
380
+ },
381
+ "raw_action_2": {
382
+ "dtype": "float32",
383
+ "shape": [
384
+ 1
385
+ ],
386
+ "tsfile_role": "FIELD"
387
+ },
388
+ "raw_action_3": {
389
+ "dtype": "float32",
390
+ "shape": [
391
+ 1
392
+ ],
393
+ "tsfile_role": "FIELD"
394
+ },
395
+ "raw_action_4": {
396
+ "dtype": "float32",
397
+ "shape": [
398
+ 1
399
+ ],
400
+ "tsfile_role": "FIELD"
401
+ },
402
+ "raw_action_5": {
403
+ "dtype": "float32",
404
+ "shape": [
405
+ 1
406
+ ],
407
+ "tsfile_role": "FIELD"
408
+ },
409
+ "raw_action_6": {
410
+ "dtype": "float32",
411
+ "shape": [
412
+ 1
413
+ ],
414
+ "tsfile_role": "FIELD"
415
+ },
416
+ "raw_action_7": {
417
+ "dtype": "float32",
418
+ "shape": [
419
+ 1
420
+ ],
421
+ "tsfile_role": "FIELD"
422
+ },
423
+ "raw_action_8": {
424
+ "dtype": "float32",
425
+ "shape": [
426
+ 1
427
+ ],
428
+ "tsfile_role": "FIELD"
429
+ },
430
+ "raw_action_9": {
431
+ "dtype": "float32",
432
+ "shape": [
433
+ 1
434
+ ],
435
+ "tsfile_role": "FIELD"
436
+ },
437
+ "raw_action_10": {
438
+ "dtype": "float32",
439
+ "shape": [
440
+ 1
441
+ ],
442
+ "tsfile_role": "FIELD"
443
+ },
444
+ "raw_action_11": {
445
+ "dtype": "float32",
446
+ "shape": [
447
+ 1
448
+ ],
449
+ "tsfile_role": "FIELD"
450
+ },
451
+ "raw_action_12": {
452
+ "dtype": "float32",
453
+ "shape": [
454
+ 1
455
+ ],
456
+ "tsfile_role": "FIELD"
457
+ },
458
+ "raw_action_13": {
459
+ "dtype": "float32",
460
+ "shape": [
461
+ 1
462
+ ],
463
+ "tsfile_role": "FIELD"
464
+ }
465
+ },
466
+ "video_path_original": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
467
+ "tsfile_conversion": {
468
+ "source_dataset": "DistantSky/cable_insertion_2",
469
+ "source_data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
470
+ "converted_data_path": "data/cable_insertion_2.tsfile",
471
+ "table_name": "cable_insertion_2",
472
+ "granularity": "merged",
473
+ "time_precision": "ms",
474
+ "time_mapping": {
475
+ "source": "auto",
476
+ "fps": 30,
477
+ "unit": "milliseconds"
478
+ },
479
+ "tag_columns": [
480
+ "episode_index",
481
+ "task_index"
482
+ ],
483
+ "row_count": 34350,
484
+ "feature_source": "features describe the converted TsFile schema",
485
+ "flattened_features": {
486
+ "observation.state": [
487
+ "observation_state_0",
488
+ "observation_state_1",
489
+ "observation_state_2",
490
+ "observation_state_3",
491
+ "observation_state_4",
492
+ "observation_state_5",
493
+ "observation_state_6",
494
+ "observation_state_7",
495
+ "observation_state_8",
496
+ "observation_state_9",
497
+ "observation_state_10",
498
+ "observation_state_11",
499
+ "observation_state_12",
500
+ "observation_state_13"
501
+ ],
502
+ "observation.velocity": [
503
+ "observation_velocity_0",
504
+ "observation_velocity_1",
505
+ "observation_velocity_2",
506
+ "observation_velocity_3",
507
+ "observation_velocity_4",
508
+ "observation_velocity_5",
509
+ "observation_velocity_6",
510
+ "observation_velocity_7",
511
+ "observation_velocity_8",
512
+ "observation_velocity_9",
513
+ "observation_velocity_10",
514
+ "observation_velocity_11",
515
+ "observation_velocity_12",
516
+ "observation_velocity_13"
517
+ ],
518
+ "action": [
519
+ "action_0",
520
+ "action_1",
521
+ "action_2",
522
+ "action_3",
523
+ "action_4",
524
+ "action_5",
525
+ "action_6",
526
+ "action_7",
527
+ "action_8",
528
+ "action_9",
529
+ "action_10",
530
+ "action_11",
531
+ "action_12",
532
+ "action_13"
533
+ ],
534
+ "raw_action": [
535
+ "raw_action_0",
536
+ "raw_action_1",
537
+ "raw_action_2",
538
+ "raw_action_3",
539
+ "raw_action_4",
540
+ "raw_action_5",
541
+ "raw_action_6",
542
+ "raw_action_7",
543
+ "raw_action_8",
544
+ "raw_action_9",
545
+ "raw_action_10",
546
+ "raw_action_11",
547
+ "raw_action_12",
548
+ "raw_action_13"
549
+ ]
550
+ },
551
+ "renamed_features": {
552
+ "source.action_time_s": "source_action_time_s",
553
+ "source.raw_action_time_s": "source_raw_action_time_s",
554
+ "index": "sample_index"
555
+ },
556
+ "dropped_features": [
557
+ "timestamp"
558
+ ],
559
+ "omitted_features": [
560
+ "observation.images.video_left",
561
+ "observation.images.video_overhead",
562
+ "observation.images.video_right"
563
+ ],
564
+ "original_video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
565
+ "original_video_features": {
566
+ "observation.images.video_left": {
567
+ "dtype": "video",
568
+ "shape": [
569
+ 224,
570
+ 224,
571
+ 3
572
+ ],
573
+ "names": [
574
+ "height",
575
+ "width",
576
+ "channel"
577
+ ],
578
+ "info": {
579
+ "video.height": 224,
580
+ "video.width": 224,
581
+ "video.codec": "av1",
582
+ "video.pix_fmt": "yuv420p",
583
+ "video.is_depth_map": false,
584
+ "video.fps": 60,
585
+ "video.channels": 3,
586
+ "has_audio": false
587
+ }
588
+ },
589
+ "observation.images.video_overhead": {
590
+ "dtype": "video",
591
+ "shape": [
592
+ 224,
593
+ 224,
594
+ 3
595
+ ],
596
+ "names": [
597
+ "height",
598
+ "width",
599
+ "channel"
600
+ ],
601
+ "info": {
602
+ "video.height": 224,
603
+ "video.width": 224,
604
+ "video.codec": "av1",
605
+ "video.pix_fmt": "yuv420p",
606
+ "video.is_depth_map": false,
607
+ "video.fps": 60,
608
+ "video.channels": 3,
609
+ "has_audio": false
610
+ }
611
+ },
612
+ "observation.images.video_right": {
613
+ "dtype": "video",
614
+ "shape": [
615
+ 224,
616
+ 224,
617
+ 3
618
+ ],
619
+ "names": [
620
+ "height",
621
+ "width",
622
+ "channel"
623
+ ],
624
+ "info": {
625
+ "video.height": 224,
626
+ "video.width": 224,
627
+ "video.codec": "av1",
628
+ "video.pix_fmt": "yuv420p",
629
+ "video.is_depth_map": false,
630
+ "video.fps": 60,
631
+ "video.channels": 3,
632
+ "has_audio": false
633
+ }
634
+ }
635
+ },
636
+ "original_video_source": "https://huggingface.co/datasets/DistantSky/cable_insertion_2/tree/main/videos",
637
+ "video_policy": "Videos are not uploaded to this repository; use the original HuggingFace dataset videos."
638
+ }
639
+ }
meta/tasks.jsonl ADDED
@@ -0,0 +1 @@
 
 
1
+ {"task_index": 0, "task": "insert the cable into the holder"}