mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-12-06 02:30:30 -08:00
change the behavior of discard_next_to_last_sigma for sgm_uniform to match other schedulers
This commit is contained in:
parent
ac9aa44cb8
commit
31306ce672
2 changed files with 1 additions and 5 deletions
|
|
@ -113,10 +113,6 @@ class KDiffusionSampler(sd_samplers_common.Sampler):
|
|||
if scheduler.need_inner_model:
|
||||
sigmas_kwargs['inner_model'] = self.model_wrap
|
||||
|
||||
if scheduler.name == "sgm_uniform": # XXX check this
|
||||
# Ensure the "step" will be target step + 1
|
||||
steps += 1 if not discard_next_to_last_sigma else 0
|
||||
|
||||
sigmas = scheduler.function(n=steps, **sigmas_kwargs, device=shared.device)
|
||||
|
||||
if discard_next_to_last_sigma:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue