diff options
author | Fampai <unknown> | 2022-10-08 20:33:06 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-09 19:31:23 +0000 |
commit | a14f7bf113a2af9e06a1c4d06c2efa244f9c5730 (patch) | |
tree | 188702b5f6d55176aa0e6bf0133be42c96563aae | |
parent | e59c66c0088422b27f64b401ef42c242f836725a (diff) | |
download | stable-diffusion-webui-gfx803-a14f7bf113a2af9e06a1c4d06c2efa244f9c5730.tar.gz stable-diffusion-webui-gfx803-a14f7bf113a2af9e06a1c4d06c2efa244f9c5730.tar.bz2 stable-diffusion-webui-gfx803-a14f7bf113a2af9e06a1c4d06c2efa244f9c5730.zip |
Corrected CLIP Layer Ignore description and updated its range to the max possible
-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 270fa402..1995a99a 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -225,7 +225,7 @@ options_templates.update(options_section(('sd', "Stable Diffusion"), { "use_old_emphasis_implementation": OptionInfo(False, "Use old emphasis implementation. Can be useful to reproduce old seeds."),
"enable_batch_seeds": OptionInfo(True, "Make K-diffusion samplers produce same images in a batch as when making a single image"),
"filter_nsfw": OptionInfo(False, "Filter NSFW content"),
- 'CLIP_ignore_last_layers': OptionInfo(0, "Ignore last layers of CLIP model", gr.Slider, {"minimum": 0, "maximum": 5, "step": 1}),
+ 'CLIP_stop_at_last_layers': OptionInfo(1, "Stop At last layers of CLIP model", 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()}),
}))
|