diff options
author | drhead <1313496+drhead@users.noreply.github.com> | 2023-11-30 03:48:31 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-30 03:48:31 +0000 |
commit | 668ae34e21df848ef4909b8b49c4142a3674701b (patch) | |
tree | d8398085b94562d88e748e4e4491273d9c823815 /modules/processing.py | |
parent | de79597ab9894965e3702939b8536ec3dcc3c859 (diff) | |
download | stable-diffusion-webui-gfx803-668ae34e21df848ef4909b8b49c4142a3674701b.tar.gz stable-diffusion-webui-gfx803-668ae34e21df848ef4909b8b49c4142a3674701b.tar.bz2 stable-diffusion-webui-gfx803-668ae34e21df848ef4909b8b49c4142a3674701b.zip |
remove debug print
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 7e73d7e2..d73c8bfc 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -890,7 +890,6 @@ def process_images_inner(p: StableDiffusionProcessing) -> Processed: p.sd_model.alphas_cumprod = p.sd_model.alphas_cumprod.half().to(shared.device)
if opts.sd_noise_schedule == "Zero Terminal SNR":
p.extra_generation_params['Noise Schedule'] = opts.sd_noise_schedule
- print("rescaling noise schedule for zero snr")
p.sd_model.alphas_cumprod = rescale_zero_terminal_snr_abar(p.sd_model.alphas_cumprod).to(shared.device)
with devices.without_autocast() if devices.unet_needs_upcast else devices.autocast():
|