From f7f999adbc8bc3dad83130180595fda4664fd8c4 Mon Sep 17 00:00:00 2001 From: kijai <40791699+kijai@users.noreply.github.com> Date: Thu, 7 Nov 2024 14:19:25 +0200 Subject: [PATCH] Update pipeline_cogvideox_inpaint.py --- cogvideox_fun/pipeline_cogvideox_inpaint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogvideox_fun/pipeline_cogvideox_inpaint.py b/cogvideox_fun/pipeline_cogvideox_inpaint.py index 9bd8813..4b3b4f3 100644 --- a/cogvideox_fun/pipeline_cogvideox_inpaint.py +++ b/cogvideox_fun/pipeline_cogvideox_inpaint.py @@ -894,7 +894,7 @@ class CogVideoX_Fun_Pipeline_Inpaint(VideoSysPipeline): if tora is not None: trajectory_length = tora["video_flow_features"].shape[1] logger.info(f"Tora trajectory length: {trajectory_length}") - logger.info(f"Tora trajectory shape: {tora["video_flow_features"].shape}") + logger.info(f"Tora trajectory shape: {tora['video_flow_features'].shape}") logger.info(f"latents shape: {latents.shape}") if trajectory_length != latents.shape[1]: raise ValueError(f"Tora trajectory length {trajectory_length} does not match latent count {latents.shape[2]}")