diff options
author | random_thoughtss <random_thoughtss@proton.me> | 2022-10-25 18:14:12 +0000 |
---|---|---|
committer | random_thoughtss <random_thoughtss@proton.me> | 2022-10-25 18:14:12 +0000 |
commit | f9549d1cbb3f1d7d1f0fb70375a06e31f9c5dd9d (patch) | |
tree | 6fe546985ade8298e890190882cb87dcaed26ce3 /modules/shared.py | |
parent | 3e15f8e0f5cc87507f77546d92435670644dbd18 (diff) | |
download | stable-diffusion-webui-gfx803-f9549d1cbb3f1d7d1f0fb70375a06e31f9c5dd9d.tar.gz stable-diffusion-webui-gfx803-f9549d1cbb3f1d7d1f0fb70375a06e31f9c5dd9d.tar.bz2 stable-diffusion-webui-gfx803-f9549d1cbb3f1d7d1f0fb70375a06e31f9c5dd9d.zip |
Added option to use unmasked conditioning image.
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 308fccce..1d0ff1a1 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -320,6 +320,7 @@ options_templates.update(options_section(('sampler-params', "Sampler parameters" 's_tmin': OptionInfo(0.0, "sigma tmin", gr.Slider, {"minimum": 0.0, "maximum": 1.0, "step": 0.01}),
's_noise': OptionInfo(1.0, "sigma noise", gr.Slider, {"minimum": 0.0, "maximum": 1.0, "step": 0.01}),
'eta_noise_seed_delta': OptionInfo(0, "Eta noise seed delta", gr.Number, {"precision": 0}),
+ "inpainting_mask_image": OptionInfo(True, "Mask original image for conditioning used by inpainting model."),
}))
|