diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-12 20:44:36 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-12 20:44:36 +0000 |
commit | 19a817d97dad1b2ce58e70cadc35ccba5cf1130e (patch) | |
tree | c027e7453a241ff5a389c7f943b737c3d11f3260 /modules/processing.py | |
parent | 744ac1f89a075be4535146279feef800214c35a8 (diff) | |
download | stable-diffusion-webui-gfx803-19a817d97dad1b2ce58e70cadc35ccba5cf1130e.tar.gz stable-diffusion-webui-gfx803-19a817d97dad1b2ce58e70cadc35ccba5cf1130e.tar.bz2 stable-diffusion-webui-gfx803-19a817d97dad1b2ce58e70cadc35ccba5cf1130e.zip |
X/Y plot with denoising adds incorrect image data to individual outputs #331
Diffstat (limited to 'modules/processing.py')
-rw-r--r-- | modules/processing.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/processing.py b/modules/processing.py index 17b4a37b..92bf66f2 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -194,6 +194,7 @@ def process_images(p: StableDiffusionProcessing) -> Processed: "Variation seed": (None if p.subseed_strength == 0 else all_subseeds[index]),
"Variation seed strength": (None if p.subseed_strength == 0 else p.subseed_strength),
"Seed resize from": (None if p.seed_resize_from_w == 0 or p.seed_resize_from_h == 0 else f"{p.seed_resize_from_w}x{p.seed_resize_from_h}"),
+ "Denoising strength": getattr(p, 'denoising_strength', None),
}
if p.extra_generation_params is not None:
|