Add LoRA key mapping for LTXV/LTXAV models (#14349)
This commit is contained in:
parent
1639dc7a70
commit
07c53f8f0f
|
|
@ -357,6 +357,12 @@ def model_lora_keys_unet(model, key_map={}):
|
|||
key_lora = k[len("diffusion_model."):-len(".weight")]
|
||||
key_map["transformer.{}".format(key_lora)] = k
|
||||
|
||||
if isinstance(model, (comfy.model_base.LTXV, comfy.model_base.LTXAV)):
|
||||
for k in sdk:
|
||||
if k.startswith("diffusion_model.") and k.endswith(".weight"):
|
||||
key_lora = k[len("diffusion_model."):-len(".weight")]
|
||||
key_map["{}".format(key_lora)] = k
|
||||
|
||||
return key_map
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue