Add dataset card for DADP

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +42 -0
README.md ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - reinforcement-learning
4
+ ---
5
+
6
+ This repository contains the datasets used in the paper [DADP: Domain Adaptive Diffusion Policy](https://huggingface.co/papers/2602.04037).
7
+
8
+ [Project Page](https://outsider86.github.io/DomainAdaptiveDiffusionPolicy/) | [GitHub Repository](https://github.com/QinghangLiu/DADP_official)
9
+
10
+ ### Dataset Description
11
+
12
+ DADP (Domain Adaptive Diffusion Policy) is a framework for learning domain-adaptive policies that can generalize to unseen transition dynamics. The datasets provided include trajectories for various locomotion and manipulation benchmarks:
13
+ - **Locomotion:** Ant, Walker2d, HalfCheetah, Hopper.
14
+ - **Manipulation:** Adroit (Door, Relocate).
15
+
16
+ The manipulation datasets are sourced from the [ODRL (Off-Dynamics RL)](https://github.com/OffDynamicsRL/off-dynamics-rl) project and are noted to be smaller in size and near-random in quality compared to the locomotion environments.
17
+
18
+ ### Usage
19
+
20
+ As per the official repository, these datasets are intended to be used with the [Minari](https://github.com/Farama-Foundation/Minari) framework. Once you have downloaded the datasets, extract and move them into your local Minari datasets directory (typically `~/.minari/datasets/`).
21
+
22
+ The expected directory structure is:
23
+ ```text
24
+ ~/.minari/
25
+ └── datasets/
26
+ ├── RandomAnt/
27
+ ├── RandomWalker2d/
28
+ ├── Adroit/
29
+ └── ...
30
+ ```
31
+
32
+ For detailed instructions on training and evaluation, please refer to the [official GitHub README](https://github.com/QinghangLiu/DADP_official).
33
+
34
+ ### Citation
35
+ ```bibtex
36
+ @article{liu2024dadp,
37
+ title={DADP: Domain Adaptive Diffusion Policy},
38
+ author={Liu, Qinghang and others},
39
+ journal={arXiv preprint arXiv:2602.04037},
40
+ year={2024}
41
+ }
42
+ ```