diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-05-08 05:04:02 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-08 05:04:02 +0000 |
commit | 6ac33fe9d1a80c521d43ce8018618d970998899d (patch) | |
tree | 9c32b8b5e17ba55673aae18fb79eea1b7c0b988c /modules | |
parent | 160780283a991f56b5671402f2cd3830f8f2a66b (diff) | |
parent | 381674739eff32156bdd88239ab7538e553b1b3d (diff) | |
download | stable-diffusion-webui-gfx803-6ac33fe9d1a80c521d43ce8018618d970998899d.tar.gz stable-diffusion-webui-gfx803-6ac33fe9d1a80c521d43ce8018618d970998899d.tar.bz2 stable-diffusion-webui-gfx803-6ac33fe9d1a80c521d43ce8018618d970998899d.zip |
Merge pull request #10133 from AUTOMATIC1111/filename-pattern-denoising_strength
Filename pattern denoising strength
Diffstat (limited to 'modules')
-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 fd173829..6ceb7c7c 100644 --- a/modules/images.py +++ b/modules/images.py @@ -357,6 +357,7 @@ class FilenameGenerator: 'generation_number': lambda self: NOTHING_AND_SKIP_PREVIOUS_TEXT if self.p.n_iter == 1 and self.p.batch_size == 1 else self.p.iteration * self.p.batch_size + self.p.batch_index + 1,
'hasprompt': lambda self, *args: self.hasprompt(*args), # accepts formats:[hasprompt<prompt1|default><prompt2>..]
'clip_skip': lambda self: opts.data["CLIP_stop_at_last_layers"],
+ 'denoising': lambda self: self.p.denoising_strength if self.p and self.p.denoising_strength else NOTHING_AND_SKIP_PREVIOUS_TEXT,
}
default_time_format = '%Y%m%d%H%M%S'
|