Update app.py
Browse files
app.py
CHANGED
@@ -13,8 +13,9 @@ from image_gen_aux.utils import load_image
|
|
13 |
# I simply want them to message me first so I know that everythings okay with having their model as a selection here since they are the author of that model. If they want their model on here or not basically.
|
14 |
# I load models from huggingface model cards though, so the model should be hosted on huggingface.
|
15 |
MODELS = {
|
16 |
-
"
|
17 |
-
"
|
|
|
18 |
}
|
19 |
|
20 |
|
@@ -45,7 +46,7 @@ with gr.Blocks() as demo:
|
|
45 |
|
46 |
model_selection = gr.Dropdown(
|
47 |
choices=list(MODELS.keys()),
|
48 |
-
value="
|
49 |
label="Model",
|
50 |
)
|
51 |
|
|
|
13 |
# I simply want them to message me first so I know that everythings okay with having their model as a selection here since they are the author of that model. If they want their model on here or not basically.
|
14 |
# I load models from huggingface model cards though, so the model should be hosted on huggingface.
|
15 |
MODELS = {
|
16 |
+
"4xNomosWebPhoto_RealPLKSR": "OzzyGT/4xNomosWebPhoto_RealPLKSR",
|
17 |
+
"4xRealWebPhoto_v4_dat2": "Phips/4xRealWebPhoto_v4_dat2",
|
18 |
+
"4xNomos2_hq_drct-l": "Phips/4xNomos2_hq_drct-l",
|
19 |
}
|
20 |
|
21 |
|
|
|
46 |
|
47 |
model_selection = gr.Dropdown(
|
48 |
choices=list(MODELS.keys()),
|
49 |
+
value="4xNomos2_hq_drct-l",
|
50 |
label="Model",
|
51 |
)
|
52 |
|