diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-04-29 09:56:57 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-29 09:56:57 +0000 |
commit | d6a3988b86aaccc2df43c6786abfcc38294c66ba (patch) | |
tree | c7066a2b6fb6f27b8aa0d9003c1fcb07ad056efb /modules/shared.py | |
parent | fc6eeda69cb37c209754d113a61971d8490f7756 (diff) | |
parent | 9de7298898951d6038eeadee78f7be3b09d2cfc3 (diff) | |
download | stable-diffusion-webui-gfx803-d6a3988b86aaccc2df43c6786abfcc38294c66ba.tar.gz stable-diffusion-webui-gfx803-d6a3988b86aaccc2df43c6786abfcc38294c66ba.tar.bz2 stable-diffusion-webui-gfx803-d6a3988b86aaccc2df43c6786abfcc38294c66ba.zip |
Merge pull request #9669 from catboxanon/patch/sampler-schedule-fix
Fix prompt schedule for second order samplers
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 4313e4af..26bd56eb 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -360,6 +360,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)."),
+ "dont_fix_second_order_samplers_schedule": OptionInfo(False, "Do not fix prompt schedule for second order samplers."),
}))
options_templates.update(options_section(('interrogate', "Interrogate Options"), {
|