Datasets:

File size: 2,843 Bytes
e10d192
 
 
 
 
 
 
 
 
 
 
 
05f4cf0
e10d192
 
 
 
 
 
 
 
 
 
1dc5db8
f7e78b2
05f4cf0
e10d192
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
---
license: apache-2.0
task_categories:
- robotics
tags:
- LeRobot
- so100
- tutorial
- robot
- imitation-learning
- tsfile
- format:tsfile
- timeseries
configs:
- config_name: default
  data_files:
  - split: train
    path: data/5position.tsfile
size_categories:
- 10K<n<100K
---





# 5position

This dataset is a TsFile conversion of
[`DAbraham/5Position`](https://huggingface.co/datasets/DAbraham/5Position), a
LeRobot SO100 robot dataset. The original dataset was created using
[LeRobot](https://github.com/huggingface/lerobot).

## Source Dataset

- Source dataset: [`DAbraham/5Position`](https://huggingface.co/datasets/DAbraham/5Position)
- License: apache-2.0
- Robot type: SO100
- Episodes: 50
- Frames: 43,346
- Tasks: 1
- Sampling rate: 30 fps
- Original data path: `data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet`
- Original video path: `videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4`

## TsFile Conversion

The numeric frame data was converted to one TsFile:

```text
data/5position.tsfile
```

All episodes are stored in the same TsFile table, with the original source
columns `episode_index` and `task_index` declared as TAG columns. To query one
episode, filter by `episode_index`.

`Time` is generated as `round(timestamp * 1000)` in milliseconds and restarts per
episode. The source `timestamp` column is dropped because it is represented by
`Time / 1000` seconds. The source `frame_index` column is kept.

The source `index` column is renamed to `sample_index`.

Vector columns are flattened while preserving the source column name:

- `action` -> `action_0` ... `action_5`
- `observation.state` -> `observation_state_0` ... `observation_state_5`

Flattened vector values are stored as single-precision FLOAT fields.

## Schema

Roles in the converted TsFile:

- TIME: `Time`
- TAG: `episode_index`, `task_index`
- FIELD: `frame_index`, `sample_index`, `action_0` ... `action_5`,
  `observation_state_0` ... `observation_state_5`

The converted dataset contains 43,346 rows and 17 columns.

## Video Policy

The original dataset contains three video streams:

- `observation.images.context`
- `observation.images.arm`
- `observation.images.base`

Videos are not included in this converted repository. They remain available in
the original Hugging Face dataset:

https://huggingface.co/datasets/DAbraham/5Position/tree/main/videos

## Metadata

The original `meta/` files are mirrored in this repository. `meta/info.json` is
updated so `data_path` points to `data/5position.tsfile`, and it includes a
`tsfile_conversion` object documenting the source dataset, converted data path,
time mapping, TAG columns, flattened fields, dropped fields, omitted video
features, and video alignment policy.

## Citation

The original dataset card does not provide a BibTeX citation.