We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1026e0a commit 6354cbbCopy full SHA for 6354cbb
1 file changed
src/maxdiffusion/models/ltx2/ltx2_3_utils.py
@@ -104,8 +104,8 @@ def load_connectors_weights(
104
105
accumulated_stacked[base_key][layer_idx] = tensor
106
else:
107
- # Transpose projection kernels in feature extractor
108
- if "feature_extractor" in segments and segments[-1] == "kernel":
+ # Transpose projection kernels in feature extractor or new LTX-2.3 projections
+ if any(x in segments for x in ["feature_extractor", "audio_text_proj_in", "video_text_proj_in"]) and segments[-1] == "kernel":
109
tensor = jnp.transpose(tensor, (1, 0))
110
111
flax_key = _tuple_str_to_int(segments)
0 commit comments