Fix to make LoRA old method setting work
This commit is contained in:
parent
458eda1321
commit
4fafc34e49
|
@ -357,7 +357,7 @@ def network_forward(module, input, original_forward):
|
||||||
if module is None:
|
if module is None:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
y = module.forward(y, input)
|
y = module.forward(input, y)
|
||||||
|
|
||||||
return y
|
return y
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue