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 2d38089 commit 3c0a012Copy full SHA for 3c0a012
src/diffusers/pipelines/ltx/pipeline_ltx.py
@@ -789,6 +789,7 @@ def __call__(
789
]
790
latents = (1 - decode_noise_scale) * latents + decode_noise_scale * noise
791
792
+ latents = latents.to(self.vae.dtype)
793
video = self.vae.decode(latents, timestep, return_dict=False)[0]
794
video = self.video_processor.postprocess_video(video, output_type=output_type)
795
0 commit comments