Datasets:
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.
koch_test
This repository contains a TsFile conversion of the original Hugging Face
dataset MoofireX/koch_test.
Source Dataset
The source repository contains one Parquet split and LeRobot metadata files:
data/train-00000-of-00001.parquet
meta_data/episode_data_index.safetensors
meta_data/info.json
meta_data/stats.safetensors
The converted repository keeps the same top-level structure:
data/train.tsfile
meta_data/episode_data_index.safetensors
meta_data/info.json
meta_data/stats.safetensors
Source Schema
The source Parquet split has 2,755 rows and 7 columns:
| Column | Source type | Conversion |
|---|---|---|
observation.state |
fixed-size list float[6] | flattened to state_0 ... state_5 |
action |
fixed-size list float[6] | flattened to action_0 ... action_5 |
episode_index |
int64 | FIELD |
frame_index |
int64 | FIELD |
timestamp |
float | renamed to episode_timestamp_s FIELD |
next.done |
bool | renamed to next_done FIELD |
index |
int64 | renamed to sample_index FIELD |
Conversion Notes
- Source format converted to TsFile: lowercase
data/train-00000-of-00001.parquet. - Converted format: TsFile table model.
- Output file:
data/train.tsfile. - Table name:
koch_test. - TAG column:
episode_id, synthesized fromepisode_index. - Time column: synthesized from
frame_index * 100 ms. - The original
timestampvalue is preserved asepisode_timestamp_s. observation.stateandactionare not dropped semantically; each 6-element vector is expanded to scalar fields because TsFile import requires scalar columns.- Row count is preserved: 2,755 source rows -> 2,755 TsFile rows.
Metadata
The source meta_data/info.json reports:
{
"codebase_version": "v1.6",
"fps": 30,
"video": true,
"encoding": {
"vcodec": "libsvtav1",
"pix_fmt": "yuv420p",
"g": 2,
"crf": 30
}
}
The meta_data/ files are mirrored unchanged from the source repository for
traceability. The TsFile conversion only uses the Parquet split.
Citation
Please cite the original dataset:
@dataset{koch_test,
author = {MoofireX},
title = {koch_test},
publisher = {Hugging Face},
url = {https://huggingface.co/datasets/MoofireX/koch_test}
}
- Downloads last month
- 77