You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assertlatents.shape==condition_latents.shape, f"Latents shape {latents.shape} does not match expected shape {condition_latents.shape}. Please check the input."
421
+
assertlatents.shape==condition_latents.shape, (
422
+
f"Latents shape {latents.shape} does not match expected shape {condition_latents.shape}. Please check the input."
423
+
)
415
424
416
425
returnlatents, condition_latents
426
+
417
427
@property
418
428
defguidance_scale(self):
419
429
returnself._guidance_scale
@@ -469,7 +479,7 @@ def __call__(
469
479
The call function to the pipeline for generation.
470
480
471
481
Args:
472
-
video (`List[Image.Image]`):
482
+
video (`List[Image.Image]`):
473
483
The video to use as the condition for the video generation.
474
484
prompt (`str` or `List[str]`, *optional*):
475
485
The prompt or prompts to guide the image generation. If not defined, pass `prompt_embeds` instead.
0 commit comments