Improve model card metadata and add HF paper link (#1)
Browse files- Improve model card metadata and add HF paper link (3fd6c1cf53c283bb15d66c246953bfdff4250f5e)
Co-authored-by: Niels Rogge <[email protected]>
README.md
CHANGED
@@ -1,27 +1,28 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
2 |
language:
|
3 |
- en
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
tags:
|
6 |
- virtual-try-on
|
7 |
- diffusion
|
8 |
- stable-diffusion
|
9 |
- multi-reference
|
10 |
-
- image-to-image
|
11 |
- computer-vision
|
12 |
- comfyui
|
13 |
- gradio
|
14 |
- aigc
|
15 |
-
|
16 |
-
datasets:
|
17 |
-
- zhengchong/DressCode-MR
|
18 |
-
- zhengchong/DressCode-Test
|
19 |
-
- zhengchong/VITON-HD
|
20 |
-
metrics:
|
21 |
-
- fid
|
22 |
-
- ssim
|
23 |
-
- lpips
|
24 |
-
base_model: "runwayml/stable-diffusion-inpainting"
|
25 |
---
|
26 |
|
27 |
<h1 align="center"> FastFit: Accelerating Multi-Reference Virtual Try-On via Cacheable Diffusion Models </h1>
|
@@ -30,6 +31,9 @@ base_model: "runwayml/stable-diffusion-inpainting"
|
|
30 |
|
31 |
|
32 |
<div align="center">
|
|
|
|
|
|
|
33 |
<a href="https://arxiv.org/abs/2508.20586" style="margin: 0 2px; text-decoration: none;">
|
34 |
<img src='https://img.shields.io/badge/arXiv-2508.20586-red?style=flat&logo=arXiv&logoColor=red' alt='arxiv'>
|
35 |
</a>
|
@@ -188,8 +192,8 @@ python eval.py \
|
|
188 |
```
|
189 |
|
190 |
## Acknowledgement
|
191 |
-
Our code is modified based on [Diffusers](https://github.com/huggingface/diffusers). We adopt [Stable Diffusion v1.5 inpainting](https://huggingface.co/runwayml/stable-diffusion-inpainting) as the base model. We use a modified [AutoMasker](https://github.com/Zheng-Chong/CatVTON/blob/
|
192 |
|
193 |
## License
|
194 |
|
195 |
-
All weights, parameters, and code related to FastFit are governed by the [FastFit Non-Commercial License](https://github.com/Zheng-Chong/FastFit/tree/main). For commercial collaboration, please contact [LavieAI](https://lavieai.com/) or [LoomlyAI](https://www.loomlyai.com/en).
|
|
|
1 |
---
|
2 |
+
base_model: runwayml/stable-diffusion-inpainting
|
3 |
+
datasets:
|
4 |
+
- zhengchong/DressCode-MR
|
5 |
+
- zhengchong/DressCode-Test
|
6 |
+
- zhengchong/VITON-HD
|
7 |
language:
|
8 |
- en
|
9 |
+
license: other
|
10 |
+
metrics:
|
11 |
+
- fid
|
12 |
+
- ssim
|
13 |
+
- lpips
|
14 |
+
pipeline_tag: image-to-image
|
15 |
+
library_name: diffusers
|
16 |
tags:
|
17 |
- virtual-try-on
|
18 |
- diffusion
|
19 |
- stable-diffusion
|
20 |
- multi-reference
|
|
|
21 |
- computer-vision
|
22 |
- comfyui
|
23 |
- gradio
|
24 |
- aigc
|
25 |
+
thumbnail: https://raw.githubusercontent.com/Zheng-Chong/FastFit/main/assets/img/dataset.png
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
---
|
27 |
|
28 |
<h1 align="center"> FastFit: Accelerating Multi-Reference Virtual Try-On via Cacheable Diffusion Models </h1>
|
|
|
31 |
|
32 |
|
33 |
<div align="center">
|
34 |
+
<a href="https://huggingface.co/papers/2508.20586" style="margin: 0 2px; text-decoration: none;">
|
35 |
+
<img src='https://img.shields.io/badge/Paper-2508.20586-blue?style=flat&logo=HuggingFace&logoColor=blue' alt='HF Paper'>
|
36 |
+
</a>
|
37 |
<a href="https://arxiv.org/abs/2508.20586" style="margin: 0 2px; text-decoration: none;">
|
38 |
<img src='https://img.shields.io/badge/arXiv-2508.20586-red?style=flat&logo=arXiv&logoColor=red' alt='arxiv'>
|
39 |
</a>
|
|
|
192 |
```
|
193 |
|
194 |
## Acknowledgement
|
195 |
+
Our code is modified based on [Diffusers](https://github.com/huggingface/diffusers). We adopt [Stable Diffusion v1.5 inpainting](https://huggingface.co/runwayml/stable-diffusion-inpainting) as the base model. We use a modified [AutoMasker](https://github.com/Zheng-Chong/CatVTON/blob/main/model/cloth_masker.py) to automatically generate masks in our [Gradio](https://github.com/gradio-app/gradio) App and [ComfyUI](https://github.com/comfyanonymous/ComfyUI) workflow. Thanks to all the contributors!
|
196 |
|
197 |
## License
|
198 |
|
199 |
+
All weights, parameters, and code related to FastFit are governed by the [FastFit Non-Commercial License](https://github.com/Zheng-Chong/FastFit/tree/main). For commercial collaboration, please contact [LavieAI](https://lavieai.com/) or [LoomlyAI](https://www.loomlyai.com/en).
|