Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -280,14 +280,13 @@ with gr.Blocks(css= "style.css") as app:
|
|
280 |
batch_count = gr.Slider(minimum=1, maximum=24, step=1, label="Batch Count", value=1)
|
281 |
|
282 |
with gr.Accordion("Hires. fix"):
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
denois_strength = gr.Slider(minimum=0, maximum=1, step=0.02, label="Denoising Strength", value=2)
|
291 |
|
292 |
|
293 |
with gr.Column():
|
|
|
280 |
batch_count = gr.Slider(minimum=1, maximum=24, step=1, label="Batch Count", value=1)
|
281 |
|
282 |
with gr.Accordion("Hires. fix"):
|
283 |
+
use_hires = gr.Checkbox(label="Use Hires?", value=False, scale=0)
|
284 |
+
with gr.Column(scale=1):
|
285 |
+
upscaler = gr.Dropdown(choices=schedulers, label="Upscaler", value=schedulers[0])
|
286 |
+
upscale_by = gr.Slider(minimum=1, maximum=8, step=1, label="Upscale by", value=2)
|
287 |
+
with gr.Column(scale=0.18):
|
288 |
+
hires_steps = gr.Slider(minimum=1, maximum=50, step=1, label="Hires Steps", value=20)
|
289 |
+
denois_strength = gr.Slider(minimum=0, maximum=1, step=0.02, label="Denoising Strength", value=2)
|
|
|
290 |
|
291 |
|
292 |
with gr.Column():
|