diff options
author | catboxanon <122327233+catboxanon@users.noreply.github.com> | 2023-08-06 01:23:58 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-06 01:23:58 +0000 |
commit | dfc01c68cd204fd091b3cf5b855d5c0f77a6526a (patch) | |
tree | ade5ae4c08c40e3a49f4f42ed861f93d0c261bf4 | |
parent | c6278c15a81bf65efb65ded50368972a920cc198 (diff) | |
download | stable-diffusion-webui-gfx803-dfc01c68cd204fd091b3cf5b855d5c0f77a6526a.tar.gz stable-diffusion-webui-gfx803-dfc01c68cd204fd091b3cf5b855d5c0f77a6526a.tar.bz2 stable-diffusion-webui-gfx803-dfc01c68cd204fd091b3cf5b855d5c0f77a6526a.zip |
Increase s_churn max value
-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 a99b500b..1a6cc86d 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -606,7 +606,7 @@ options_templates.update(options_section(('sampler-params', "Sampler parameters" "eta_ddim": OptionInfo(0.0, "Eta for DDIM", gr.Slider, {"minimum": 0.0, "maximum": 1.0, "step": 0.01}).info("noise multiplier; higher = more unperdictable results"),
"eta_ancestral": OptionInfo(1.0, "Eta for ancestral samplers", gr.Slider, {"minimum": 0.0, "maximum": 1.0, "step": 0.01}).info("noise multiplier; applies to Euler a and other samplers that have a in them"),
"ddim_discretize": OptionInfo('uniform', "img2img DDIM discretize", gr.Radio, {"choices": ['uniform', 'quad']}),
- 's_churn': OptionInfo(0.0, "sigma churn", gr.Slider, {"minimum": 0.0, "maximum": 1.0, "step": 0.01}),
+ 's_churn': OptionInfo(0.0, "sigma churn", gr.Slider, {"minimum": 0.0, "maximum": 100.0, "step": 0.01}),
'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}),
'k_sched_type': OptionInfo("Automatic", "scheduler type", gr.Dropdown, {"choices": ["Automatic", "karras", "exponential", "polyexponential"]}).info("lets you override the noise schedule for k-diffusion samplers; choosing Automatic disables the three parameters below"),
|