diff options
author | catboxanon <122327233+catboxanon@users.noreply.github.com> | 2023-04-17 00:39:18 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-17 00:39:18 +0000 |
commit | 81b276a1ea943fc177c7ec16b272eec7bccb62f7 (patch) | |
tree | 28b0d5e1cdd1b381877ad9cf75e7f6d5aa9396ed /modules/shared.py | |
parent | 56f8a6b081e3dbfc93956e5c44e507e74a2ba040 (diff) | |
download | stable-diffusion-webui-gfx803-81b276a1ea943fc177c7ec16b272eec7bccb62f7.tar.gz stable-diffusion-webui-gfx803-81b276a1ea943fc177c7ec16b272eec7bccb62f7.tar.bz2 stable-diffusion-webui-gfx803-81b276a1ea943fc177c7ec16b272eec7bccb62f7.zip |
Add second order samplers compat option
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 5fd0eecb..e1d4088f 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -338,6 +338,7 @@ options_templates.update(options_section(('compatibility', "Compatibility"), { "use_old_karras_scheduler_sigmas": OptionInfo(False, "Use old karras scheduler sigmas (0.1 to 10)."),
"no_dpmpp_sde_batch_determinism": OptionInfo(False, "Do not make DPM++ SDE deterministic across different batch sizes."),
"use_old_hires_fix_width_height": OptionInfo(False, "For hires fix, use width/height sliders to set final resolution rather than first pass (disables Upscale by, Resize width/height to)."),
+ "fix_second_order_samplers_schedule": OptionInfo(False, "Fix prompt schedule for second order samplers."),
}))
options_templates.update(options_section(('interrogate', "Interrogate Options"), {
|