nielsr HF Staff commited on
Commit
9fb7387
·
verified ·
1 Parent(s): 8fade16

Add dataset description, task categories, and paper/project links

Browse files

Hi! I'm Niels from the community science team at Hugging Face.

This PR improves the dataset card for the ZPRL dataset. It adds:
- The `robotics` task category.
- Links to the [paper](https://huggingface.co/papers/2605.19919), [Github repository](https://github.com/manutdmoon/ZPRL), and [project page](https://manutdmoon.github.io/ZPRL/).
- Information about the data structure and contents, specifically regarding the processed Robomimic tasks with absolute actions used for training.
- Appropriate tags for discoverability.

Files changed (1) hide show
  1. README.md +54 -3
README.md CHANGED
@@ -1,3 +1,54 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - reinforcement-learning
7
+ - imitation-learning
8
+ - robot-manipulation
9
+ ---
10
+
11
+ # Beyond Action Residuals: Real-World Robot Policy Steering via Bottleneck Latent Reinforcement Learning (ZPRL)
12
+
13
+ [**Project Page**](https://manutdmoon.github.io/ZPRL/) | [**Paper**](https://huggingface.co/papers/2605.19919) | [**GitHub**](https://github.com/manutdmoon/ZPRL)
14
+
15
+ This repository contains the datasets used in the paper "Beyond Action Residuals: Real-World Robot Policy Steering via Bottleneck Latent Reinforcement Learning".
16
+
17
+ ## Dataset Description
18
+
19
+ These datasets are prepared for training and evaluating robot manipulation policies using the ZPRL framework. They are based on the [Robomimic Multi-Human (MH) dataset](https://robomimic.github.io/docs/v0.3/datasets/overview.html) and include the following tasks:
20
+ - **Can**
21
+ - **Square**
22
+ - **Transport**
23
+
24
+ Each dataset consists of 100 trajectories randomly sampled from the original MH dataset. The data has been processed to include:
25
+ 1. **Image Observations**: Rendered image observations at the resolution required for training.
26
+ 2. **Absolute Actions**: Delta actions from the original datasets have been converted into absolute actions to facilitate training with flow-matching policies.
27
+
28
+ ### File Structure
29
+ The datasets are provided in `.hdf5` format. The directory structure is organized as follows:
30
+ ```bash
31
+ robomimicv030
32
+ ├── can
33
+ │   └── mh
34
+ │   └── image_v141_subset_abs.hdf5
35
+ ├── square
36
+ │   └── mh
37
+ │   └── image_v141_subset_abs.hdf5
38
+ └── transport
39
+ └── mh
40
+ └── image_v141_subset_abs.hdf5
41
+ ```
42
+
43
+ ## Citation
44
+ If you find this dataset or the associated code useful, please consider citing the following paper:
45
+ ```bibtex
46
+ @misc{yu2026zprl,
47
+ title={Beyond Action Residuals: Real-World Robot Policy Steering via Bottleneck Latent Reinforcement Learning},
48
+ author={Dongjie Yu and Kun Lei and Zhennan Jiang and Jia Pan and Huazhe Xu},
49
+ year={2026},
50
+ eprint={2605.19919},
51
+ archivePrefix={arXiv},
52
+ url={https://arxiv.org/abs/2605.19919},
53
+ }
54
+ ```