Spaces:
Running
on
Zero
Running
on
Zero
Commit
Β·
aac6957
1
Parent(s):
e9b3585
update readme
Browse files
README.md
CHANGED
|
@@ -17,11 +17,12 @@ license: mit
|
|
| 17 |
Star β us if you like it!
|
| 18 |
|
| 19 |
## News
|
| 20 |
-
-
|
| 21 |
-
-
|
| 22 |
-
-
|
| 23 |
-
-
|
| 24 |
-
-
|
|
|
|
| 25 |
|
| 26 |
|
| 27 |
*[Leffa](https://en.wiktionary.org/wiki/leffa)* is a unified framework for controllable person image generation that enables precise manipulation of both appearance (i.e., virtual try-on) and pose (i.e., pose transfer).
|
|
|
|
| 17 |
Star β us if you like it!
|
| 18 |
|
| 19 |
## News
|
| 20 |
+
- 09/Jan/2025. Inference defaults to float16, generating an image in 6 seconds (on A100).
|
| 21 |
+
- 02/Jan/2025. Update the mask generator to improve results. Add ref unet acceleration, boosting prediction speed by 30%. Include more controls in Advanced Options to enhance user experience. Enable intermediate result output for easier development. Enjoy using it!
|
| 22 |
+
- 18/Dec/2024. Thanks to @[StartHua](https://github.com/StartHua) for integrating Leffa into ComfyUI! Here is the [repo](https://github.com/StartHua/Comfyui_leffa)!
|
| 23 |
+
- 16/Dec/2024. The virtual try-on [model](https://huggingface.co/franciszzj/Leffa/blob/main/virtual_tryon_dc.pth) trained on DressCode is released.
|
| 24 |
+
- 12/Dec/2024. The HuggingFace [demo](https://huggingface.co/spaces/franciszzj/Leffa) and [models](https://huggingface.co/franciszzj/Leffa) (virtual try-on model trained on VITON-HD and pose transfer model trained on DeepFashion) are released.
|
| 25 |
+
- 11/Dec/2024. The [arXiv](https://arxiv.org/abs/2412.08486) version of the paper is released.
|
| 26 |
|
| 27 |
|
| 28 |
*[Leffa](https://en.wiktionary.org/wiki/leffa)* is a unified framework for controllable person image generation that enables precise manipulation of both appearance (i.e., virtual try-on) and pose (i.e., pose transfer).
|
app.py
CHANGED
|
@@ -163,9 +163,13 @@ if __name__ == "__main__":
|
|
| 163 |
garment_images = list_dir(f"{example_dir}/garment")
|
| 164 |
|
| 165 |
title = "## Leffa: Learning Flow Fields in Attention for Controllable Person Image Generation"
|
| 166 |
-
link = "[π Paper](https://arxiv.org/abs/2412.08486) - [π€ Code](https://github.com/franciszzj/Leffa) - [π₯ Demo](https://huggingface.co/spaces/franciszzj/Leffa) - [π€ Model](https://huggingface.co/franciszzj/Leffa)
|
|
|
|
|
|
|
|
|
|
| 167 |
news = """## News
|
| 168 |
-
-
|
|
|
|
| 169 |
More news can be found in the [GitHub repository](https://github.com/franciszzj/Leffa).
|
| 170 |
"""
|
| 171 |
description = "Leffa is a unified framework for controllable person image generation that enables precise manipulation of both appearance (i.e., virtual try-on) and pose (i.e., pose transfer)."
|
|
|
|
| 163 |
garment_images = list_dir(f"{example_dir}/garment")
|
| 164 |
|
| 165 |
title = "## Leffa: Learning Flow Fields in Attention for Controllable Person Image Generation"
|
| 166 |
+
link = """[π Paper](https://arxiv.org/abs/2412.08486) - [π€ Code](https://github.com/franciszzj/Leffa) - [π₯ Demo](https://huggingface.co/spaces/franciszzj/Leffa) - [π€ Model](https://huggingface.co/franciszzj/Leffa)
|
| 167 |
+
|
| 168 |
+
Star β us if you like it!
|
| 169 |
+
"""
|
| 170 |
news = """## News
|
| 171 |
+
- 09/Jan/2025. Inference defaults to float16, generating an image in 6 seconds (on A100).
|
| 172 |
+
|
| 173 |
More news can be found in the [GitHub repository](https://github.com/franciszzj/Leffa).
|
| 174 |
"""
|
| 175 |
description = "Leffa is a unified framework for controllable person image generation that enables precise manipulation of both appearance (i.e., virtual try-on) and pose (i.e., pose transfer)."
|