Trust Region Q Adjoint Matching
Paper • 2605.27079 • Published • 24
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.
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
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)
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'
)
cube-triple-v0generate_manipspace.py@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},
}
MIT License (same as OGBench)