aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2023-08-11 07:53:12 +0300
committerGitHub <noreply@github.com>2023-08-11 07:53:12 +0300
commit2c79f2af6e05789db05a5a5e235784ee1dbe2f58 (patch)
tree9bfdb4c5d4b3a8e204471c70a10a076cb6a20ef3
parent458eda13211ac3498485f1e5154d90808fbcfb60 (diff)
parent4fafc34e498130dcbb2d1a44fbc55fdba31e32d4 (diff)
Merge pull request #12466 from catboxanon/fix/lora-old-mk2
Fix broken `Lora/Networks: use old method` option
-rw-r--r--extensions-builtin/Lora/networks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions-builtin/Lora/networks.py b/extensions-builtin/Lora/networks.py
index bc722e90..7e3415ac 100644
--- a/extensions-builtin/Lora/networks.py
+++ b/extensions-builtin/Lora/networks.py
@@ -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