Dataset Viewer
Duplicate
The dataset viewer is not available for this split.
The info cannot be fetched for the config 'default' of the dataset.
Error code:   InfoError
Exception:    SplitsNotFoundError
Message:      The split names could not be parsed from the dataset config.
Traceback:    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/webdataset/webdataset.py", line 81, in _split_generators
                  first_examples = list(islice(pipeline, self.NUM_EXAMPLES_FOR_FEATURES_INFERENCE))
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/webdataset/webdataset.py", line 32, in _get_pipeline_from_tar
                  fs: fsspec.AbstractFileSystem = fsspec.filesystem("memory")
                                                  ~~~~~~~~~~~~~~~~~^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/fsspec/registry.py", line 302, in filesystem
                  cls = get_filesystem_class(protocol)
                File "/usr/local/lib/python3.14/site-packages/fsspec/registry.py", line 239, in get_filesystem_class
                  raise ValueError(f"Protocol not known: {protocol}")
              ValueError: Protocol not known: memory
              
              The above exception was the direct cause of the following exception:
              
              Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/split/first_rows.py", line 227, in compute_first_rows_from_streaming_response
                  info = get_dataset_config_info(path=dataset, config_name=config, token=hf_token)
                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.

RTR Robot Sys — Zarr Training Datasets

Training datasets for the paper "Learning High-Frequency Continuous Action Chunks in Latent Space", used to train the latent-space high-frequency policies and the Reuse-then-Refine (RTR) chunk-refinement strategy on three real-world contact-rich tasks.

The training-side documentation, including the full unpacking + training pipeline, lives in the code repo at docs/best_practice/train/download_data.md. End users should follow that guide — this card is just a short overview of the released files.

If you want to train a LeRobot-style policy (e.g. pi0.5) on this data, we also ship a script that converts these zarr archives into the LeRobot dataset format. See docs/best_practice/train/lerobot.md in the code repo for instructions.

Contents

Each task is shipped as a single .tar archive that contains two top-level entries:

<task>.tar
├── rdp_zarr/
│   └── replay_buffer.zarr/      # zarr group with episode data
└── rdp_pca/
    ├── pca_matrix1.npy
    ├── pca_matrix2.npy
    ├── pca_mean1.npy
    └── pca_mean2.npy

We use uncompressed .tar because the zarr replay buffers are already compressed at the chunk level — additional gzip / zstd adds cost with negligible savings. One large file per task is also the most LFS-friendly upload pattern on the Hub and downloads cleanly resume.

File Frequency rdp_zarr size rdp_pca size
peel_cucumber_15hz.tar 15 Hz 3.7 GB < 1 MB
peel_cucumber_60hz.tar 60 Hz 15 GB < 1 MB
wipe_vase_15hz.tar 15 Hz 2.6 GB < 1 MB
wipe_vase_60hz.tar 60 Hz 9.7 GB < 1 MB
write_board_15hz.tar 15 Hz 3.2 GB < 1 MB
write_board_60hz.tar 60 Hz 12 GB < 1 MB
Total ~46 GB ~2 MB

Quick start

1. Download

Download every .tar from the repo into a local directory:

pip install -U "huggingface_hub[cli]"

huggingface-cli download sadpiggy/rtr_robot_sys_zarr \
    --repo-type dataset \
    --local-dir data/zarr_dataset \
    --local-dir-use-symlinks False

To grab just one task:

huggingface-cli download sadpiggy/rtr_robot_sys_zarr \
    --repo-type dataset \
    --include "peel_cucumber_60hz.tar" \
    --local-dir data/zarr_dataset \
    --local-dir-use-symlinks False

Python alternative:

from huggingface_hub import snapshot_download

snapshot_download(
    repo_id="sadpiggy/rtr_robot_sys_zarr",
    repo_type="dataset",
    local_dir="data/zarr_dataset",
    local_dir_use_symlinks=False,
    allow_patterns=["*.tar"],
)

2. Unpack into the layout expected by training

The training scripts in the code repo read from data/ckpts/<task>/, so each .tar should be extracted into the matching task directory:

mkdir -p data/ckpts
for tar in data/zarr_dataset/*.tar; do
    task=$(basename "$tar" .tar)
    mkdir -p "data/ckpts/$task"
    tar -xf "$tar" -C "data/ckpts/$task"
done

After extraction data/ckpts/<task>/ will contain rdp_zarr/ and rdp_pca/ ready to train.

3. Sanity check

import zarr
from pathlib import Path

for task in sorted(Path("data/ckpts").iterdir()):
    zarr_root = task / "rdp_zarr" / "replay_buffer.zarr"
    if not zarr_root.exists():
        continue
    root = zarr.open(str(zarr_root), mode="r")
    n_episodes = root["meta/episode_ends"].shape[0]
    n_steps = int(root["meta/episode_ends"][-1]) if n_episodes else 0
    print(f"{task.name:24s}  episodes={n_episodes:4d}  steps={n_steps}")

License

Released under the MIT License, matching the code repository.

Citation

If you use this dataset, please cite:

@article{wang2026learning,
  title={Learning High-Frequency Continuous Action Chunks in Latent Space},
  author={Wang, Kunyun and Zheng, Yuhang and Zheng, Yupeng and Zhao, Jieru and Ding, Wenchao},
  journal={arXiv preprint arXiv:2605.24931},
  year={2026}
}
Downloads last month
35

Paper for sadpiggy/rtr_robot_sys_zarr