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.
Coffee Capsule Pickup — Trossen AI Bimanual (TsFile)
Apache TsFile version of allday-technology/coffeeCapsulePickup_LA_CLRHW_fryerTable_2.
Overview
A LeRobot (v2.1) teleoperation dataset recorded on a Trossen AI stationary bimanual robot performing the task "pick up a coffee capsule with the left arm." Each episode is a continuous trajectory of synchronized 14-DOF joint states and commanded actions (two 7-DOF arms) sampled at 30 Hz.
- Robot: Trossen AI stationary bimanual (
robot_type = trossen_ai_stationary, 14 degrees of freedom). - Episodes: 39 trajectories (see the exclusion note below).
- Frames: 22,142 time steps.
- Tasks: 1 — "pick up a coffee capsule with the left arm".
- Sampling rate: 30 fps.
Schema (TsFile structure)
- Time (INT64, milliseconds) — per-frame timestamp, restarting at 0 for each
episode (
round(timestamp * 1000)). - episode_index (TAG) — trajectory id (original source indices; the excluded
episodes' indices are absent). Query one episode with
WHERE episode_index=0. - task_index (TAG) — task id (always 0 here; the single task).
- frame_index (FIELD, INT64) — frame counter within the episode.
- sample_index (FIELD, INT64) — the source global
index. - action_0 .. action_13 (FIELD, FLOAT) — commanded 14-DOF joint positions (left arm + right arm).
- observation_state_0 .. observation_state_13 (FIELD, FLOAT) — measured 14-DOF joint positions.
The source vector columns action[14] and observation.state[14] are flattened to
single-precision FLOAT columns. The source timestamp column is dropped because it
equals Time / 1000 seconds.
Excluded episodes
The source dataset ships meta/ignore_episodes.json marking 9 episodes as bad:
[1, 4, 29, 34, 35, 36, 37, 44, 45]. Following the authors' intent, these 9
episodes are excluded from this TsFile — 39 of the original 48 episodes are
included. Because episode_index keeps its original value, those 9 indices simply
do not appear.
Usage
Read the .tsfile files with the Apache TsFile Java or Python SDK.
Source & license
- Original dataset: https://huggingface.co/datasets/allday-technology/coffeeCapsulePickup_LA_CLRHW_fryerTable_2
- Author / publisher: allday-technology
- Created with LeRobot (v2.1 layout)
- License: apache-2.0
- Camera videos (
observation.images.cam_high,cam_low,cam_left_wrist,cam_right_wrist) are not included in this repository. They remain in the original dataset undervideos/: https://huggingface.co/datasets/allday-technology/coffeeCapsulePickup_LA_CLRHW_fryerTable_2/tree/main/videos
- Downloads last month
- 67