Upload folder using huggingface_hub
Browse files- app.py +2 -3
- requirements.txt +5 -0
app.py
CHANGED
@@ -60,10 +60,9 @@ def create_image(image_pil,target,prompt,n_prompt,scale, guidance_scale,num_samp
|
|
60 |
|
61 |
|
62 |
DESCRIPTION = """
|
63 |
-
#
|
64 |
**Demo by [ameer azam] - [Twitter](https://twitter.com/Ameerazam18) - [GitHub](https://github.com/AMEERAZAM08)) - [Hugging Face](https://huggingface.co/ameerazam08)**
|
65 |
-
This is a demo of https://
|
66 |
-
ByteDance provide a demo of [ResAdapter](https://huggingface.co/jiaxiangc/res-adapter) with [SDXL-Lightning-Step4](https://huggingface.co/ByteDance/SDXL-Lightning) to expand resolution range from 1024-only to 256~1024.
|
67 |
"""
|
68 |
|
69 |
block = gr.Blocks(css="footer {visibility: hidden}").queue()
|
|
|
60 |
|
61 |
|
62 |
DESCRIPTION = """
|
63 |
+
# InstantStyle: Free Lunch towards Style-Preserving in Text-to-Image Generation
|
64 |
**Demo by [ameer azam] - [Twitter](https://twitter.com/Ameerazam18) - [GitHub](https://github.com/AMEERAZAM08)) - [Hugging Face](https://huggingface.co/ameerazam08)**
|
65 |
+
This is a demo of https://github.com/InstantStyle/InstantStyle.
|
|
|
66 |
"""
|
67 |
|
68 |
block = gr.Blocks(css="footer {visibility: hidden}").queue()
|
requirements.txt
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
transformers
|
2 |
+
diffusers
|
3 |
+
torch
|
4 |
+
accelerate
|
5 |
+
gradio
|