diff options
author | catboxanon <122327233+catboxanon@users.noreply.github.com> | 2023-01-11 02:43:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-11 02:43:24 +0000 |
commit | 5830095b73515fc49b3fd567048470005191ec34 (patch) | |
tree | 15385cd232e5b10ae47563707ed70d82e0365db5 | |
parent | 9cfd10cdefc7b2966b8e42fbb0e05735967cf87b (diff) | |
download | stable-diffusion-webui-gfx803-5830095b73515fc49b3fd567048470005191ec34.tar.gz stable-diffusion-webui-gfx803-5830095b73515fc49b3fd567048470005191ec34.tar.bz2 stable-diffusion-webui-gfx803-5830095b73515fc49b3fd567048470005191ec34.zip |
Add old prompt parser compat option
-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 264264a6..b61bbd3f 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -400,6 +400,7 @@ options_templates.update(options_section(('compatibility', "Compatibility"), { "use_old_emphasis_implementation": OptionInfo(False, "Use old emphasis implementation. Can be useful to reproduce old seeds."),
"use_old_karras_scheduler_sigmas": OptionInfo(False, "Use old karras scheduler sigmas (0.1 to 10)."),
"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)."),
+ "use_old_prompt_parser_default_step_transformer": OptionInfo(False, "Use old prompt parser default step transformer. In particular, alternating words that contained emphasis were not parsed correctly. Useful to reproduce old seeds."),
}))
options_templates.update(options_section(('interrogate', "Interrogate Options"), {
|