mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-12-06 10:31:17 -08:00
X/Y plot with denoising adds incorrect image data to individual outputs #331
This commit is contained in:
parent
744ac1f89a
commit
19a817d97d
2 changed files with 1 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue