jiuntian commited on
Commit
dc05361
1 Parent(s): e10badd

update readme

Browse files
Files changed (1) hide show
  1. README.md +24 -1
README.md CHANGED
@@ -4,6 +4,14 @@ license: bsd
4
 
5
  # InteractDiffusion Diffuser Implementation
6
 
 
 
 
 
 
 
 
 
7
  ## How to Use
8
 
9
  ```python
@@ -32,4 +40,19 @@ images = pipeline(
32
  images[0].save('out.jpg')
33
  ```
34
 
35
- For more information, please check the project homepage:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
 
5
  # InteractDiffusion Diffuser Implementation
6
 
7
+ [Project Page](https://jiuntian.github.io/interactdiffusion) |
8
+ [Paper](https://arxiv.org/abs/2312.05849) |
9
+ [WebUI](https://github.com/jiuntian/sd-webui-interactdiffusion) |
10
+ [Demo](https://huggingface.co/spaces/interactdiffusion/interactdiffusion) |
11
+ [Video](https://www.youtube.com/watch?v=Uunzufq8m6Y) |
12
+ [Diffuser](https://huggingface.co/interactdiffusion/diffusers-v1-2) |
13
+ [Colab](https://colab.research.google.com/drive/1Bh9PjfTylxI2rbME5mQJtFqNTGvaghJq?usp=sharing)
14
+
15
  ## How to Use
16
 
17
  ```python
 
40
  images[0].save('out.jpg')
41
  ```
42
 
43
+ For more information, please check the [project homepage](https://jiuntian.github.io/interactdiffusion/).
44
+
45
+ ## Citation
46
+
47
+ ```bibtex
48
+ @inproceedings{hoe2023interactdiffusion,
49
+ title={InteractDiffusion: Interaction Control in Text-to-Image Diffusion Models},
50
+ author={Jiun Tian Hoe and Xudong Jiang and Chee Seng Chan and Yap-Peng Tan and Weipeng Hu},
51
+ year={2024},
52
+ booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
53
+ }
54
+ ```
55
+
56
+ ## Acknowledgement
57
+
58
+ This work is developed based on the codebase of [GLIGEN](https://github.com/gligen/GLIGEN) and [LDM](https://github.com/CompVis/latent-diffusion).