diff --git a/ldm/invoke/generator/omnibus.py b/ldm/invoke/generator/omnibus.py index 2fccd7c6f7..d841cac64f 100644 --- a/ldm/invoke/generator/omnibus.py +++ b/ldm/invoke/generator/omnibus.py @@ -64,7 +64,6 @@ class Omnibus(Img2Img,Txt2Img): mask_image = torch.ones(1, 1, init_image.shape[2], init_image.shape[3], device=self.model.device) # and the masked image is just a copy of the original masked_image = init_image - t_enc = int(strength * steps) else: # txt2img init_image = torch.zeros(1, 3, height, width, device=self.model.device) @@ -111,7 +110,7 @@ class Omnibus(Img2Img,Txt2Img): samples, _ = sampler.sample( batch_size = 1, - S = t_enc, + S = steps, x_T = x_T, conditioning = cond, shape = shape, @@ -145,7 +144,4 @@ class Omnibus(Img2Img,Txt2Img): return batch def get_noise(self, width:int, height:int): - if self.init_latent: - return super(Img2Img,self).get_noise(width,height) - else: - return super(Txt2Img,self).get_noise(width,height) + return super(Txt2Img,self).get_noise(width,height)