diff options
author | discus0434 <discus0434@gmail.com> | 2022-10-19 14:30:33 +0000 |
---|---|---|
committer | discus0434 <discus0434@gmail.com> | 2022-10-19 14:30:33 +0000 |
commit | 42fbda83bb9830af18187fddb50c1bedd01da502 (patch) | |
tree | 30d5468df3d117938a524b381b525a4fcc9f721c /modules/shared.py | |
parent | 7f8670c4ef71440f690824d4b9bd432cc2926a3e (diff) | |
download | stable-diffusion-webui-gfx803-42fbda83bb9830af18187fddb50c1bedd01da502.tar.gz stable-diffusion-webui-gfx803-42fbda83bb9830af18187fddb50c1bedd01da502.tar.bz2 stable-diffusion-webui-gfx803-42fbda83bb9830af18187fddb50c1bedd01da502.zip |
layer options moves into create hnet ui
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/shared.py b/modules/shared.py index 0540cae9..faede821 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -260,8 +260,6 @@ 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_hypernetwork": OptionInfo("None", "Hypernetwork", gr.Dropdown, lambda: {"choices": ["None"] + [x for x in hypernetworks.keys()]}, refresh=reload_hypernetworks),
- "sd_hypernetwork_layer_structure": OptionInfo(None, "Hypernetwork layer structure Default: (1,2,1).", gr.Dropdown, lambda: {"choices": [(1, 2, 1), (1, 2, 2, 1), (1, 2, 4, 2, 1)]}),
- "sd_hypernetwork_add_layer_norm": OptionInfo(False, "Add layer normalization to hypernetwork architecture."),
"sd_hypernetwork_strength": OptionInfo(1.0, "Hypernetwork strength", gr.Slider, {"minimum": 0.0, "maximum": 1.0, "step": 0.001}),
"img2img_color_correction": OptionInfo(False, "Apply color correction to img2img results to match original colors."),
"save_images_before_color_correction": OptionInfo(False, "Save a copy of image before applying color correction to img2img results"),
|