diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-05-31 15:58:06 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-31 15:58:06 +0000 |
commit | 741ab6bed14d9ee0911b47c5265318db2e7bc580 (patch) | |
tree | 8b7a71a9aa5e536a463b8b919d48391ee9b2d8e8 | |
parent | 11a6a669d130ca814cca4f8a1f0299c87d29bf1c (diff) | |
parent | 905c3fe23ee7a07925dd1c652c82659d83062c88 (diff) | |
download | stable-diffusion-webui-gfx803-741ab6bed14d9ee0911b47c5265318db2e7bc580.tar.gz stable-diffusion-webui-gfx803-741ab6bed14d9ee0911b47c5265318db2e7bc580.tar.bz2 stable-diffusion-webui-gfx803-741ab6bed14d9ee0911b47c5265318db2e7bc580.zip |
Merge pull request #10788 from yoinked-h/patch-1
typo
-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 f1d8c24b..acec7f18 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -416,7 +416,7 @@ options_templates.update(options_section(('sd', "Stable Diffusion"), { "comma_padding_backtrack": OptionInfo(20, "Prompt word wrap length limit", gr.Slider, {"minimum": 0, "maximum": 74, "step": 1}).info("in tokens - for texts shorter than specified, if they don't fit into 75 token limit, move them to the next 75 token chunk"),
"CLIP_stop_at_last_layers": OptionInfo(1, "Clip skip", gr.Slider, {"minimum": 1, "maximum": 12, "step": 1}).link("wiki", "https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Features#clip-skip").info("ignore last layers of CLIP nrtwork; 1 ignores none, 2 ignores one layer"),
"upcast_attn": OptionInfo(False, "Upcast cross attention layer to float32"),
- "randn_source": OptionInfo("GPU", "Random number generator source.", gr.Radio, {"choices": ["GPU", "CPU"]}).info("changes seeds drastically; use CPU to produce the same picture across different vidocard vendors"),
+ "randn_source": OptionInfo("GPU", "Random number generator source.", gr.Radio, {"choices": ["GPU", "CPU"]}).info("changes seeds drastically; use CPU to produce the same picture across different videocard vendors"),
}))
options_templates.update(options_section(('optimizations', "Optimizations"), {
|