diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-23 14:37:47 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-23 14:37:47 +0000 |
commit | 1a0353675de8b2f4d2ce784a37fe4d6121307131 (patch) | |
tree | 3ba85369a41c93ecb55c27accfa2163f38f06339 /modules/shared.py | |
parent | 6fa20d51dcfd7db3286bc9dad31455b69b6daf65 (diff) | |
download | stable-diffusion-webui-gfx803-1a0353675de8b2f4d2ce784a37fe4d6121307131.tar.gz stable-diffusion-webui-gfx803-1a0353675de8b2f4d2ce784a37fe4d6121307131.tar.bz2 stable-diffusion-webui-gfx803-1a0353675de8b2f4d2ce784a37fe4d6121307131.zip |
Option to use advanced upscalers with normal img2img
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/shared.py b/modules/shared.py index 0d7b8623..667c3441 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -168,7 +168,7 @@ options_templates.update(options_section(('upscaling', "Upscaling"), { "ldsr_pre_down": OptionInfo(1, "LDSR Pre-process downssample scale. 1 = no down-sampling, 4 = 1/4 scale.", gr.Slider, {"minimum": 1, "maximum": 4, "step": 1}),
"ldsr_post_down": OptionInfo(1, "LDSR Post-process down-sample scale. 1 = no down-sampling, 4 = 1/4 scale.", gr.Slider, {"minimum": 1, "maximum": 4, "step": 1}),
- "upscaler_for_hires_fix": OptionInfo(None, "Upscaler for highres. fix", gr.Radio, lambda: {"choices": [x.name for x in sd_upscalers]}),
+ "upscaler_for_img2img": OptionInfo(None, "Upscaler for img2img", gr.Radio, lambda: {"choices": [x.name for x in sd_upscalers]}),
}))
options_templates.update(options_section(('face-restoration', "Face restoration"), {
|