remove print
Browse files- 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)
|