We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8024e66 commit 5778ffcCopy full SHA for 5778ffc
1 file changed
src/maxdiffusion/pipelines/ltx2/ltx2_pipeline.py
@@ -1621,8 +1621,8 @@ def convert_to_vel(lat, x0):
1621
1622
# Re-stack based on strategy for next iteration
1623
if do_cfg and do_stg:
1624
- latents_jax = jnp.concatenate([latents_step] * 3, axis=0)
1625
- audio_latents_jax = jnp.concatenate([audio_latents_step] * 3, axis=0)
+ latents_jax = jnp.concatenate([latents_step] * 4, axis=0)
+ audio_latents_jax = jnp.concatenate([audio_latents_step] * 4, axis=0)
1626
elif do_cfg or do_stg:
1627
latents_jax = jnp.concatenate([latents_step] * 2, axis=0)
1628
audio_latents_jax = jnp.concatenate([audio_latents_step] * 2, axis=0)
0 commit comments