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.
Pick TBlock MP PDScale 10 TsFile
This dataset is a TsFile conversion of
younghyopark/pick_tblock_mp_pdscale_10,
a LeRobot v2.1 dataset created with the DualPanda robot setup.
Modalities: Time-series.
Source Dataset
- Original dataset:
younghyopark/pick_tblock_mp_pdscale_10 - Created with: LeRobot
- License:
apache-2.0 - Codebase version:
v2.1 - Robot type:
DualPanda - Source task:
pick something up(the sourcetasks.jsonlstring contains one trailing space) - Source split: train
0:1000 - Source scale: 1000 episodes, 173,000 frames, 1 task, 1 data chunk, 50 fps
- Source videos: 0 videos; source
video_pathisnull
Converted Data
- TsFile path:
data/pick_tblock_mp_pdscale_10.tsfile - Table name:
pick_tblock_mp_pdscale_10 - Rows: 173,000
- Episodes: 1000
- Time precision: milliseconds
- Layout: all train episodes are stored in one TsFile, using TsFile table TAG columns for episode and task identity
Schema
Time is computed as round(timestamp * 1000) in milliseconds and restarts per episode.
The source timestamp column is not retained as a FIELD because it is represented by
Time / 1000 seconds.
TAG columns:
episode_indextask_index
Scalar FIELD columns:
frame_indexsample_indexconverted from the sourceindexcolumn
Flattened vector FIELD groups:
observation.joint->observation_joint_0throughobservation_joint_15observation.state->observation_state_0throughobservation_state_29observation.environment_state->observation_environment_state_0throughobservation_environment_state_6observation.qvel->observation_qvel_0throughobservation_qvel_29observation.env_qvel->observation_env_qvel_0throughobservation_env_qvel_5observation.ee_pose->observation_ee_pose_0throughobservation_ee_pose_15action.ctrl->action_ctrl_0throughaction_ctrl_15action.joint->action_joint_0throughaction_joint_15action.ee_pose->action_ee_pose_0throughaction_ee_pose_15
All flattened vector values are stored as scalar FLOAT fields. The flattening
preserves the source column name prefix, replaces . with _, and appends the
element index.
Conversion Notes
- Source
timestampwas used to createTimeand was dropped as a redundant field. - Source
indexwas renamed tosample_index. - Source columns
episode_indexandtask_indexare TAG columns, not regular fields. - Source metadata is mirrored under
meta/, withmeta/info.jsonupdated to describe the TsFile artifact. - No videos are uploaded here because the source metadata reports
total_videos: 0andvideo_path: null.
Read Example
The converted file is data/pick_tblock_mp_pdscale_10.tsfile. After loading it
with Apache TsFile or IoTDB tooling, query one episode by TAG:
SELECT frame_index, observation_state_0, action_ctrl_0
FROM pick_tblock_mp_pdscale_10
WHERE episode_index = 0 AND task_index = 0
ORDER BY Time;
- Downloads last month
- -