Update app.py
Browse files
app.py
CHANGED
|
@@ -51,7 +51,7 @@ with gr.Blocks(theme="Base") as demo:
|
|
| 51 |
choices=SAMPLER_LIST)
|
| 52 |
model = gr.Dropdown(
|
| 53 |
interactive=True,
|
| 54 |
-
value=
|
| 55 |
show_label=True,
|
| 56 |
label="Stable Diffusion Checkpoint",
|
| 57 |
choices=get_models()
|
|
@@ -88,7 +88,7 @@ with gr.Blocks(theme="Base") as demo:
|
|
| 88 |
sampler = gr.Dropdown(value="Euler a", show_label=True, label="Sampling Method", choices=SAMPLER_LIST)
|
| 89 |
model = gr.Dropdown(
|
| 90 |
interactive=True,
|
| 91 |
-
value=
|
| 92 |
show_label=True,
|
| 93 |
label="Stable Diffusion Checkpoint",
|
| 94 |
choices=get_models()
|
|
|
|
| 51 |
choices=SAMPLER_LIST)
|
| 52 |
model = gr.Dropdown(
|
| 53 |
interactive=True,
|
| 54 |
+
value=get_models()[1],
|
| 55 |
show_label=True,
|
| 56 |
label="Stable Diffusion Checkpoint",
|
| 57 |
choices=get_models()
|
|
|
|
| 88 |
sampler = gr.Dropdown(value="Euler a", show_label=True, label="Sampling Method", choices=SAMPLER_LIST)
|
| 89 |
model = gr.Dropdown(
|
| 90 |
interactive=True,
|
| 91 |
+
value=get_models()[1],
|
| 92 |
show_label=True,
|
| 93 |
label="Stable Diffusion Checkpoint",
|
| 94 |
choices=get_models()
|