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.
box_in_bin_test
This dataset is a TsFile conversion of
rtsmc/box_in_bin_test,
a LeRobot SO-101 follower robot dataset.
Source Dataset
- Original dataset:
rtsmc/box_in_bin_test - Original license: apache-2.0
- Robot type: so101_follower
- Modalities: Time-series
- Source sampling rate: 30 fps
- Source scale: 31 episodes, 13,602 frames, 1 task
- Source videos: 31 videos in the original dataset under
videos/
The source task is:
task_index=0: Put the box in the bin
TsFile Conversion
The converted dataset stores the numeric robot time-series data in one TsFile:
data/box_in_bin_test.tsfile
Conversion summary:
- Rows: 13,602
- Episodes: 31
- Time precision: milliseconds
- Table name:
box_in_bin_test - TAG columns:
episode_index,task_index - Time mapping:
Time = round(timestamp * 1000) - Dropped source column:
timestamp, because it is represented byTime / 1000 - Renamed source column:
indextosample_index - Omitted source video feature:
observation.images.front
The meta/ directory is mirrored from the source dataset, with
meta/info.json updated to describe the converted TsFile artifact and the
video policy. Videos are not included in this converted repository; use the
original dataset if frame-aligned videos are needed.
Schema
Time is the TsFile time column in milliseconds. episode_index and
task_index are TAG columns. Remaining columns are FIELD measurements:
frame_indexsample_indexaction_0throughaction_5observation_state_0throughobservation_state_5
The 6 action and observation-state dimensions follow the source joint order:
shoulder_pan.posshoulder_lift.poselbow_flex.poswrist_flex.poswrist_roll.posgripper.pos
Usage
Read the TsFile with Apache TsFile tools or SDKs. Example path:
data/box_in_bin_test.tsfile
To inspect a single episode in SQL-style tools, filter by the TAG:
SELECT *
FROM box_in_bin_test
WHERE episode_index = 0;
- Downloads last month
- 63