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.
SO101 Pen Touch Test 2 TsFile
This dataset is an Apache TsFile conversion of
bjb7/so101_pen_touch_test_2, a LeRobot v2.1 SO101 robot-manipulation dataset
containing demonstrations for the task "Touch the pen."
Modalities: Time-series, Tabular. The converted repository contains numeric robot states, actions, frame timing, and episode/task tags. The two camera streams remain in the original Hugging Face dataset and are linked below.
Source Dataset and Provenance
- Original dataset:
bjb7/so101_pen_touch_test_2 - Pinned source revision:
7e8dd963ae6e496b5b6e8d2200cac4a14ed5a9c5 - Original repository creator and uploader: Brian Blankenau (
bjb7) - License: Apache-2.0
- Robot type:
so101 - LeRobot codebase version:
v2.1 - Task:
Touch the pen.(task_index = 0) - Split:
train - Sampling rate: 30 fps
- Scale: 100 episodes, 24,167 frame rows, 1 task, 100 source Parquet files, 200 source videos
- Source frame layout:
data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet - Source video layout:
videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4
The source dataset card provides no paper or completed citation. The Hugging
Face repository history attributes all source commits to bjb7; the associated
profile identifies the account as Brian Blankenau.
Converted Files
- TsFile:
data/so101_pen_touch_test_2_train.tsfile - Table:
so101_pen_touch_test_2_train - Rows: 24,167
- Episodes/devices: 100
- TsFile size: 388,152 bytes (0.37 MiB)
- Time precision: milliseconds
- Metadata:
meta/is mirrored from the source, withmeta/info.jsonrewritten to describe the TsFile artifact and conversion mapping.
TsFile Schema
Time is an INT64 millisecond timestamp computed as
round(timestamp * 1000) and restarts for each episode.
TAG columns (stored as TsFile STRING tags while preserving the original source dtype in conversion metadata):
episode_indextask_index
FIELD columns:
frame_indexsample_indexaction_0action_1action_2action_3action_4action_5observation_state_0observation_state_1observation_state_2observation_state_3observation_state_4observation_state_5
Flattened vector groups:
action->action_0...action_5(6 FLOAT fields)observation.state->observation_state_0...observation_state_5(6 FLOAT fields)
Conversion Notes
- The shared config-driven
lerobotconverter is used; the includedconvert_so101_pen_touch_test_2.pyis the dataset-specific local entry point. - The train split is merged into one table-model TsFile. Filter by
episode_indexandtask_indexto select an episode or task. - Storage profile: Time uses
TS_2DIFF + LZ4; FLOAT/DOUBLE useGORILLA + ZSTD; INT32/INT64 useTS_2DIFF + ZSTD; BOOLEAN usesRLE + ZSTD. Theepisode_indexandtask_indexcolumns remain TsFile table-model TAG/device columns. action[6]andobservation.state[6]are flattened to scalar FLOAT fields; the full source prefix is retained and.is replaced with_.- The source
timestampcolumn is dropped afterTimesynthesis because it is redundant withTime / 1000seconds. - The source
indexcolumn is retained assample_index;frame_indexis retained unchanged. - All 24,167 source rows and all 12 action/state dimensions are retained.
Videos
Videos are not duplicated in this converted repository. The pinned source contains two frame-aligned camera streams, each with 100 per-episode MP4 files:
observation.images.camera_2- 100 per-episode MP4 filesobservation.images.camera_4- 100 per-episode MP4 files
Together the 200 MP4 files occupy 620,609,875 bytes (about 591.86 MiB). The
numeric TsFile rows remain aligned with the original videos through
episode_index, frame_index, and the source per-episode metadata.
Validation
The generated TsFile is checked for successful tool completion, non-zero size,
table schema, metadata row-count equality with the staged Parquet, and a query
readback sample. See VALIDATION.md and validation_report.json.
Minimal Read Example
from tsfile import TsFileReader
reader = TsFileReader("data/so101_pen_touch_test_2_train.tsfile")
table_name = "so101_pen_touch_test_2_train"
columns = [
"episode_index",
"task_index",
"frame_index",
"sample_index",
"action_0",
"observation_state_0",
]
with reader.query_table(table_name, columns, batch_size=65536) as result:
batch = result.read_arrow_batch()
print(batch.to_pandas().head())
reader.close()
Citation
The source dataset card provides no paper or completed citation. Cite the
original Hugging Face dataset and Brian Blankenau (bjb7) when using this
converted artifact.
- Downloads last month
- 20