diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-21 13:51:01 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-21 13:51:01 +0000 |
commit | ec37f8a45f316db8a20445aa80afd602457327b0 (patch) | |
tree | 20a59fe67602feeff3ba6e023f823a314294e78e /modules/prompt_parser.py | |
parent | 003d2c7fe427edde299274c9e0d5fa59734e7f7e (diff) | |
parent | 85cb5918ee7c97cafafe4149880ed82f1933d919 (diff) | |
download | stable-diffusion-webui-gfx803-ec37f8a45f316db8a20445aa80afd602457327b0.tar.gz stable-diffusion-webui-gfx803-ec37f8a45f316db8a20445aa80afd602457327b0.tar.bz2 stable-diffusion-webui-gfx803-ec37f8a45f316db8a20445aa80afd602457327b0.zip |
Merge branch 'master' into features-to-readme
Diffstat (limited to 'modules/prompt_parser.py')
-rw-r--r-- | modules/prompt_parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/prompt_parser.py b/modules/prompt_parser.py index 919d5d31..f70872c4 100644 --- a/modules/prompt_parser.py +++ b/modules/prompt_parser.py @@ -275,7 +275,7 @@ re_attention = re.compile(r""" def parse_prompt_attention(text):
"""
- Parses a string with attention tokens and returns a list of pairs: text and its assoicated weight.
+ Parses a string with attention tokens and returns a list of pairs: text and its associated weight.
Accepted tokens are:
(abc) - increases attention to abc by a multiplier of 1.1
(abc:3.12) - increases attention to abc by a multiplier of 3.12
|