We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b8efca commit dc4f451Copy full SHA for dc4f451
1 file changed
src/maxdiffusion/pipelines/wan/wan_pipeline.py
@@ -420,7 +420,8 @@ def _get_t5_prompt_embeds(
420
max_sequence_length: int = 226,
421
):
422
jax.debug.print("Prompt Shape")
423
- jax.debug.print(prompt.shape)
+ jax.debug.print(f"Length of prompt list: {len(prompt)}")
424
+
425
prompt = [prompt] if isinstance(prompt, str) else prompt
426
prompt = [prompt_clean(u) for u in prompt]
427
batch_size = len(prompt)
0 commit comments