Merge pull request #12466 from catboxanon/fix/lora-old-mk2

Fix broken `Lora/Networks: use old method` option
This commit is contained in:
AUTOMATIC1111 2023-08-11 07:53:12 +03:00 committed by GitHub
commit 2c79f2af6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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