Spaces:
Running
on
Zero
Running
on
Zero
lucakempkes
commited on
Commit
·
54005c9
1
Parent(s):
7f5aa58
update models
Browse files
app.py
CHANGED
@@ -6,10 +6,10 @@ from image_gen_aux.utils import load_image
|
|
6 |
from fastapi.middleware.cors import CORSMiddleware
|
7 |
|
8 |
MODELS = {
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
}
|
14 |
|
15 |
|
@@ -39,7 +39,7 @@ with gr.Blocks() as demo:
|
|
39 |
|
40 |
model_selection = gr.Dropdown(
|
41 |
choices=list(MODELS.keys()),
|
42 |
-
value="
|
43 |
label="Model",
|
44 |
)
|
45 |
|
|
|
6 |
from fastapi.middleware.cors import CORSMiddleware
|
7 |
|
8 |
MODELS = {
|
9 |
+
"4xNomosWebPhotoRealPLKSR": "Phips/4xNomosWebPhoto_RealPLKSR",
|
10 |
+
"4xRealESRGAN": "luca115/4xRealESRGAN",
|
11 |
+
"4xNomos8k_atd_jpg": "Phips/4xNomos8k_atd_jpg",
|
12 |
+
"4xSwinIRLarge": "luca115/4xSwinIRLarge",
|
13 |
}
|
14 |
|
15 |
|
|
|
39 |
|
40 |
model_selection = gr.Dropdown(
|
41 |
choices=list(MODELS.keys()),
|
42 |
+
value="4xSwinIRLarge",
|
43 |
label="Model",
|
44 |
)
|
45 |
|