File size: 2,275 Bytes
983da52
 
 
 
 
 
9c979c6
 
286200f
 
 
 
983da52
 
 
 
6ea1dc7
bca3b27
6ea1dc7
983da52
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4460b58
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
license: cc-by-4.0
language:
- en
tags:
- art
- text-to-image
- stable-diffusion-diffusers
- unlearned-diffusion-model
- safe-diffusion-model
- unlearned-text-encoder
- defensive-unlearning
---


# Defensive Unlearning with Adversarial Training for Robust Concept Erasure in Diffusion Models
Paper can be checked in [Arxiv Preprint](https://arxiv.org/abs/2405.15234). <br>
Code can be checked in [GitHub](https://github.com/OPTML-Group/AdvUnlearn). <br>

Our proposed robust unlearning framework, AdvUnlearn, enhances diffusion models' safety by robustly erasing unwanted concepts through adversarial training, achieving an optimal balance between concept erasure and image generation quality. 



<div align="center">
    <img src="https://cdn-uploads.huggingface.co/production/uploads/63e44e62789dcaae43c865d9/vad9l9ME0KD0OJKYLcFun.png" />
</div>


## Baselines

| DM Unlearning Methods | Nudity  | Van Gogh  | Objects |
|:-------|:----:|:-------:| :-------:|
| [ESD](https://github.com/rohitgandikota/erasing) (Erased Stable Diffusion)  | βœ…  | βœ…   | βœ… 
| [FMN](https://github.com/SHI-Labs/Forget-Me-Not) (Forget-Me-Not)  | βœ… | βœ…   | βœ… 
| [AC](https://github.com/nupurkmr9/concept-ablation) (Ablating Concepts)  | ❌ | βœ…   | ❌ 
| [UCE](https://github.com/rohitgandikota/unified-concept-editing) (Unified Concept Editing)  | βœ…  |  βœ…  |  ❌
| [SalUn](https://github.com/OPTML-Group/Unlearn-Saliency) (Saliency Unlearning)  | βœ…  | ❌ |  βœ… 
| [SH](https://github.com/JingWu321/Scissorhands_ex) (ScissorHands)  | βœ…  | ❌  | βœ… 
| [ED](https://github.com/JingWu321/EraseDiff) (EraseDiff)  | βœ…  | ❌  | βœ… 
| [SPM](https://github.com/Con6924/SPM) (concept-SemiPermeable Membrane)   | βœ…  | βœ…   | βœ… 
| **AdvUnlearn (Ours)**  | βœ…  | βœ…   |  βœ… 


<br>


## Cite Our Work
The preprint can be cited as follows:
```
@misc{zhang2024defensive,
      title={Defensive Unlearning with Adversarial Training for Robust Concept Erasure in Diffusion Models}, 
      author={Yimeng Zhang and Xin Chen and Jinghan Jia and Yihua Zhang and Chongyu Fan and Jiancheng Liu and Mingyi Hong and Ke Ding and Sijia Liu},
      year={2024},
      eprint={2405.15234},
      archivePrefix={arXiv},
      primaryClass={cs.CV}
}
```

---
license: cc-by-4.0
---