diff options
author | Muhammad Rizqi Nur <rizqinur2010@gmail.com> | 2022-11-13 04:11:14 +0000 |
---|---|---|
committer | Muhammad Rizqi Nur <rizqinur2010@gmail.com> | 2022-11-19 05:04:12 +0000 |
commit | c8f7b5cdd73969d3d5027ceb71cbbd83d557702b (patch) | |
tree | c346960cbf893035b2cc5fed8eaab0e6edd60e17 | |
parent | 271fd2d700a59e80d9dc9f23ad3ef08c988e8b24 (diff) | |
download | stable-diffusion-webui-gfx803-c8f7b5cdd73969d3d5027ceb71cbbd83d557702b.tar.gz stable-diffusion-webui-gfx803-c8f7b5cdd73969d3d5027ceb71cbbd83d557702b.tar.bz2 stable-diffusion-webui-gfx803-c8f7b5cdd73969d3d5027ceb71cbbd83d557702b.zip |
Misc
Misc
-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 17132e42..a9daf800 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -335,7 +335,7 @@ options_templates.update(options_section(('training', "Training"), { options_templates.update(options_section(('sd', "Stable Diffusion"), {
"sd_model_checkpoint": OptionInfo(None, "Stable Diffusion checkpoint", gr.Dropdown, lambda: {"choices": modules.sd_models.checkpoint_tiles()}, refresh=sd_models.list_models),
"sd_checkpoint_cache": OptionInfo(0, "Checkpoints to cache in RAM", gr.Slider, {"minimum": 0, "maximum": 10, "step": 1}),
- "sd_vae": OptionInfo("auto", "SD VAE", gr.Dropdown, lambda: {"choices": list(sd_vae.vae_list)}, refresh=sd_vae.refresh_vae_list),
+ "sd_vae": OptionInfo("auto", "SD VAE", gr.Dropdown, lambda: {"choices": sd_vae.vae_list}, refresh=sd_vae.refresh_vae_list),
"sd_hypernetwork": OptionInfo("None", "Hypernetwork", gr.Dropdown, lambda: {"choices": ["None"] + [x for x in hypernetworks.keys()]}, refresh=reload_hypernetworks),
"sd_hypernetwork_strength": OptionInfo(1.0, "Hypernetwork strength", gr.Slider, {"minimum": 0.0, "maximum": 1.0, "step": 0.001}),
"inpainting_mask_weight": OptionInfo(1.0, "Inpainting conditioning mask strength", gr.Slider, {"minimum": 0.0, "maximum": 1.0, "step": 0.01}),
|