Dataset Viewer

The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.

Cube-Triple-Play 10M Dataset

This dataset contains 10M transitions for the cube-triple-play task from OGBench. It was used for the experiments in the paper Trust Region Q Adjoint Matching.

Project Page | Code | Paper

Dataset Structure

  • 10 files of ~1M transitions each (split for easier loading)
  • Each file includes:
    • Training set: 1,000 episodes × 1,001 steps
    • Validation set: 100 episodes × 1,001 steps
  • Observation dim: 46, Action dim: 5

Files

cube-triple-play-v0-000.npz / -000-val.npz (seed=0)
cube-triple-play-v0-001.npz / -001-val.npz (seed=1)
...
cube-triple-play-v0-009.npz / -009-val.npz (seed=9)

Usage

You can download and load the dataset using the huggingface_hub library:

import numpy as np
from huggingface_hub import hf_hub_download

# Download a specific file
file_path = hf_hub_download(
    repo_id="yonghoon96/cube-triple-play-10m-v0",
    filename="cube-triple-play-v0-000.npz",
    repo_type="dataset"
)

# Load dataset
data = np.load(file_path)
print(data.files)  # ['observations', 'actions', 'terminals', 'qpos', 'qvel']

Alternatively, to download the entire dataset:

from huggingface_hub import snapshot_download

repo_path = snapshot_download(
    repo_id='yonghoon96/cube-triple-play-10m-v0',
    repo_type='dataset'
)

Generation Details

  • Environment: cube-triple-v0
  • Dataset Type: play
  • Generation Script: OGBench generate_manipspace.py

Citation

@article{dong2026trqam,
    title   = {Trust Region Q Adjoint Matching},
    author  = {Dong, Yonghoon and Lee, Kyungmin and Kim, Changyeon and Kim, Jaehyuk and Shin, Jinwoo},
    journal = {arXiv preprint arXiv:2605.27079},
    year    = {2026}
}

@inproceedings{ogbench_park2025,
  title={OGBench: Benchmarking Offline Goal-Conditioned RL},
  author={Park, Seohong and Frans, Kevin and Eysenbach, Benjamin and Levine, Sergey},
  booktitle={International Conference on Learning Representations (ICLR)},
  year={2025},
}

License

MIT License (same as OGBench)

Downloads last month
55

Paper for yonghoon96/cube-triple-play-10m-v0