Spaces:
Running
on
Zero
Running
on
Zero
artificialguybr
commited on
Commit
•
23f25b9
1
Parent(s):
63ef02e
Update app.py
Browse files
app.py
CHANGED
@@ -148,7 +148,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as app:
|
|
148 |
|
149 |
with gr.Row():
|
150 |
seed = gr.Slider(label="Seed", minimum=0, maximum=2**32-1, step=1, value=0, randomize=True)
|
151 |
-
lora_scale = gr.Slider(label="LoRA Scale", minimum=0, maximum=1, step=0.01, value=
|
152 |
|
153 |
scheduler = gr.Dropdown(
|
154 |
label="Scheduler",
|
@@ -157,7 +157,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as app:
|
|
157 |
"DPM++ SDE", "DPM++ SDE Karras", "DPM2", "DPM2 Karras", "DPM2 a", "DPM2 a Karras",
|
158 |
"Euler", "Euler a", "Heun", "LMS", "LMS Karras", "DEIS", "UniPC"
|
159 |
],
|
160 |
-
value="
|
161 |
)
|
162 |
|
163 |
gallery.select(update_selection, outputs=[prompt, selected_info, selected_index])
|
|
|
148 |
|
149 |
with gr.Row():
|
150 |
seed = gr.Slider(label="Seed", minimum=0, maximum=2**32-1, step=1, value=0, randomize=True)
|
151 |
+
lora_scale = gr.Slider(label="LoRA Scale", minimum=0, maximum=1, step=0.01, value=1)
|
152 |
|
153 |
scheduler = gr.Dropdown(
|
154 |
label="Scheduler",
|
|
|
157 |
"DPM++ SDE", "DPM++ SDE Karras", "DPM2", "DPM2 Karras", "DPM2 a", "DPM2 a Karras",
|
158 |
"Euler", "Euler a", "Heun", "LMS", "LMS Karras", "DEIS", "UniPC"
|
159 |
],
|
160 |
+
value="DPM++ 2M SDE Karras"
|
161 |
)
|
162 |
|
163 |
gallery.select(update_selection, outputs=[prompt, selected_info, selected_index])
|