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):
|
||||
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)
|
||||
if valid_step == floor(valid_step):
|
||||
return int(valid_step) + 1
|
||||
|
|
Loading…
Reference in New Issue