DeepBeepMeep
commited on
Commit
·
f0621e1
1
Parent(s):
30d0c66
fixed ltxv bug introduced by an unwanted space char
Browse files
ltx_video/pipelines/pipeline_ltx_video.py
CHANGED
|
@@ -1502,7 +1502,7 @@ class LTXVideoPipeline(DiffusionPipeline):
|
|
| 1502 |
extra_conditioning_mask.append(conditioning_mask)
|
| 1503 |
|
| 1504 |
# Patchify the updated latents and calculate their pixel coordinates
|
| 1505 |
-
|
| 1506 |
latents=init_latents
|
| 1507 |
)
|
| 1508 |
init_pixel_coords = latent_to_pixel_coords(
|
|
|
|
| 1502 |
extra_conditioning_mask.append(conditioning_mask)
|
| 1503 |
|
| 1504 |
# Patchify the updated latents and calculate their pixel coordinates
|
| 1505 |
+
init_latents, init_latent_coords = self.patchifier.patchify(
|
| 1506 |
latents=init_latents
|
| 1507 |
)
|
| 1508 |
init_pixel_coords = latent_to_pixel_coords(
|