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.
Jetson1 060326 TsFile
This dataset is an Apache TsFile conversion of
VibeCuisine/jetson1-060326,
a LeRobot v3.0 robot dataset.
Modalities: Time-series. The converted repository contains numeric robot observations, actions, frame timing, task/episode tags, and source metadata. Camera videos remain in the original Hugging Face dataset.
Source Dataset
- Source dataset:
VibeCuisine/jetson1-060326 - License: Apache-2.0
- Robot type:
vibeboard_follower_tilt - LeRobot codebase version:
v3.0 - Split:
train - Scale: 3 episodes, 939 frames, 1 task, 20 fps
- Source frame layout:
data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet - Source video layout:
videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4 - Task metadata:
grab the cucumber close to one of the cucumber's end
Converted Files
- TsFile:
data/jetson1_060326.tsfile - Table:
jetson1_060326 - Rows: 939
- Episodes: 3
- Time precision: milliseconds
- Metadata:
meta/is mirrored from the source, withmeta/info.jsonupdated to describe the converted TsFile artifact.
Schema
Time is synthesized as round(timestamp * 1000) milliseconds and restarts
within each episode.
TAG columns:
episode_indextask_index
Scalar FIELD columns:
frame_indexsample_index, renamed from the sourceindex
Flattened FLOAT FIELD groups:
action[7]->action_0...action_6observation.state[7]->observation_state_0...observation_state_6
The 7 action and observation-state dimensions follow the source order:
shoulder_pan.posshoulder_lift.poselbow_flex.poswrist_flex.poswrist_roll.posgripper.postilt.pos
Conversion Notes
- The generic
lerobotconverter was used. - All source frame Parquet shards are merged into one TsFile table. Use
episode_indexandtask_indexTAG filters to select an episode or task. - Vector columns are flattened to scalar TsFile fields. Source column prefixes
are preserved, with
.replaced by_. - The source
timestampcolumn is dropped afterTimesynthesis because it is redundant withTime / 1000seconds. - The source
indexcolumn is renamed tosample_index. - Source camera video streams are not included in this repository:
observation.images.top,observation.images.wrist, andobservation.images.base. They remain available in the original dataset undervideos/. - No rows and no numeric time-series fields are intentionally dropped other
than the redundant
timestampcolumn noted above.
Usage
Read the TsFile with Apache TsFile tools or SDKs. Example path:
data/jetson1_060326.tsfile
To inspect a single episode in SQL-style tools, filter by the TAG:
SELECT *
FROM jetson1_060326
WHERE episode_index = 0;
- Downloads last month
- 25