mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-12-15 07:20:31 +08:00
Include PLMS in adjust steps as it also can fail in the same way
This commit is contained in:
parent
de1dc0d279
commit
34c86c12b0
@ -208,7 +208,7 @@ class VanillaStableDiffusionSampler:
|
|||||||
|
|
||||||
|
|
||||||
def adjust_steps_if_invalid(self, p, num_steps):
|
def adjust_steps_if_invalid(self, p, num_steps):
|
||||||
if self.config.name == 'DDIM' and p.ddim_discretize == 'uniform':
|
if (self.config.name == 'DDIM' and p.ddim_discretize == 'uniform') or (self.config.name == 'PLMS'):
|
||||||
valid_step = 999 / (1000 // num_steps)
|
valid_step = 999 / (1000 // num_steps)
|
||||||
if valid_step == floor(valid_step):
|
if valid_step == floor(valid_step):
|
||||||
return int(valid_step) + 1
|
return int(valid_step) + 1
|
||||||
|
Loading…
Reference in New Issue
Block a user