diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-16 10:38:02 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-16 10:38:02 +0000 |
commit | e49b1c5d73ede818adb624590934f051b94493ac (patch) | |
tree | d4c318e9fd8f1dc1c5d26d01d4ad546ff136cc9a /modules/shared.py | |
parent | be0f82df12b07d559e18eeabb5c5eef951e6a911 (diff) | |
download | stable-diffusion-webui-gfx803-e49b1c5d73ede818adb624590934f051b94493ac.tar.gz stable-diffusion-webui-gfx803-e49b1c5d73ede818adb624590934f051b94493ac.tar.bz2 stable-diffusion-webui-gfx803-e49b1c5d73ede818adb624590934f051b94493ac.zip |
an option to do exactly the amount of specified steps in img2img
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/shared.py b/modules/shared.py index fa6a0e99..da56b6ae 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -125,6 +125,7 @@ class Options: "enable_pnginfo": OptionInfo(True, "Save text information about generation parameters as chunks to png files"),
"add_model_hash_to_info": OptionInfo(False, "Add model hash to generation information"),
"img2img_color_correction": OptionInfo(False, "Apply color correction to img2img results to match original colors."),
+ "img2img_fix_steps": OptionInfo(False, "With img2img, do exactly the amount of steps the slider specifies (normaly you'd do less with less denoising)."),
"enable_quantization": OptionInfo(False, "Enable quantization in K samplers for sharper and cleaner results. This may change existing seeds. Requires restart to apply."),
"font": OptionInfo("", "Font for image grids that have text"),
"enable_emphasis": OptionInfo(True, "Use (text) to make model pay more attention to text and [text] to make it pay less attention"),
|