zhengchong
commited on
Commit
β’
9927c88
1
Parent(s):
407b9c1
Update README.md
Browse files
README.md
CHANGED
@@ -31,10 +31,13 @@ license: cc-by-nc-sa-4.0
|
|
31 |
|
32 |
|
33 |
## Updates
|
|
|
34 |
- **`2024/7/22`**: Our [**App Code**](https://github.com/Zheng-Chong/CatVTON/blob/main/app.py) is released, deploy and enjoy CatVTON on your own mechine π!
|
35 |
- **`2024/7/21`**: Our [**Inference Code**](https://github.com/Zheng-Chong/CatVTON/blob/main/inference.py) and [**Weights** π€](https://huggingface.co/zhengchong/CatVTON) are released.
|
36 |
- **`2024/7/11`**: Our [**Online Demo**](http://120.76.142.206:8888) is released π.
|
37 |
|
|
|
|
|
38 |
|
39 |
## Deployment (Gradio App)
|
40 |
To deploy the Gradio App for CatVTON on your own mechine, just run the following command, and checkpoints will be automaticly download from HuggingFace.
|
@@ -97,9 +100,22 @@ CUDA_VISIBLE_DEVICES=0 python inference.py \
|
|
97 |
|
98 |
|
99 |
## Acknowledgement
|
100 |
-
Our code is modified based on [Diffusers](https://github.com/huggingface/diffusers).
|
101 |
-
|
102 |
-
|
|
|
|
|
|
|
|
|
103 |
|
104 |
```
|
105 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
|
32 |
|
33 |
## Updates
|
34 |
+
- **`2024/7/24`**: Our [**Paper on ArXiv**](http://arxiv.org/abs/2407.15886) is available now π₯³!
|
35 |
- **`2024/7/22`**: Our [**App Code**](https://github.com/Zheng-Chong/CatVTON/blob/main/app.py) is released, deploy and enjoy CatVTON on your own mechine π!
|
36 |
- **`2024/7/21`**: Our [**Inference Code**](https://github.com/Zheng-Chong/CatVTON/blob/main/inference.py) and [**Weights** π€](https://huggingface.co/zhengchong/CatVTON) are released.
|
37 |
- **`2024/7/11`**: Our [**Online Demo**](http://120.76.142.206:8888) is released π.
|
38 |
|
39 |
+
## Installation
|
40 |
+
An [Installation Guide](https://github.com/Zheng-Chong/CatVTON/INSTALL.md) is provided to help build the conda environment for CatVTON. When deploying the app, you will need Detectron2 & DensePose, but these are not required for inference on datasets. Install the packages according to your needs.
|
41 |
|
42 |
## Deployment (Gradio App)
|
43 |
To deploy the Gradio App for CatVTON on your own mechine, just run the following command, and checkpoints will be automaticly download from HuggingFace.
|
|
|
100 |
|
101 |
|
102 |
## Acknowledgement
|
103 |
+
Our code is modified based on [Diffusers](https://github.com/huggingface/diffusers).
|
104 |
+
We adopt [Stable Diffusion v1.5 inpainting](https://huggingface.co/runwayml/stable-diffusion-inpainting) as base model.
|
105 |
+
We use [SCHP](https://github.com/GoGoDuck912/Self-Correction-Human-Parsing/tree/master)
|
106 |
+
and [DensePose](https://github.com/facebookresearch/DensePose) to automatically generate masks in our
|
107 |
+
[Gradio](https://github.com/gradio-app/gradio) App.
|
108 |
+
Thanks to all the contributors!
|
109 |
+
## Citation
|
110 |
|
111 |
```
|
112 |
+
@misc{chong2024catvtonconcatenationneedvirtual,
|
113 |
+
title={CatVTON: Concatenation Is All You Need for Virtual Try-On with Diffusion Models},
|
114 |
+
author={Zheng Chong and Xiao Dong and Haoxiang Li and Shiyue Zhang and Wenqing Zhang and Xujie Zhang and Hanqing Zhao and Xiaodan Liang},
|
115 |
+
year={2024},
|
116 |
+
eprint={2407.15886},
|
117 |
+
archivePrefix={arXiv},
|
118 |
+
primaryClass={cs.CV},
|
119 |
+
url={https://arxiv.org/abs/2407.15886},
|
120 |
+
}
|
121 |
+
```
|