Datasets:

XNX25 commited on
Commit
fbd1ea1
·
verified ·
1 Parent(s): 15f427a

chore: sync metadata, drop original files

Browse files
Files changed (4) hide show
  1. README.md +77 -69
  2. meta/episodes.jsonl +0 -66
  3. meta/episodes_stats.jsonl +0 -0
  4. meta/tasks.jsonl +0 -1
README.md CHANGED
@@ -1,69 +1,77 @@
1
- ---
2
- license: apache-2.0
3
- task_categories:
4
- - robotics
5
- tags:
6
- - LeRobot
7
- - tsfile
8
- - format:tsfile
9
- - time-series
10
- modality:
11
- - timeseries
12
- configs:
13
- - config_name: default
14
- data_files:
15
- - split: train
16
- path: data/cable_insertion_3.tsfile
17
- ---
18
-
19
- # cable_insertion_3 (TsFile)
20
-
21
- Apache TsFile version of [`DistantSky/cable_insertion_3`](https://huggingface.co/datasets/DistantSky/cable_insertion_3).
22
-
23
- ## Overview
24
-
25
- This dataset is a LeRobot v2.1 dataset of a Hessian arm performing cable insertion at 60 fps, with per-episode `prompt` text.
26
-
27
- - **Robot:** Hessian (hessian)
28
- - **Scale:** 66 episodes, 19,896 frames, 60 fps
29
- - **Split:** train
30
- - **Cameras (not uploaded):** `video_left`, `video_overhead`, `video_right`
31
-
32
- ## Schema (TsFile structure)
33
-
34
- The TsFile table is named `cable_insertion_3`.
35
-
36
- | Role | Columns |
37
- | --- | --- |
38
- | Time | `Time`, INT64 milliseconds |
39
- | TAG | `episode_index`, `task_index` |
40
- | FIELD | `frame_index`, `sample_index` |
41
- | FIELD | `observation_state_0` … `observation_state_13`, FLOAT |
42
- | FIELD | `observation_velocity_0` `observation_velocity_13`, FLOAT |
43
- | FIELD | `action_0` … `action_13`, FLOAT |
44
- | FIELD | `source_action_time_s` |
45
- | FIELD | `prompt` |
46
-
47
- Vector columns are flattened into scalar FLOAT measurements (single precision). The source `index` column is retained as `sample_index`.
48
-
49
- ## Conversion notes
50
-
51
- - `Time = round(timestamp * 1000)` with millisecond precision; time restarts inside each episode, while `episode_index` and `task_index` identify the TsFile device.
52
- - The original `timestamp` field is omitted because it is exactly represented by `Time / 1000`.
53
- - Camera video streams are NOT included in this repository; they remain in the [source videos tree](https://huggingface.co/datasets/DistantSky/cable_insertion_3/tree/main/videos).
54
- - `meta/` is mirrored from the source. Aside from the redundant `timestamp` column and the excluded videos, no source rows or numeric fields are dropped.
55
-
56
- ## Read example
57
-
58
- ```python
59
- from tsfile import TsFileReader
60
-
61
- with TsFileReader("data/cable_insertion_3.tsfile") as reader:
62
- print(reader.get_all_table_schemas()["cable_insertion_3"])
63
- ```
64
-
65
- ## Source & license
66
-
67
- - Original dataset: https://huggingface.co/datasets/DistantSky/cable_insertion_3
68
- - Author: DistantSky
69
- - License: apache-2.0
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - LeRobot
7
+ - real
8
+ - hdf5
9
+ - hessian
10
+ - tsfile
11
+ - format:tsfile
12
+ - time-series
13
+ - timeseries
14
+ modality:
15
+ - tabular
16
+ - text
17
+ - timeseries
18
+ configs:
19
+ - config_name: default
20
+ data_files:
21
+ - split: train
22
+ path: data/cable_insertion_3.tsfile
23
+ size_categories:
24
+ - 10K<n<100K
25
+ ---
26
+
27
+ # cable_insertion_3 (TsFile)
28
+
29
+ Apache TsFile version of [`DistantSky/cable_insertion_3`](https://huggingface.co/datasets/DistantSky/cable_insertion_3).
30
+
31
+ ## Overview
32
+
33
+ This dataset is a LeRobot v2.1 dataset of a Hessian arm performing cable insertion at 60 fps, with per-episode `prompt` text.
34
+
35
+ - **Robot:** Hessian (hessian)
36
+ - **Scale:** 66 episodes, 19,896 frames, 60 fps
37
+ - **Split:** train
38
+ - **Cameras (not uploaded):** `video_left`, `video_overhead`, `video_right`
39
+
40
+ ## Schema (TsFile structure)
41
+
42
+ The TsFile table is named `cable_insertion_3`.
43
+
44
+ | Role | Columns |
45
+ | --- | --- |
46
+ | Time | `Time`, INT64 milliseconds |
47
+ | TAG | `episode_index`, `task_index` |
48
+ | FIELD | `frame_index`, `sample_index` |
49
+ | FIELD | `observation_state_0` … `observation_state_13`, FLOAT |
50
+ | FIELD | `observation_velocity_0` … `observation_velocity_13`, FLOAT |
51
+ | FIELD | `action_0` `action_13`, FLOAT |
52
+ | FIELD | `source_action_time_s` |
53
+ | FIELD | `prompt` |
54
+
55
+ Vector columns are flattened into scalar FLOAT measurements (single precision). The source `index` column is retained as `sample_index`.
56
+
57
+ ## Conversion notes
58
+
59
+ - `Time = round(timestamp * 1000)` with millisecond precision; time restarts inside each episode, while `episode_index` and `task_index` identify the TsFile device.
60
+ - The original `timestamp` field is omitted because it is exactly represented by `Time / 1000`.
61
+ - Camera video streams are NOT included in this repository; they remain in the [source videos tree](https://huggingface.co/datasets/DistantSky/cable_insertion_3/tree/main/videos).
62
+ - `meta/` is mirrored from the source. Aside from the redundant `timestamp` column and the excluded videos, no source rows or numeric fields are dropped.
63
+
64
+ ## Read example
65
+
66
+ ```python
67
+ from tsfile import TsFileReader
68
+
69
+ with TsFileReader("data/cable_insertion_3.tsfile") as reader:
70
+ print(reader.get_all_table_schemas()["cable_insertion_3"])
71
+ ```
72
+
73
+ ## Source & license
74
+
75
+ - Original dataset: https://huggingface.co/datasets/DistantSky/cable_insertion_3
76
+ - Author: DistantSky
77
+ - License: apache-2.0
meta/episodes.jsonl DELETED
@@ -1,66 +0,0 @@
1
- {"episode_index": 0, "tasks": ["insert the cable into the holder"], "length": 301}
2
- {"episode_index": 1, "tasks": ["insert the cable into the holder"], "length": 301}
3
- {"episode_index": 2, "tasks": ["insert the cable into the holder"], "length": 301}
4
- {"episode_index": 3, "tasks": ["insert the cable into the holder"], "length": 304}
5
- {"episode_index": 4, "tasks": ["insert the cable into the holder"], "length": 302}
6
- {"episode_index": 5, "tasks": ["insert the cable into the holder"], "length": 301}
7
- {"episode_index": 6, "tasks": ["insert the cable into the holder"], "length": 302}
8
- {"episode_index": 7, "tasks": ["insert the cable into the holder"], "length": 301}
9
- {"episode_index": 8, "tasks": ["insert the cable into the holder"], "length": 300}
10
- {"episode_index": 9, "tasks": ["insert the cable into the holder"], "length": 300}
11
- {"episode_index": 10, "tasks": ["insert the cable into the holder"], "length": 301}
12
- {"episode_index": 11, "tasks": ["insert the cable into the holder"], "length": 302}
13
- {"episode_index": 12, "tasks": ["insert the cable into the holder"], "length": 300}
14
- {"episode_index": 13, "tasks": ["insert the cable into the holder"], "length": 301}
15
- {"episode_index": 14, "tasks": ["insert the cable into the holder"], "length": 302}
16
- {"episode_index": 15, "tasks": ["insert the cable into the holder"], "length": 300}
17
- {"episode_index": 16, "tasks": ["insert the cable into the holder"], "length": 302}
18
- {"episode_index": 17, "tasks": ["insert the cable into the holder"], "length": 301}
19
- {"episode_index": 18, "tasks": ["insert the cable into the holder"], "length": 301}
20
- {"episode_index": 19, "tasks": ["insert the cable into the holder"], "length": 301}
21
- {"episode_index": 20, "tasks": ["insert the cable into the holder"], "length": 302}
22
- {"episode_index": 21, "tasks": ["insert the cable into the holder"], "length": 303}
23
- {"episode_index": 22, "tasks": ["insert the cable into the holder"], "length": 301}
24
- {"episode_index": 23, "tasks": ["insert the cable into the holder"], "length": 302}
25
- {"episode_index": 24, "tasks": ["insert the cable into the holder"], "length": 301}
26
- {"episode_index": 25, "tasks": ["insert the cable into the holder"], "length": 301}
27
- {"episode_index": 26, "tasks": ["insert the cable into the holder"], "length": 303}
28
- {"episode_index": 27, "tasks": ["insert the cable into the holder"], "length": 302}
29
- {"episode_index": 28, "tasks": ["insert the cable into the holder"], "length": 302}
30
- {"episode_index": 29, "tasks": ["insert the cable into the holder"], "length": 303}
31
- {"episode_index": 30, "tasks": ["insert the cable into the holder"], "length": 302}
32
- {"episode_index": 31, "tasks": ["insert the cable into the holder"], "length": 301}
33
- {"episode_index": 32, "tasks": ["insert the cable into the holder"], "length": 301}
34
- {"episode_index": 33, "tasks": ["insert the cable into the holder"], "length": 301}
35
- {"episode_index": 34, "tasks": ["insert the cable into the holder"], "length": 302}
36
- {"episode_index": 35, "tasks": ["insert the cable into the holder"], "length": 300}
37
- {"episode_index": 36, "tasks": ["insert the cable into the holder"], "length": 303}
38
- {"episode_index": 37, "tasks": ["insert the cable into the holder"], "length": 300}
39
- {"episode_index": 38, "tasks": ["insert the cable into the holder"], "length": 302}
40
- {"episode_index": 39, "tasks": ["insert the cable into the holder"], "length": 301}
41
- {"episode_index": 40, "tasks": ["insert the cable into the holder"], "length": 301}
42
- {"episode_index": 41, "tasks": ["insert the cable into the holder"], "length": 302}
43
- {"episode_index": 42, "tasks": ["insert the cable into the holder"], "length": 301}
44
- {"episode_index": 43, "tasks": ["insert the cable into the holder"], "length": 302}
45
- {"episode_index": 44, "tasks": ["insert the cable into the holder"], "length": 301}
46
- {"episode_index": 45, "tasks": ["insert the cable into the holder"], "length": 302}
47
- {"episode_index": 46, "tasks": ["insert the cable into the holder"], "length": 301}
48
- {"episode_index": 47, "tasks": ["insert the cable into the holder"], "length": 300}
49
- {"episode_index": 48, "tasks": ["insert the cable into the holder"], "length": 300}
50
- {"episode_index": 49, "tasks": ["insert the cable into the holder"], "length": 302}
51
- {"episode_index": 50, "tasks": ["insert the cable into the holder"], "length": 301}
52
- {"episode_index": 51, "tasks": ["insert the cable into the holder"], "length": 302}
53
- {"episode_index": 52, "tasks": ["insert the cable into the holder"], "length": 301}
54
- {"episode_index": 53, "tasks": ["insert the cable into the holder"], "length": 302}
55
- {"episode_index": 54, "tasks": ["insert the cable into the holder"], "length": 302}
56
- {"episode_index": 55, "tasks": ["insert the cable into the holder"], "length": 303}
57
- {"episode_index": 56, "tasks": ["insert the cable into the holder"], "length": 302}
58
- {"episode_index": 57, "tasks": ["insert the cable into the holder"], "length": 301}
59
- {"episode_index": 58, "tasks": ["insert the cable into the holder"], "length": 301}
60
- {"episode_index": 59, "tasks": ["insert the cable into the holder"], "length": 303}
61
- {"episode_index": 60, "tasks": ["insert the cable into the holder"], "length": 301}
62
- {"episode_index": 61, "tasks": ["insert the cable into the holder"], "length": 302}
63
- {"episode_index": 62, "tasks": ["insert the cable into the holder"], "length": 302}
64
- {"episode_index": 63, "tasks": ["insert the cable into the holder"], "length": 301}
65
- {"episode_index": 64, "tasks": ["insert the cable into the holder"], "length": 302}
66
- {"episode_index": 65, "tasks": ["insert the cable into the holder"], "length": 301}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
meta/episodes_stats.jsonl DELETED
The diff for this file is too large to render. See raw diff
 
meta/tasks.jsonl DELETED
@@ -1 +0,0 @@
1
- {"task_index": 0, "task": "insert the cable into the holder"}