aboutsummaryrefslogtreecommitdiffstats
path: root/modules/shared.py
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2022-12-03 06:41:39 +0000
committerAUTOMATIC <16777216c@gmail.com>2022-12-03 06:41:39 +0000
commitc7af672186ec09a514f0e78aa21155264e56c130 (patch)
tree5290245ae2443565c2df8621a2cfc31069b76014 /modules/shared.py
parentc67d8bca4f1f40a39a1001fb990cad69e4610c7c (diff)
downloadstable-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.py2
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()}),
}))