salomonsky
commited on
Commit
•
b329b3a
1
Parent(s):
3b09086
Update app.py
Browse files
app.py
CHANGED
@@ -83,7 +83,7 @@ with gr.Blocks(css=css, theme="Nymbo/Nymbo_Theme") as demo:
|
|
83 |
process_upscale = gr.Checkbox(label="Procesar Escalador")
|
84 |
upscale_factor = gr.Radio(label="Factor de Escala", choices=[2, 4, 8], value=2)
|
85 |
|
86 |
-
|
87 |
width = gr.Slider(label="Ancho", minimum=512, maximum=1280, step=8, value=1280)
|
88 |
height = gr.Slider(label="Alto", minimum=512, maximum=1280, step=8, value=768)
|
89 |
scales = gr.Slider(label="Escalas", minimum=3.5, maximum=7, step=0.1, value=3.5)
|
|
|
83 |
process_upscale = gr.Checkbox(label="Procesar Escalador")
|
84 |
upscale_factor = gr.Radio(label="Factor de Escala", choices=[2, 4, 8], value=2)
|
85 |
|
86 |
+
with gr.Accordion(label="Opciones Avanzadas", open=False):
|
87 |
width = gr.Slider(label="Ancho", minimum=512, maximum=1280, step=8, value=1280)
|
88 |
height = gr.Slider(label="Alto", minimum=512, maximum=1280, step=8, value=768)
|
89 |
scales = gr.Slider(label="Escalas", minimum=3.5, maximum=7, step=0.1, value=3.5)
|