Upload folder using huggingface_hub
Browse files- app.py +1 -1
- requirements.txt +3 -1
app.py
CHANGED
@@ -8,7 +8,7 @@ model = SD2(
|
|
8 |
refiner_model_id="stabilityai/stable-diffusion-xl-refiner-1.0"
|
9 |
)
|
10 |
title = ("# Stable Diffusion 2 XL ([base model](https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0), [refiner model](https://huggingface.co/stabilityai/stable-diffusion-xl-refiner-1.0))\n"
|
11 |
-
"The demo is part of [panna](https://github.com/
|
12 |
examples = [
|
13 |
"Astronaut in a jungle, cold color palette, muted colors, detailed, 8k",
|
14 |
"A female model, high quality, fashion, Paris, Vogue, Maison Margiela, 8k",
|
|
|
8 |
refiner_model_id="stabilityai/stable-diffusion-xl-refiner-1.0"
|
9 |
)
|
10 |
title = ("# Stable Diffusion 2 XL ([base model](https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0), [refiner model](https://huggingface.co/stabilityai/stable-diffusion-xl-refiner-1.0))\n"
|
11 |
+
"The demo is part of [panna](https://github.com/asahi417/panna) project.")
|
12 |
examples = [
|
13 |
"Astronaut in a jungle, cold color palette, muted colors, detailed, 8k",
|
14 |
"A female model, high quality, fashion, Paris, Vogue, Maison Margiela, 8k",
|
requirements.txt
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
accelerate
|
2 |
sentencepiece
|
3 |
-
panna
|
|
|
1 |
+
git+https://github.com/rwightman/pytorch-image-models.git
|
2 |
+
git+https://github.com/huggingface/diffusers.git
|
3 |
accelerate
|
4 |
sentencepiece
|
5 |
+
panna>=0.0.9
|