Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -4,6 +4,7 @@ import sys
|
|
4 |
from pathlib import Path
|
5 |
|
6 |
models = [
|
|
|
7 |
"stabilityai/stable-diffusion-xl-base-1.0",
|
8 |
"Lykon/dreamshaper-xl-1-0",
|
9 |
"nerijs/pixel-art-xl",
|
@@ -18,6 +19,7 @@ models2=[
|
|
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 |
|
|
|
4 |
from pathlib import Path
|
5 |
|
6 |
models = [
|
7 |
+
"dataautogpt3/OpenDalleV1.1",
|
8 |
"stabilityai/stable-diffusion-xl-base-1.0",
|
9 |
"Lykon/dreamshaper-xl-1-0",
|
10 |
"nerijs/pixel-art-xl",
|
|
|
19 |
gr.Interface.load(f"models/{models[1]}",live=True,preprocess=False),
|
20 |
gr.Interface.load(f"models/{models[2]}",live=True,preprocess=False),
|
21 |
gr.Interface.load(f"models/{models[3]}",live=True,preprocess=False)
|
22 |
+
gr.Interface.load(f"models/{models[4]}",live=True,preprocess=False)
|
23 |
]
|
24 |
|
25 |
|