THUgewu commited on
Commit
5ce5332
·
verified ·
1 Parent(s): 442ec48

Fix facet tags: lowercase tsfile + add timeseries

Browse files
Files changed (1) hide show
  1. README.md +93 -92
README.md CHANGED
@@ -1,92 +1,93 @@
1
- ---
2
- pretty_name: eval1_chengming TsFile
3
- tags:
4
- - TsFile
5
- - time-series
6
- - robotics
7
- - LeRobot
8
- - SO-101
9
- - imitation-learning
10
- modality: timeseries
11
- configs:
12
- - config_name: default
13
- data_files:
14
- - split: train
15
- path: data/eval1_chengming.tsfile
16
- ---
17
-
18
- # eval1_chengming
19
-
20
- This dataset was converted from
21
- [`robot-learning-group47/eval1_chengming`](https://huggingface.co/datasets/robot-learning-group47/eval1_chengming)
22
- to Apache TsFile format.
23
-
24
- Modalities: Time-series. The original dataset also contains a front-camera
25
- video stream, which remains in the source Hugging Face dataset and is not
26
- included in this converted repository.
27
-
28
- ## Source Dataset
29
-
30
- - Original dataset: [`robot-learning-group47/eval1_chengming`](https://huggingface.co/datasets/robot-learning-group47/eval1_chengming)
31
- - Source format: LeRobot v3 parquet frames with metadata and one front-camera video stream
32
- - Robot type: `so_follower`
33
- - Split: `train`
34
- - Episodes: 60
35
- - Frames / TsFile rows: 13,408
36
- - Tasks: 3
37
- - Sampling rate: 15 fps
38
- - License metadata: not provided by the source dataset card
39
- - Original data path: `data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet`
40
- - Original video path: `videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4`
41
-
42
- The episode metadata names three task variants: put the banana in the red,
43
- green, or blue colored bowl.
44
-
45
- ## Files
46
-
47
- - `data/eval1_chengming.tsfile`: converted numeric time-series table
48
- - `meta/`: source metadata mirrored from the original dataset, with
49
- `meta/info.json` rewritten to describe the converted TsFile layout
50
-
51
- Videos are not included in this repository. The original camera video stream
52
- `observation.images.front` remains in the source dataset under
53
- [`videos/`](https://huggingface.co/datasets/robot-learning-group47/eval1_chengming/tree/main/videos).
54
-
55
- ## Schema
56
-
57
- The TsFile table name is `eval1_chengming`.
58
-
59
- - `Time`: integer timestamp in milliseconds, synthesized as `round(timestamp * 1000)`
60
- - TAG columns: `episode_index`, `task_index`
61
- - FIELD columns: `frame_index`, `sample_index`, `action_0..action_5`,
62
- `observation_state_0..observation_state_5`
63
-
64
- The six action and observation-state dimensions use the original LeRobot joint
65
- order: `shoulder_pan.pos`, `shoulder_lift.pos`, `elbow_flex.pos`,
66
- `wrist_flex.pos`, `wrist_roll.pos`, and `gripper.pos`.
67
-
68
- ## Conversion Notes
69
-
70
- - Converted with the generic `lerobot` converter in the HuggingFace-to-TsFile
71
- pipeline.
72
- - All 60 episodes are stored in one TsFile. Use `episode_index` and
73
- `task_index` as TAG filters when querying.
74
- - Source `action[6]` was flattened to `action_0..action_5` as FLOAT fields.
75
- - Source `observation.state[6]` was flattened to `observation_state_0..5` as
76
- FLOAT fields.
77
- - Source `index` was renamed to `sample_index`.
78
- - Source `timestamp` is not retained as a separate field because the same
79
- information is represented by `Time / 1000` seconds.
80
- - Source video field `observation.images.front` is omitted from this TsFile
81
- conversion and remains available in the original dataset.
82
- - No rows were dropped.
83
-
84
- ## Minimal Read Example
85
-
86
- ```python
87
- from tsfile import TsFileReader
88
-
89
- reader = TsFileReader("data/eval1_chengming.tsfile")
90
- schemas = reader.get_all_table_schemas()
91
- print(schemas.keys())
92
- ```
 
 
1
+ ---
2
+ pretty_name: eval1_chengming TsFile
3
+ tags:
4
+ - tsfile
5
+ - time-series
6
+ - robotics
7
+ - LeRobot
8
+ - SO-101
9
+ - imitation-learning
10
+ - timeseries
11
+ modality: timeseries
12
+ configs:
13
+ - config_name: default
14
+ data_files:
15
+ - split: train
16
+ path: data/eval1_chengming.tsfile
17
+ ---
18
+
19
+ # eval1_chengming
20
+
21
+ This dataset was converted from
22
+ [`robot-learning-group47/eval1_chengming`](https://huggingface.co/datasets/robot-learning-group47/eval1_chengming)
23
+ to Apache TsFile format.
24
+
25
+ Modalities: Time-series. The original dataset also contains a front-camera
26
+ video stream, which remains in the source Hugging Face dataset and is not
27
+ included in this converted repository.
28
+
29
+ ## Source Dataset
30
+
31
+ - Original dataset: [`robot-learning-group47/eval1_chengming`](https://huggingface.co/datasets/robot-learning-group47/eval1_chengming)
32
+ - Source format: LeRobot v3 parquet frames with metadata and one front-camera video stream
33
+ - Robot type: `so_follower`
34
+ - Split: `train`
35
+ - Episodes: 60
36
+ - Frames / TsFile rows: 13,408
37
+ - Tasks: 3
38
+ - Sampling rate: 15 fps
39
+ - License metadata: not provided by the source dataset card
40
+ - Original data path: `data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet`
41
+ - Original video path: `videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4`
42
+
43
+ The episode metadata names three task variants: put the banana in the red,
44
+ green, or blue colored bowl.
45
+
46
+ ## Files
47
+
48
+ - `data/eval1_chengming.tsfile`: converted numeric time-series table
49
+ - `meta/`: source metadata mirrored from the original dataset, with
50
+ `meta/info.json` rewritten to describe the converted TsFile layout
51
+
52
+ Videos are not included in this repository. The original camera video stream
53
+ `observation.images.front` remains in the source dataset under
54
+ [`videos/`](https://huggingface.co/datasets/robot-learning-group47/eval1_chengming/tree/main/videos).
55
+
56
+ ## Schema
57
+
58
+ The TsFile table name is `eval1_chengming`.
59
+
60
+ - `Time`: integer timestamp in milliseconds, synthesized as `round(timestamp * 1000)`
61
+ - TAG columns: `episode_index`, `task_index`
62
+ - FIELD columns: `frame_index`, `sample_index`, `action_0..action_5`,
63
+ `observation_state_0..observation_state_5`
64
+
65
+ The six action and observation-state dimensions use the original LeRobot joint
66
+ order: `shoulder_pan.pos`, `shoulder_lift.pos`, `elbow_flex.pos`,
67
+ `wrist_flex.pos`, `wrist_roll.pos`, and `gripper.pos`.
68
+
69
+ ## Conversion Notes
70
+
71
+ - Converted with the generic `lerobot` converter in the HuggingFace-to-TsFile
72
+ pipeline.
73
+ - All 60 episodes are stored in one TsFile. Use `episode_index` and
74
+ `task_index` as TAG filters when querying.
75
+ - Source `action[6]` was flattened to `action_0..action_5` as FLOAT fields.
76
+ - Source `observation.state[6]` was flattened to `observation_state_0..5` as
77
+ FLOAT fields.
78
+ - Source `index` was renamed to `sample_index`.
79
+ - Source `timestamp` is not retained as a separate field because the same
80
+ information is represented by `Time / 1000` seconds.
81
+ - Source video field `observation.images.front` is omitted from this TsFile
82
+ conversion and remains available in the original dataset.
83
+ - No rows were dropped.
84
+
85
+ ## Minimal Read Example
86
+
87
+ ```python
88
+ from tsfile import TsFileReader
89
+
90
+ reader = TsFileReader("data/eval1_chengming.tsfile")
91
+ schemas = reader.get_all_table_schemas()
92
+ print(schemas.keys())
93
+ ```