diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-20 16:32:26 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-20 16:32:26 +0000 |
commit | 06cd20610765aeb563700f377f1698a6e981b17d (patch) | |
tree | 065c63fb15a3787dfc4550e0055e185487bfecab /modules/ui.py | |
parent | 2c9777fcc7a2c0d3b8c64807b6a1fc8bf360d171 (diff) | |
download | stable-diffusion-webui-gfx803-06cd20610765aeb563700f377f1698a6e981b17d.tar.gz stable-diffusion-webui-gfx803-06cd20610765aeb563700f377f1698a6e981b17d.tar.bz2 stable-diffusion-webui-gfx803-06cd20610765aeb563700f377f1698a6e981b17d.zip |
Enable neural network upscalers for highres. fix
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui.py b/modules/ui.py index ec6f247e..752bc97b 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -396,7 +396,7 @@ def create_ui(txt2img, img2img, run_extras, run_pnginfo): enable_hr = gr.Checkbox(label='Highres. fix', value=False)
with gr.Row(visible=False) as hr_options:
- scale_latent = gr.Checkbox(label='Scale latent', value=True)
+ scale_latent = gr.Checkbox(label='Scale latent', value=False)
denoising_strength = gr.Slider(minimum=0.0, maximum=1.0, step=0.01, label='Denoising strength', value=0.7)
with gr.Row():
|