Datasets:
chore: sync metadata, drop original files
Browse files- README.md +72 -66
- meta/episodes.jsonl +0 -90
- meta/episodes_stats.jsonl +0 -0
- meta/tasks.jsonl +0 -1
README.md
CHANGED
|
@@ -1,66 +1,72 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
task_categories:
|
| 4 |
-
- robotics
|
| 5 |
-
tags:
|
| 6 |
-
- LeRobot
|
| 7 |
-
-
|
| 8 |
-
-
|
| 9 |
-
-
|
| 10 |
-
|
| 11 |
-
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
```
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- robotics
|
| 5 |
+
tags:
|
| 6 |
+
- LeRobot
|
| 7 |
+
- so100
|
| 8 |
+
- tutorial
|
| 9 |
+
- tsfile
|
| 10 |
+
- format:tsfile
|
| 11 |
+
- time-series
|
| 12 |
+
- timeseries
|
| 13 |
+
modality:
|
| 14 |
+
- tabular
|
| 15 |
+
- timeseries
|
| 16 |
+
configs:
|
| 17 |
+
- config_name: default
|
| 18 |
+
data_files:
|
| 19 |
+
- split: train
|
| 20 |
+
path: data/first_task_short.tsfile
|
| 21 |
+
size_categories:
|
| 22 |
+
- 10K<n<100K
|
| 23 |
+
---
|
| 24 |
+
|
| 25 |
+
# first_task_short (TsFile)
|
| 26 |
+
|
| 27 |
+
Apache TsFile version of [`pietroom/first_task_short`](https://huggingface.co/datasets/pietroom/first_task_short).
|
| 28 |
+
|
| 29 |
+
## Overview
|
| 30 |
+
|
| 31 |
+
This dataset is a LeRobot v2.1 dataset of an SO-100 arm (a short first-task recording).
|
| 32 |
+
|
| 33 |
+
- **Robot:** SO-100 (so100)
|
| 34 |
+
- **Scale:** 90 episodes, 53,830 frames, 30 fps
|
| 35 |
+
- **Split:** train
|
| 36 |
+
- **Cameras (not uploaded):** `laptop`, `phone`
|
| 37 |
+
|
| 38 |
+
## Schema (TsFile structure)
|
| 39 |
+
|
| 40 |
+
The TsFile table is named `first_task_short`.
|
| 41 |
+
|
| 42 |
+
| Role | Columns |
|
| 43 |
+
| --- | --- |
|
| 44 |
+
| Time | `Time`, INT64 milliseconds |
|
| 45 |
+
| TAG | `episode_index`, `task_index` |
|
| 46 |
+
| FIELD | `frame_index`, `sample_index` |
|
| 47 |
+
| FIELD | `action_0` … `action_5`, FLOAT |
|
| 48 |
+
| FIELD | `observation_state_0` … `observation_state_5`, FLOAT |
|
| 49 |
+
|
| 50 |
+
Vector columns are flattened into scalar FLOAT measurements (single precision). The source `index` column is retained as `sample_index`.
|
| 51 |
+
|
| 52 |
+
## Conversion notes
|
| 53 |
+
|
| 54 |
+
- `Time = round(timestamp * 1000)` with millisecond precision; time restarts inside each episode, while `episode_index` and `task_index` identify the TsFile device.
|
| 55 |
+
- The original `timestamp` field is omitted because it is exactly represented by `Time / 1000`.
|
| 56 |
+
- Camera video streams are NOT included in this repository; they remain in the [source videos tree](https://huggingface.co/datasets/pietroom/first_task_short/tree/main/videos).
|
| 57 |
+
- `meta/` is mirrored from the source. Aside from the redundant `timestamp` column and the excluded videos, no source rows or numeric fields are dropped.
|
| 58 |
+
|
| 59 |
+
## Read example
|
| 60 |
+
|
| 61 |
+
```python
|
| 62 |
+
from tsfile import TsFileReader
|
| 63 |
+
|
| 64 |
+
with TsFileReader("data/first_task_short.tsfile") as reader:
|
| 65 |
+
print(reader.get_all_table_schemas()["first_task_short"])
|
| 66 |
+
```
|
| 67 |
+
|
| 68 |
+
## Source & license
|
| 69 |
+
|
| 70 |
+
- Original dataset: https://huggingface.co/datasets/pietroom/first_task_short
|
| 71 |
+
- Author: pietroom
|
| 72 |
+
- License: apache-2.0
|
meta/episodes.jsonl
DELETED
|
@@ -1,90 +0,0 @@
|
|
| 1 |
-
{"episode_index": 0, "tasks": ["Pass the marker."], "length": 598}
|
| 2 |
-
{"episode_index": 1, "tasks": ["Pass the marker."], "length": 598}
|
| 3 |
-
{"episode_index": 2, "tasks": ["Pass the marker."], "length": 599}
|
| 4 |
-
{"episode_index": 3, "tasks": ["Pass the marker."], "length": 598}
|
| 5 |
-
{"episode_index": 4, "tasks": ["Pass the marker."], "length": 598}
|
| 6 |
-
{"episode_index": 5, "tasks": ["Pass the marker."], "length": 598}
|
| 7 |
-
{"episode_index": 6, "tasks": ["Pass the marker."], "length": 598}
|
| 8 |
-
{"episode_index": 7, "tasks": ["Pass the marker."], "length": 598}
|
| 9 |
-
{"episode_index": 8, "tasks": ["Pass the marker."], "length": 598}
|
| 10 |
-
{"episode_index": 9, "tasks": ["Pass the marker."], "length": 598}
|
| 11 |
-
{"episode_index": 10, "tasks": ["Pass the marker."], "length": 598}
|
| 12 |
-
{"episode_index": 11, "tasks": ["Pass the marker."], "length": 598}
|
| 13 |
-
{"episode_index": 12, "tasks": ["Pass the marker."], "length": 598}
|
| 14 |
-
{"episode_index": 13, "tasks": ["Pass the marker."], "length": 598}
|
| 15 |
-
{"episode_index": 14, "tasks": ["Pass the marker."], "length": 598}
|
| 16 |
-
{"episode_index": 15, "tasks": ["Pass the marker."], "length": 598}
|
| 17 |
-
{"episode_index": 16, "tasks": ["Pass the marker."], "length": 598}
|
| 18 |
-
{"episode_index": 17, "tasks": ["Pass the marker."], "length": 598}
|
| 19 |
-
{"episode_index": 18, "tasks": ["Pass the marker."], "length": 598}
|
| 20 |
-
{"episode_index": 19, "tasks": ["Pass the marker."], "length": 598}
|
| 21 |
-
{"episode_index": 20, "tasks": ["Pass the marker."], "length": 599}
|
| 22 |
-
{"episode_index": 21, "tasks": ["Pass the marker."], "length": 598}
|
| 23 |
-
{"episode_index": 22, "tasks": ["Pass the marker."], "length": 598}
|
| 24 |
-
{"episode_index": 23, "tasks": ["Pass the marker."], "length": 598}
|
| 25 |
-
{"episode_index": 24, "tasks": ["Pass the marker."], "length": 598}
|
| 26 |
-
{"episode_index": 25, "tasks": ["Pass the marker."], "length": 598}
|
| 27 |
-
{"episode_index": 26, "tasks": ["Pass the marker."], "length": 598}
|
| 28 |
-
{"episode_index": 27, "tasks": ["Pass the marker."], "length": 598}
|
| 29 |
-
{"episode_index": 28, "tasks": ["Pass the marker."], "length": 598}
|
| 30 |
-
{"episode_index": 29, "tasks": ["Pass the marker."], "length": 598}
|
| 31 |
-
{"episode_index": 30, "tasks": ["Pass the marker."], "length": 599}
|
| 32 |
-
{"episode_index": 31, "tasks": ["Pass the marker."], "length": 598}
|
| 33 |
-
{"episode_index": 32, "tasks": ["Pass the marker."], "length": 598}
|
| 34 |
-
{"episode_index": 33, "tasks": ["Pass the marker."], "length": 598}
|
| 35 |
-
{"episode_index": 34, "tasks": ["Pass the marker."], "length": 598}
|
| 36 |
-
{"episode_index": 35, "tasks": ["Pass the marker."], "length": 598}
|
| 37 |
-
{"episode_index": 36, "tasks": ["Pass the marker."], "length": 598}
|
| 38 |
-
{"episode_index": 37, "tasks": ["Pass the marker."], "length": 598}
|
| 39 |
-
{"episode_index": 38, "tasks": ["Pass the marker."], "length": 598}
|
| 40 |
-
{"episode_index": 39, "tasks": ["Pass the marker."], "length": 598}
|
| 41 |
-
{"episode_index": 40, "tasks": ["Pass the marker."], "length": 598}
|
| 42 |
-
{"episode_index": 41, "tasks": ["Pass the marker."], "length": 598}
|
| 43 |
-
{"episode_index": 42, "tasks": ["Pass the marker."], "length": 598}
|
| 44 |
-
{"episode_index": 43, "tasks": ["Pass the marker."], "length": 598}
|
| 45 |
-
{"episode_index": 44, "tasks": ["Pass the marker."], "length": 598}
|
| 46 |
-
{"episode_index": 45, "tasks": ["Pass the marker."], "length": 598}
|
| 47 |
-
{"episode_index": 46, "tasks": ["Pass the marker."], "length": 598}
|
| 48 |
-
{"episode_index": 47, "tasks": ["Pass the marker."], "length": 598}
|
| 49 |
-
{"episode_index": 48, "tasks": ["Pass the marker."], "length": 598}
|
| 50 |
-
{"episode_index": 49, "tasks": ["Pass the marker."], "length": 598}
|
| 51 |
-
{"episode_index": 50, "tasks": ["Pass the marker."], "length": 599}
|
| 52 |
-
{"episode_index": 51, "tasks": ["Pass the marker."], "length": 599}
|
| 53 |
-
{"episode_index": 52, "tasks": ["Pass the marker."], "length": 599}
|
| 54 |
-
{"episode_index": 53, "tasks": ["Pass the marker."], "length": 598}
|
| 55 |
-
{"episode_index": 54, "tasks": ["Pass the marker."], "length": 599}
|
| 56 |
-
{"episode_index": 55, "tasks": ["Pass the marker."], "length": 599}
|
| 57 |
-
{"episode_index": 56, "tasks": ["Pass the marker."], "length": 598}
|
| 58 |
-
{"episode_index": 57, "tasks": ["Pass the marker."], "length": 598}
|
| 59 |
-
{"episode_index": 58, "tasks": ["Pass the marker."], "length": 598}
|
| 60 |
-
{"episode_index": 59, "tasks": ["Pass the marker."], "length": 598}
|
| 61 |
-
{"episode_index": 60, "tasks": ["Pass the marker."], "length": 598}
|
| 62 |
-
{"episode_index": 61, "tasks": ["Pass the marker."], "length": 598}
|
| 63 |
-
{"episode_index": 62, "tasks": ["Pass the marker."], "length": 598}
|
| 64 |
-
{"episode_index": 63, "tasks": ["Pass the marker."], "length": 598}
|
| 65 |
-
{"episode_index": 64, "tasks": ["Pass the marker."], "length": 599}
|
| 66 |
-
{"episode_index": 65, "tasks": ["Pass the marker."], "length": 598}
|
| 67 |
-
{"episode_index": 66, "tasks": ["Pass the marker."], "length": 598}
|
| 68 |
-
{"episode_index": 67, "tasks": ["Pass the marker."], "length": 598}
|
| 69 |
-
{"episode_index": 68, "tasks": ["Pass the marker."], "length": 598}
|
| 70 |
-
{"episode_index": 69, "tasks": ["Pass the marker."], "length": 599}
|
| 71 |
-
{"episode_index": 70, "tasks": ["Pass the marker."], "length": 598}
|
| 72 |
-
{"episode_index": 71, "tasks": ["Pass the marker."], "length": 598}
|
| 73 |
-
{"episode_index": 72, "tasks": ["Pass the marker."], "length": 598}
|
| 74 |
-
{"episode_index": 73, "tasks": ["Pass the marker."], "length": 598}
|
| 75 |
-
{"episode_index": 74, "tasks": ["Pass the marker."], "length": 598}
|
| 76 |
-
{"episode_index": 75, "tasks": ["Pass the marker."], "length": 598}
|
| 77 |
-
{"episode_index": 76, "tasks": ["Pass the marker."], "length": 598}
|
| 78 |
-
{"episode_index": 77, "tasks": ["Pass the marker."], "length": 598}
|
| 79 |
-
{"episode_index": 78, "tasks": ["Pass the marker."], "length": 598}
|
| 80 |
-
{"episode_index": 79, "tasks": ["Pass the marker."], "length": 598}
|
| 81 |
-
{"episode_index": 80, "tasks": ["Pass the marker."], "length": 598}
|
| 82 |
-
{"episode_index": 81, "tasks": ["Pass the marker."], "length": 598}
|
| 83 |
-
{"episode_index": 82, "tasks": ["Pass the marker."], "length": 598}
|
| 84 |
-
{"episode_index": 83, "tasks": ["Pass the marker."], "length": 598}
|
| 85 |
-
{"episode_index": 84, "tasks": ["Pass the marker."], "length": 598}
|
| 86 |
-
{"episode_index": 85, "tasks": ["Pass the marker."], "length": 598}
|
| 87 |
-
{"episode_index": 86, "tasks": ["Pass the marker."], "length": 598}
|
| 88 |
-
{"episode_index": 87, "tasks": ["Pass the marker."], "length": 598}
|
| 89 |
-
{"episode_index": 88, "tasks": ["Pass the marker."], "length": 598}
|
| 90 |
-
{"episode_index": 89, "tasks": ["Pass the marker."], "length": 598}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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": "Pass the marker."}
|
|
|
|
|
|