We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9abd7ce commit 95c985bCopy full SHA for 95c985b
1 file changed
src/maxdiffusion/models/lora_nnx.py
@@ -227,6 +227,7 @@ def merge_lora(model: nnx.Module, state_dict: dict, scale: float, translate_fn=N
227
if not isinstance(module, (nnx.Linear, nnx.Conv)): continue
228
229
nnx_path_str = ".".join(map(str, path))
230
+ max_logging.log(f"NNX path: {nnx_path_str}")
231
lora_key = translate_fn(nnx_path_str) if translate_fn else None
232
233
if lora_key and lora_key in lora_params:
0 commit comments