diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-01-30 07:47:09 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-01-30 07:47:09 +0000 |
commit | 040ec7a80e23d340efe1108b9de5ead62d9011a9 (patch) | |
tree | abb66ecdc936a08f7b83efc1653d55ae052b9709 /modules/processing.py | |
parent | 4df63d2d197f26181758b5108f003f225fe84874 (diff) | |
download | stable-diffusion-webui-gfx803-040ec7a80e23d340efe1108b9de5ead62d9011a9.tar.gz stable-diffusion-webui-gfx803-040ec7a80e23d340efe1108b9de5ead62d9011a9.tar.bz2 stable-diffusion-webui-gfx803-040ec7a80e23d340efe1108b9de5ead62d9011a9.zip |
make the program read Eta and Eta DDIM from generation parameters
Diffstat (limited to 'modules/processing.py')
-rw-r--r-- | modules/processing.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/processing.py b/modules/processing.py index 2d295932..e544c2e1 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -455,7 +455,6 @@ def create_infotext(p, all_prompts, all_seeds, all_subseeds, comments=None, iter "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),
"Conditional mask weight": getattr(p, "inpainting_mask_weight", shared.opts.inpainting_mask_weight) if p.is_using_inpainting_conditioning else None,
- "Eta": (None if p.sampler is None or p.sampler.eta == p.sampler.default_eta else p.sampler.eta),
"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,
}
|