Fix to make LoRA old method setting work

This commit is contained in:
catboxanon 2023-08-10 23:42:58 -04:00
parent 458eda1321
commit 4fafc34e49
1 changed files with 1 additions and 1 deletions

View File

@ -357,7 +357,7 @@ def network_forward(module, input, original_forward):
if module is None:
continue
y = module.forward(y, input)
y = module.forward(input, y)
return y