Spaces:
Sleeping
Sleeping
Commit
·
42256e1
1
Parent(s):
374225b
Actualizar app.py para corregir el nombre del control deslizante
Browse files
app.py
CHANGED
@@ -283,7 +283,7 @@ with gr.Blocks(css=css) as demo:
|
|
283 |
output_slider = ImageSlider(label="Before / After", type="numpy", show_download_button=False)
|
284 |
|
285 |
with gr.Accordion("Advanced Options", open=False):
|
286 |
-
upscale_reduce_factor = gr.
|
287 |
upscale_resolution = gr.Slider(minimum=128, maximum=2048, value=1024, step=128, label="Resolution")
|
288 |
upscale_num_inference_steps = gr.Slider(minimum=1, maximum=50, value=20, step=1, label="Number of Inference Steps")
|
289 |
upscale_strength = gr.Slider(minimum=0, maximum=1, value=0.2, step=0.01, label="Strength")
|
|
|
283 |
output_slider = ImageSlider(label="Before / After", type="numpy", show_download_button=False)
|
284 |
|
285 |
with gr.Accordion("Advanced Options", open=False):
|
286 |
+
upscale_reduce_factor = gr.Slider(minimum=1, maximum=10)
|
287 |
upscale_resolution = gr.Slider(minimum=128, maximum=2048, value=1024, step=128, label="Resolution")
|
288 |
upscale_num_inference_steps = gr.Slider(minimum=1, maximum=50, value=20, step=1, label="Number of Inference Steps")
|
289 |
upscale_strength = gr.Slider(minimum=0, maximum=1, value=0.2, step=0.01, label="Strength")
|