diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-04-29 12:57:09 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-04-29 12:57:09 +0000 |
commit | 1d11e896984c883f6a0debb3abaef945595cbc70 (patch) | |
tree | 0b5e074a7d200f6217c11bf7387b7183a91c8ee2 /modules/processing.py | |
parent | 3591eefedfc1f4dc324710b3d8e532cf73572852 (diff) | |
download | stable-diffusion-webui-gfx803-1d11e896984c883f6a0debb3abaef945595cbc70.tar.gz stable-diffusion-webui-gfx803-1d11e896984c883f6a0debb3abaef945595cbc70.tar.bz2 stable-diffusion-webui-gfx803-1d11e896984c883f6a0debb3abaef945595cbc70.zip |
rework Negative Guidance minimum sigma to work with AND, add infotext and copypaste parameters support
Diffstat (limited to 'modules/processing.py')
-rw-r--r-- | modules/processing.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/processing.py b/modules/processing.py index 04a06290..c50784f4 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -480,7 +480,8 @@ def create_infotext(p, all_prompts, all_seeds, all_subseeds, comments=None, iter "Clip skip": None if clip_skip <= 1 else clip_skip,
"ENSD": None if opts.eta_noise_seed_delta == 0 else opts.eta_noise_seed_delta,
"Init image hash": getattr(p, 'init_img_hash', None),
- "RNG": (opts.randn_source if opts.randn_source != "GPU" else None)
+ "RNG": opts.randn_source if opts.randn_source != "GPU" else None,
+ "NGMS": None if p.s_min_uncond == 0 else p.s_min_uncond,
}
generation_params.update(p.extra_generation_params)
|