Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -38,7 +38,7 @@ with gr.Blocks() as interface:
|
|
38 |
with gr.Column():
|
39 |
width = gr.Slider(label="Width", info="The width in pixels of the generated image.", value=512, minimum=128, maximum=4096, step=64, interactive=True)
|
40 |
height = gr.Slider(label="Height", info="The height in pixels of the generated image.", value=512, minimum=128, maximum=4096, step=64, interactive=True)
|
41 |
-
hrf = gr.Checkbox(label="High-Res Fix", info="Run through img2img.", value=
|
42 |
with gr.Column():
|
43 |
sampling_steps = gr.Slider(label="Sampling Steps", info="The number of denoising steps.", value=20, minimum=4, maximum=50, step=1, interactive=True)
|
44 |
|
|
|
38 |
with gr.Column():
|
39 |
width = gr.Slider(label="Width", info="The width in pixels of the generated image.", value=512, minimum=128, maximum=4096, step=64, interactive=True)
|
40 |
height = gr.Slider(label="Height", info="The height in pixels of the generated image.", value=512, minimum=128, maximum=4096, step=64, interactive=True)
|
41 |
+
hrf = gr.Checkbox(label="High-Res Fix", info="Run through img2img.", value=True, interactive=True)
|
42 |
with gr.Column():
|
43 |
sampling_steps = gr.Slider(label="Sampling Steps", info="The number of denoising steps.", value=20, minimum=4, maximum=50, step=1, interactive=True)
|
44 |
|