skytnt commited on
Commit
ef85cd3
1 Parent(s): 88ad981

remove print

Browse files
Files changed (1) hide show
  1. pipeline.py +0 -1
pipeline.py CHANGED
@@ -676,7 +676,6 @@ class StableDiffusionLongPromptWeightingPipeline(DiffusionPipeline):
676
  )
677
  else:
678
  noise = torch.randn(init_latents.shape, generator=generator, device=self.device, dtype=latents_dtype)
679
- print(timesteps.shape)
680
  latents = self.scheduler.add_noise(init_latents, noise, timesteps)
681
 
682
  t_start = max(num_inference_steps - init_timestep + offset, 0)
 
676
  )
677
  else:
678
  noise = torch.randn(init_latents.shape, generator=generator, device=self.device, dtype=latents_dtype)
 
679
  latents = self.scheduler.add_noise(init_latents, noise, timesteps)
680
 
681
  t_start = max(num_inference_steps - init_timestep + offset, 0)