Dataset Viewer
The dataset viewer is not available for this subset.
Cannot get the split names for the config 'default' of the dataset.
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 68, 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 Block-to-Box TsFile

This dataset provides the numeric robot trajectories from Kunalmod/so101_groot as one Apache TsFile table. The LeRobot v2.1 SO101 demonstrations cover grasping a block and placing it in a box.

Source Dataset

  • Author, repository owner, and uploader: Kunalmod (Kunalmod)
  • License: Apache-2.0
  • Split: train
  • Scale: 50 episodes, 47,507 frame rows, 1 task, and 50 source Parquet shards
  • Sampling frequency: 30 fps
  • Robot type: so101
  • LeRobot codebase version: v2.1
  • Source data layout: data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet
  • Paper and citation: the source card does not provide either one
  • Task 0: Grasp a block and put it in the box.

Data Layout

  • TsFile: data/kunalmod_so101_groot.tsfile
  • Table: kunalmod_so101_groot
  • Rows: 47,507
  • Devices: 50, identified by the two TAG columns
  • Time precision: milliseconds
  • Per-episode Time range: 0 to 39,600 ms

All 50 episode shards are represented in the table. Filter by episode_index and task_index to select an episode trajectory.

Schema

Column TsFile type Role Meaning
Time TIMESTAMP TIME round(timestamp * 1000) in milliseconds
episode_index STRING TAG Source episode index stored by the TsFile device/tag mechanism
task_index STRING TAG Source task index stored by the TsFile device/tag mechanism
frame_index INT64 FIELD Frame position within the episode
sample_index INT64 FIELD Source global index value
action_0 ... action_5 FLOAT FIELD Six SO101 action components
observation_state_0 ... observation_state_5 FLOAT FIELD Six SO101 joint-state components

The action and state component order is main_shoulder_pan, main_shoulder_lift, main_elbow_flex, main_wrist_flex, main_wrist_roll, and main_gripper.

Transform Details

  • Time is derived from the source timestamp and restarts at zero for every episode. The source timestamp is omitted because it equals Time / 1000 seconds.
  • index is renamed to sample_index; frame_index is preserved.
  • action[6] is flattened to action_0 through action_5.
  • observation.state[6] is flattened to observation_state_0 through observation_state_5.
  • Rows are ordered by episode_index, task_index, and Time.
  • No source trajectory row, episode, task, action dimension, or state dimension is removed.

Videos

The 100 source MP4 files remain in the original repository and are not included here. Each camera has 50 files at 640x480 and 30 fps:

Their source pattern is videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4. Use episode_index and frame_index to align each numeric row with both video streams.

Usage

from tsfile import ColumnCategory, TsFileReader

path = "data/kunalmod_so101_groot.tsfile"
reader = TsFileReader(path)
table_name = "kunalmod_so101_groot"
schema = reader.get_all_table_schemas()[table_name]
columns = [
    column.get_column_name()
    for column in schema.get_columns()
    if column.get_category() in (ColumnCategory.TAG, ColumnCategory.FIELD)
]

with reader.query_table(table_name, columns, batch_size=65536) as result:
    batch = result.read_arrow_batch()
    print(batch.to_pandas().head())
reader.close()

Attribution

The demonstrations were published by Kunalmod under the Apache-2.0 license and were created with LeRobot. Cite the original Hugging Face dataset URL above when using the data.

Downloads last month
22