diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-12-03 06:41:39 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-12-03 06:41:39 +0000 |
commit | c7af672186ec09a514f0e78aa21155264e56c130 (patch) | |
tree | 5290245ae2443565c2df8621a2cfc31069b76014 /modules/shared.py | |
parent | c67d8bca4f1f40a39a1001fb990cad69e4610c7c (diff) | |
download | stable-diffusion-webui-gfx803-c7af672186ec09a514f0e78aa21155264e56c130.tar.gz stable-diffusion-webui-gfx803-c7af672186ec09a514f0e78aa21155264e56c130.tar.bz2 stable-diffusion-webui-gfx803-c7af672186ec09a514f0e78aa21155264e56c130.zip |
more simple config option name plus mouseover hint for clip skip
Diffstat (limited to 'modules/shared.py')
-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 b4ecc7ca..42ec4120 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -371,7 +371,7 @@ options_templates.update(options_section(('sd', "Stable Diffusion"), { "enable_batch_seeds": OptionInfo(True, "Make K-diffusion samplers produce same images in a batch as when making a single image"),
"comma_padding_backtrack": OptionInfo(20, "Increase coherency by padding from the last comma within n tokens when using more than 75 tokens", gr.Slider, {"minimum": 0, "maximum": 74, "step": 1 }),
"filter_nsfw": OptionInfo(False, "Filter NSFW content"),
- 'CLIP_stop_at_last_layers': OptionInfo(1, "Stop at last layers of CLIP model (CLIP skip)", gr.Slider, {"minimum": 1, "maximum": 12, "step": 1}),
+ 'CLIP_stop_at_last_layers': OptionInfo(1, "Clip skip", gr.Slider, {"minimum": 1, "maximum": 12, "step": 1}),
"random_artist_categories": OptionInfo([], "Allowed categories for random artists selection when using the Roll button", gr.CheckboxGroup, {"choices": artist_db.categories()}),
}))
|