We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebb5d62 commit 7458abbCopy full SHA for 7458abb
1 file changed
src/maxdiffusion/models/ltx2/transformer_ltx2.py
@@ -665,14 +665,16 @@ def __init__(
665
self.caption_projection = NNXPixArtAlphaTextProjection(
666
rngs=rngs,
667
in_features=self.caption_channels,
668
- hidden_size=inner_dim,
+ hidden_size=self.caption_channels,
669
+ out_features=inner_dim,
670
dtype=self.dtype,
671
weights_dtype=self.weights_dtype,
672
)
673
self.audio_caption_projection = NNXPixArtAlphaTextProjection(
674
675
- hidden_size=audio_inner_dim,
676
677
+ out_features=audio_inner_dim,
678
679
680
0 commit comments