change the behavior of discard_next_to_last_sigma for sgm_uniform to match other schedulers

This commit is contained in:
AUTOMATIC1111
2024-03-20 10:29:52 +03:00
parent ac9aa44cb8
commit 31306ce672
2 changed files with 1 additions and 5 deletions

View File

@@ -25,7 +25,7 @@ def sgm_uniform(n, sigma_min, sigma_max, inner_model, device):
end = inner_model.sigma_to_t(torch.tensor(sigma_min))
sigs = [
inner_model.t_to_sigma(ts)
for ts in torch.linspace(start, end, n)[:-1]
for ts in torch.linspace(start, end, n + 1)[:-1]
]
sigs += [0.0]
return torch.FloatTensor(sigs).to(device)