Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -4,6 +4,7 @@ import sys
|
|
| 4 |
from pathlib import Path
|
| 5 |
|
| 6 |
models = [
|
|
|
|
| 7 |
"nerijs/pixel-art-xl",
|
| 8 |
"Linaqruf/animagine-xl",
|
| 9 |
"stabilityai/stable-diffusion-xl-base-1.0",
|
|
@@ -16,6 +17,7 @@ models2=[
|
|
| 16 |
gr.Interface.load(f"models/{models[0]}",live=True,preprocess=False),
|
| 17 |
gr.Interface.load(f"models/{models[1]}",live=True,preprocess=False),
|
| 18 |
gr.Interface.load(f"models/{models[2]}",live=True,preprocess=False),
|
|
|
|
| 19 |
]
|
| 20 |
|
| 21 |
|
|
|
|
| 4 |
from pathlib import Path
|
| 5 |
|
| 6 |
models = [
|
| 7 |
+
"ridewinter/juggernautXL-1",
|
| 8 |
"nerijs/pixel-art-xl",
|
| 9 |
"Linaqruf/animagine-xl",
|
| 10 |
"stabilityai/stable-diffusion-xl-base-1.0",
|
|
|
|
| 17 |
gr.Interface.load(f"models/{models[0]}",live=True,preprocess=False),
|
| 18 |
gr.Interface.load(f"models/{models[1]}",live=True,preprocess=False),
|
| 19 |
gr.Interface.load(f"models/{models[2]}",live=True,preprocess=False),
|
| 20 |
+
gr.Interface.load(f"models/{models[3]}",live=True,preprocess=False)
|
| 21 |
]
|
| 22 |
|
| 23 |
|