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 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.

Maandagtest TsFile

This dataset is a TsFile conversion of the Hugging Face dataset Syntax-Terror-BV/maandagtest. The source card says it was created with Physical AI Tools and LeRobot. It is a LeRobot v2.1 robotics dataset for the OMY F3M robot.

Modalities: Time-series. The original dataset also contains video streams, but videos are not included in this TsFile conversion.

Source Dataset

  • Original dataset: Syntax-Terror-BV/maandagtest
  • Source format: LeRobot v2.1
  • License: Apache-2.0
  • Robot type: omy_f3m
  • Task: pak doosje, zet in bak
  • Source scale: 49 episodes, 23,136 frames, 1 task, 30 fps
  • Source video streams: observation.images.cam_wrist at 480 x 848, observation.images.cam_top at 480 x 640, and observation.images.cam_side at 480 x 640
  • Source video count: 147 video files

Converted Files

  • data/maandagtest_train.tsfile
  • Table name: maandagtest_train
  • Split: train, from the source split specification 0:49
  • TsFile size after conversion: 906,147 bytes
  • Converted rows: 23,136
  • Converted schema width: 19 columns total, including 1 Time column, 2 TAG columns, and 16 FIELD columns

The source meta/ directory is mirrored in this repository. meta/info.json has been updated so data_path points to the converted TsFile artifact and tsfile_conversion documents the mapping from the original LeRobot data.

Schema

  • Time: integer milliseconds, computed as round(timestamp * 1000). Time restarts within each episode, matching the source per-episode timeline.
  • TAG columns: episode_index, task_index.
  • FIELD columns: frame_index, sample_index, flattened observation.state[7], and flattened action[7].
  • Source column index is renamed to sample_index.
  • Source column timestamp is dropped after creating Time, because it is redundant with Time / 1000 seconds.

Vector columns are flattened into scalar TsFile fields by preserving the full source column name, replacing . with _, and appending the element index:

observation.state[7] -> observation_state_0 ... observation_state_6
action[7]            -> action_0 ... action_6

Video Policy

Videos are intentionally not uploaded here. The source video features observation.images.cam_wrist, observation.images.cam_top, and observation.images.cam_side remain available in the original dataset under videos/. The TsFile artifact stores the aligned numeric state/action/time/task data.

Validation

Conversion was validated locally with the project pipeline:

.\.venv\Scripts\python.exe scripts\pipeline.py inspect configs\maandagtest.yaml
.\.venv\Scripts\python.exe scripts\pipeline.py convert configs\maandagtest.yaml
.\.venv\Scripts\python.exe scripts\pipeline.py validate configs\maandagtest.yaml
.\.venv\Scripts\python.exe scripts\verify_tsfile.py .\workdir\maandagtest\tsfile\data\maandagtest_train.tsfile --parquet .\workdir\maandagtest\staged\maandagtest_train.parquet

The readback check opened the TsFile successfully and confirmed that the TsFile metadata row count, query row count, and staged Parquet row count all match at 23,136 rows.

Read Example

from tsfile import TsFileReader

path = "data/maandagtest_train.tsfile"
table = "maandagtest_train"

with TsFileReader(path) as reader:
    columns = [
        "episode_index",
        "task_index",
        "frame_index",
        "sample_index",
        "observation_state_0",
        "action_0",
    ]
    with reader.query_table(table, columns, batch_size=4096) as result:
        batch = result.read_arrow_batch()
        print(batch)
Downloads last month
75