--- license: apache-2.0 authors: - "Adrien Payan" task_categories: - robotics tags: - tsfile - timeseries - tabular - robotics - lerobot - so100 - manipulation modality: - timeseries - tabular pretty_name: "SO100 Ball8 TsFile" configs: - config_name: default data_files: - split: train path: data/apayan_so100_ball8.tsfile size_categories: - 100K GORILLA + LZ4; INT32/INT64 -> TS_2DIFF + LZ4; Time -> TS_2DIFF + LZ4; BOOLEAN -> RLE + LZ4 (no BOOLEAN source fields). ## Videos Videos are not included here. The source has 312 MP4 files (104 episodes x three 30-fps streams): - [`observation.images.front`](https://huggingface.co/datasets/apayan/so100_ball8/tree/f318cc9490b327bd1382e29c528f7d7348aa4716/videos/chunk-000/observation.images.front) - [`observation.images.top`](https://huggingface.co/datasets/apayan/so100_ball8/tree/f318cc9490b327bd1382e29c528f7d7348aa4716/videos/chunk-000/observation.images.top) - [`observation.images.wrist`](https://huggingface.co/datasets/apayan/so100_ball8/tree/f318cc9490b327bd1382e29c528f7d7348aa4716/videos/chunk-000/observation.images.wrist) Template: `videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4`. Use `episode_index` and `frame_index` to align rows with source video frames; `meta/episodes.jsonl` is mirrored. ## Validation All 104 Parquet schemas matched and the staged table exactly matched the independent transformation. TsFile inspection found one table, 2 TAG columns, 14 FIELD columns, and 110,416 metadata rows; query readback returned 110,416 rows. Reports remain local at `D:/code/workdir/apayan_so100_ball8/validation_report.json` and `D:/code/workdir/apayan_so100_ball8/VALIDATION.md`. ## Minimal read example ```python from tsfile import TsFileReader reader = TsFileReader("data/apayan_so100_ball8.tsfile") columns = ["episode_index", "task_index", "frame_index", "sample_index", "action_0", "observation_state_0"] with reader.query_table("apayan_so100_ball8", columns, batch_size=65536) as result: print(result.read_arrow_batch().to_pandas().head()) reader.close() ``` The source card provides no paper or completed citation; cite the original Hugging Face dataset and Adrien Payan (`apayan`).