Datasets:
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.
SO100 Office (TsFile)
This dataset contains the numeric time-series data from
vladfatu/so100_office,
converted from the LeRobot v2.0 layout to one Apache TsFile. The source was
recorded with an SO-100 robot performing one task: "Grab red object and place it
in the box."
- Modalities: Time-series (this repository); video (original repository only)
- Split: train
- Scale: 50 episodes, 29,880 frames/rows, 1 task
- Sampling rate: 30 FPS
- Converted files: 1 TsFile from 50 source episode Parquet files
- License: Apache-2.0
Data File
The complete numeric dataset is stored at
data/so100_office.tsfile. It contains the table
so100_office. Each source frame corresponds to one row, and episodes are
represented as separate TAG combinations inside the same TsFile.
TsFile Schema
| Column | TsFile role | Type | Description |
|---|---|---|---|
Time |
TIME | INT64 timestamp (ms) | round(timestamp * 1000); starts from the source timestamp within each episode |
episode_index |
TAG | STRING (source INT64) | Source episode index, 0 through 49 |
task_index |
TAG | STRING (source INT64) | Source task index; 0 for this dataset |
frame_index |
FIELD | INT64 | Frame index within the episode |
sample_index |
FIELD | INT64 | Source global sample index |
action_0 ... action_5 |
FIELD | FLOAT | Six-dimensional robot action vector |
observation_state_0 ... observation_state_5 |
FIELD | FLOAT | Six-dimensional robot state vector |
For both six-dimensional vectors, indices 0 through 5 preserve the source
feature order: main_shoulder_pan, main_shoulder_lift, main_elbow_flex,
main_wrist_flex, main_wrist_roll, and main_gripper.
Conversion Notes
- Source
timestampis represented by the TsFileTimecolumn in milliseconds and is therefore not duplicated as a FIELD. - Source
indexis renamed tosample_indexto avoid ambiguity. actionis flattened toaction_0throughaction_5as single-precision FLOAT fields.observation.stateis flattened toobservation_state_0throughobservation_state_5as single-precision FLOAT fields.episode_indexandtask_indexare TAG columns, so an episode can be selected without creating a separate TsFile for every episode.- The conversion metadata and original frame/video alignment information are in
meta/info.json.
Videos
The source contains 100 AV1 videos: one observation.images.laptop stream and
one observation.images.phone stream for each episode. Both streams are
480 x 640 at 30 FPS and have no audio. Videos are intentionally not copied into
this repository. They remain available in the
videos/ tree of the original dataset.
The preserved episode, frame, task, and sample indices allow converted rows to
be aligned with the original frames.
Reading the TsFile
Install the Apache TsFile Python SDK, then open the actual uploaded path and query the table:
from tsfile import TsFileReader
reader = TsFileReader("data/so100_office.tsfile")
columns = [
"episode_index",
"task_index",
"frame_index",
"sample_index",
"action_0",
"observation_state_0",
]
with reader.query_table("so100_office", columns, batch_size=65536) as result:
first_batch = result.read_arrow_batch()
print(first_batch)
Source and Attribution
The original dataset was created using
LeRobot. Dataset context, source
videos, and the original Parquet representation are available at
vladfatu/so100_office.
No paper or citation was provided in the source dataset card.
- Downloads last month
- 84