We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97f5dc2 commit 7e8870cCopy full SHA for 7e8870c
1 file changed
src/maxdiffusion/pipelines/ltx2/ltx2_pipeline.py
@@ -131,7 +131,7 @@ def create_model(rngs: nnx.Rngs, ltx2_config: dict):
131
"num_layers": 48,
132
"caption_channels": 3840,
133
"audio_caption_channels": 2048,
134
- "use_prompt_embeddings": False,
+ "use_prompt_embeddings": True,
135
"gated_attn": False,
136
"cross_attn_mod": True,
137
"audio_gated_attn": False,
@@ -162,7 +162,7 @@ def create_model(rngs: nnx.Rngs, ltx2_config: dict):
162
ltx2_config["gated_attn"] = False
163
ltx2_config["cross_attn_mod"] = True
164
ltx2_config["perturbed_attn"] = True
165
- ltx2_config["use_prompt_embeddings"] = False
+ ltx2_config["use_prompt_embeddings"] = True
166
167
# 2. eval_shape
168
p_model_factory = partial(create_model, ltx2_config=ltx2_config)
0 commit comments