Datasets:
The dataset viewer is not available for this subset.
Exception: SplitsNotFoundError
Message: The split names could not be parsed from the dataset config.
Traceback: Traceback (most recent call last):
File "tsfile/tsfile_py_cpp.pyx", line 567, in tsfile.tsfile_py_cpp.tsfile_reader_new_c
tsfile.exceptions.FileOpenError: 28:
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
for split_generator in builder._split_generators(
~~~~~~~~~~~~~~~~~~~~~~~~~^
StreamingDownloadManager(base_path=builder.base_path, download_config=download_config)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/tsfile/tsfile.py", line 271, in _split_generators
scan = self._scan_metadata(all_files)
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/tsfile/tsfile.py", line 318, in _scan_metadata
with self._open_reader(file) as reader:
~~~~~~~~~~~~~~~~~^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/tsfile/tsfile.py", line 742, in _open_reader
return TsFileReader(file)
File "tsfile/tsfile_reader.pyx", line 323, in tsfile.tsfile_reader.TsFileReaderPy.__init__
SystemError: <class '_weakrefset.WeakSet'> returned a result with an exception set
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 71, in compute_split_names_from_streaming_response
for split in get_dataset_split_names(
~~~~~~~~~~~~~~~~~~~~~~~^
path=dataset,
^^^^^^^^^^^^^
config_name=config,
^^^^^^^^^^^^^^^^^^^
token=hf_token,
^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
info = get_dataset_config_info(
path,
...<6 lines>...
**config_kwargs,
)
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
SVLA SO100 Sorting TsFile
This is an Apache TsFile conversion of lerobot/svla_so100_sorting, a LeRobot v3.0 SO100 sorting dataset used with the SmolVLA work.
Source dataset and attribution
- Source: lerobot/svla_so100_sorting
- License: Apache-2.0; robot: SO100; split: train; sampling rate: 30 fps
- Task: Put the red cube in the right box and the blue cube in the left box.
- Repository owner: LeRobot
- Repository contributors recorded in the source history include Dana Aubakirova, Michel Aractingi, Caroline Pascal, and Andito.
- Related paper: SmolVLA: A Vision-Language-Action Model for Affordable and Efficient Robotics.
The current source card does not retain a separate dataset-author list. Its history links the dataset to the SmolVLA paper, whose authors are Mustafa Shukor, Dana Aubakirova, Francesco Capuano, Pepijn Kooijmans, Steven Palma, Adil Zouitine, Michel Aractingi, Caroline Pascal, Martino Russi, Andres Marafioti, Simon Alibert, Matthieu Cord, Thomas Wolf, and Remi Cadene.
Converted scale
The single source Parquet shard is merged into one table-model TsFile. The source meta directory is retained as metadata only; no old data Parquet is placed under meta.
TsFile schema
Time = round(timestamp * 1000) milliseconds and restarts at zero for every episode.
| Role | Columns |
|---|---|
| Time | Time (TIMESTAMP) |
| TAG/device | episode_index, task_index |
| Scalar FIELD | frame_index, sample_index (renamed from index) |
| FLOAT FIELD | action[6] to action_0 through action_5 |
| FLOAT FIELD | observation.state[6] to observation_state_0 through observation_state_5 |
The six vector dimensions are main_shoulder_pan, main_shoulder_lift, main_elbow_flex, main_wrist_flex, main_wrist_roll, and main_gripper. The source timestamp field is dropped after Time synthesis because it equals Time / 1000. No rows, frame indexes, action dimensions, or state dimensions are dropped.
Encoding and compression
- FLOAT and DOUBLE: GORILLA + LZ4
- INT32 and INT64: TS_2DIFF + LZ4
- Time: TS_2DIFF + LZ4
- BOOLEAN: RLE + LZ4 (no BOOLEAN source fields occur)
- TAG: TsFile table/device TAG mechanism
Videos and alignment
Videos are not included in this TsFile dataset. They remain at the pinned source videos directory:
- videos/observation.images.top/chunk-000/file-000.mp4 (524,012,810 bytes)
- videos/observation.images.top/chunk-000/file-001.mp4 (64,082,916 bytes)
- videos/observation.images.wrist/chunk-000/file-000.mp4 (242,711,573 bytes)
The three AV1 MP4 files total 830,807,299 bytes. Both streams are 640 x 480 at 30 fps without audio. episode_index, frame_index, and the preserved meta/episodes/chunk-000/file-000.parquet offsets maintain numeric/video alignment.
Citation
@misc{shukor2025smolvlavisionlanguageactionmodelaffordable,
title={SmolVLA: A Vision-Language-Action Model for Affordable and Efficient Robotics},
author={Mustafa Shukor and Dana Aubakirova and Francesco Capuano and
Pepijn Kooijmans and Steven Palma and Adil Zouitine and
Michel Aractingi and Caroline Pascal and Martino Russi and
Andres Marafioti and Simon Alibert and Matthieu Cord and
Thomas Wolf and Remi Cadene},
year={2025},
eprint={2506.01844},
archivePrefix={arXiv},
primaryClass={cs.LG},
url={https://arxiv.org/abs/2506.01844}
}
Usage
from tsfile import TsFileReader
reader = TsFileReader("data/lerobot_svla_so100_sorting.tsfile")
with reader.query_table(
"lerobot_svla_so100_sorting",
["episode_index", "task_index", "frame_index", "sample_index",
"action_0", "observation_state_0"],
batch_size=65536) as result:
print(result.read_arrow_batch().to_pandas().head())
reader.close()
- Downloads last month
- 32