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.

eval1_fixed_all_v2

This dataset is converted from robot-learning-group47/eval1_fixed_all_v2 to Apache TsFile format.

Modalities: Time-series. The original dataset also contains a front-camera video stream, which remains in the source Hugging Face dataset and is not included in this converted repository.

Source Dataset

  • Original dataset: robot-learning-group47/eval1_fixed_all_v2
  • Format: LeRobot v3.0
  • Robot type: so_follower
  • License: apache-2.0
  • Scale: 61 episodes, 10,980 frames, 3 tasks, 15 fps
  • Original data path: data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet
  • Original video path: videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4

Converted Files

  • TsFile data: data/eval1_fixed_all_v2.tsfile
  • Mirrored metadata: meta/
  • Rows in TsFile: 10,980
  • Time precision: milliseconds

Schema

Time is synthesized as round(timestamp * 1000) and restarts per episode.

TAG columns:

  • episode_index
  • task_index

FIELD columns:

  • frame_index
  • sample_index renamed from source index
  • action_0 through action_5, flattened from action[6]
  • observation_state_0 through observation_state_5, flattened from observation.state[6]

Flattened vector values are stored as single-precision FLOAT fields.

Conversion Notes

  • The source timestamp column is not retained as a separate field because it is redundant with Time / 1000 seconds.
  • The source front-camera video stream observation.images.front is not uploaded here. Use the original dataset for videos: https://huggingface.co/datasets/robot-learning-group47/eval1_fixed_all_v2/tree/main/videos
  • meta/info.json is mirrored from the source and updated to describe the converted TsFile schema, original video path, row count, TAG columns, flattened features, and video policy.
  • Aside from the redundant timestamp field and omitted video stream, no rows or numeric time-series fields are intentionally dropped.

Read Example

# Read data/eval1_fixed_all_v2.tsfile with the Apache TsFile Java/Python SDK.
# Query one episode with a predicate such as:
# WHERE episode_index = 0
Downloads last month
100