We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2a4a93 commit 070a985Copy full SHA for 070a985
src/diffusers/pipelines/sana/pipeline_sana_sprint_img2img.py
@@ -860,7 +860,8 @@ def __call__(
860
f"After adjusting the num_inference_steps by strength parameter: {strength}, the number of pipeline"
861
f"steps is {num_inference_steps} which is < 1 and not appropriate for this pipeline."
862
)
863
- latent_timestep = timesteps[:1].repeat(batch_size * num_images_per_prompt)
+ #latent_timestep = timesteps[:1].repeat(batch_size * num_images_per_prompt)
864
+ latent_timestep = timesteps[:1]
865
866
# 5. Prepare latents.
867
latent_channels = self.transformer.config.in_channels
0 commit comments