nroggendorff commited on
Commit
52a50b1
·
verified ·
1 Parent(s): 12d56e7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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=False)
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