We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c0d221 commit 3a7021cCopy full SHA for 3a7021c
1 file changed
src/maxdiffusion/models/ltx2/transformer_ltx2.py
@@ -699,15 +699,15 @@ def __init__(
699
rngs=rngs,
700
in_features=self.caption_channels,
701
hidden_size=self.cross_attention_dim,
702
- embedding_dim=inner_dim,
+ embedding_dim=self.cross_attention_dim,
703
dtype=self.dtype,
704
weights_dtype=self.weights_dtype,
705
)
706
self.audio_caption_projection = NNXCombinedTimestepTextProjEmbeddings(
707
708
in_features=self.audio_caption_channels,
709
hidden_size=self.audio_cross_attention_dim,
710
- embedding_dim=audio_inner_dim,
+ embedding_dim=self.audio_cross_attention_dim,
711
712
713
0 commit comments