We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a51ab1 commit cda16f0Copy full SHA for cda16f0
1 file changed
src/maxdiffusion/loaders/ltx2_lora_nnx_loader.py
@@ -76,8 +76,6 @@ def translate_fn(nnx_path_str):
76
# the merge_fn warns about unmatched keys in each dict, so we only warn about any leftovers
77
unmatched_keys = set(h_state_dict) - set(transformer_state_dict) - set(connector_state_dict)
78
if unmatched_keys:
79
- max_logging.log(
80
- f"{len(unmatched_keys)} key(s) in LoRA dictionary routed to no merge target: {unmatched_keys}"
81
- )
+ max_logging.log(f"{len(unmatched_keys)} key(s) in LoRA dictionary routed to no merge target: {unmatched_keys}")
82
83
return pipeline
0 commit comments