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 66, 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.
5position
This dataset is a TsFile conversion of
DAbraham/5Position, a
LeRobot SO100 robot dataset. The original dataset was created using
LeRobot.
Source Dataset
- Source dataset:
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:
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_5observation.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.contextobservation.images.armobservation.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.
- Downloads last month
- 43