Add model card for DADP
#1
by nielsr HF Staff - opened
README.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pipeline_tag: reinforcement-learning
|
| 3 |
+
tags:
|
| 4 |
+
- robotics
|
| 5 |
+
- control
|
| 6 |
+
- diffusion-policy
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
# DADP: Domain Adaptive Diffusion Policy
|
| 10 |
+
|
| 11 |
+
[DADP](https://huggingface.co/papers/2602.04037) is a framework for learning domain-adaptive policies that can generalize to unseen transition dynamics in learning-based control. It achieves robust adaptation through unsupervised disentanglement and domain-aware diffusion injection.
|
| 12 |
+
|
| 13 |
+
- **Paper:** [DADP: Domain Adaptive Diffusion Policy](https://huggingface.co/papers/2602.04037)
|
| 14 |
+
- **Project Page:** [https://outsider86.github.io/DomainAdaptiveDiffusionPolicy/](https://outsider86.github.io/DomainAdaptiveDiffusionPolicy/)
|
| 15 |
+
- **Repository:** [https://github.com/QinghangLiu/DADP_official](https://github.com/QinghangLiu/DADP_official)
|
| 16 |
+
|
| 17 |
+
## Overview
|
| 18 |
+
|
| 19 |
+
DADP introduces two key innovations to tackle the challenge of zero-shot adaptation:
|
| 20 |
+
1. **Lagged Context Dynamical Prediction**: A strategy that conditions future state estimation on a historical offset context to unsupervisedly disentangle static domain representations by filtering out transient properties.
|
| 21 |
+
2. **Domain-Aware Diffusion Injection**: Integration of the learned domain representations directly into the generative process by biasing the prior distribution and reformulating the diffusion target.
|
| 22 |
+
|
| 23 |
+
The framework has been evaluated on challenging benchmarks across locomotion (Ant, Walker2d, HalfCheetah, Hopper) and manipulation (Door, Relocate).
|
| 24 |
+
|
| 25 |
+
## Usage
|
| 26 |
+
|
| 27 |
+
For detailed instructions on environment setup, downloading datasets, and running training or evaluation scripts, please refer to the [official GitHub repository](https://github.com/QinghangLiu/DADP_official).
|
| 28 |
+
|
| 29 |
+
### Supported Environments
|
| 30 |
+
The training and extraction scripts support the following `env_key` variables:
|
| 31 |
+
- `ant`
|
| 32 |
+
- `halfcheetah`
|
| 33 |
+
- `walker`
|
| 34 |
+
- `hopper`
|
| 35 |
+
- `door`
|
| 36 |
+
- `relocate`
|
| 37 |
+
|
| 38 |
+
## Citation
|
| 39 |
+
|
| 40 |
+
If you find this work useful, please consider citing:
|
| 41 |
+
|
| 42 |
+
```bibtex
|
| 43 |
+
@article{liu2025dadp,
|
| 44 |
+
title={DADP: Domain Adaptive Diffusion Policy},
|
| 45 |
+
author={Liu, Qinghang and others},
|
| 46 |
+
journal={arXiv preprint arXiv:2602.04037},
|
| 47 |
+
year={2025}
|
| 48 |
+
}
|
| 49 |
+
```
|