diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-04-29 08:58:54 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-29 08:58:54 +0000 |
commit | f54cd3f1586ec8d20ffcaff184ba2e680bb8cb8b (patch) | |
tree | 7af57d3994e5db508c89f43858a67aefd917450b /modules/images.py | |
parent | 7fb72edaffd3d4f2336d2478a424fc455f2376a6 (diff) | |
parent | e55cb92067094564c259b515b8a6ec3869654083 (diff) | |
download | stable-diffusion-webui-gfx803-f54cd3f1586ec8d20ffcaff184ba2e680bb8cb8b.tar.gz stable-diffusion-webui-gfx803-f54cd3f1586ec8d20ffcaff184ba2e680bb8cb8b.tar.bz2 stable-diffusion-webui-gfx803-f54cd3f1586ec8d20ffcaff184ba2e680bb8cb8b.zip |
Merge branch 'dev' into torch
Diffstat (limited to 'modules/images.py')
-rw-r--r-- | modules/images.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/images.py b/modules/images.py index b3535070..1a118a69 100644 --- a/modules/images.py +++ b/modules/images.py @@ -352,6 +352,7 @@ class FilenameGenerator: 'prompt_no_styles': lambda self: self.prompt_no_style(),
'prompt_spaces': lambda self: sanitize_filename_part(self.prompt, replace_spaces=False),
'prompt_words': lambda self: self.prompt_words(),
+ 'clip_skip': lambda self: opts.data["CLIP_stop_at_last_layers"],
}
default_time_format = '%Y%m%d%H%M%S'
|