diff options
author | catboxanon <122327233+catboxanon@users.noreply.github.com> | 2023-08-11 03:42:58 +0000 |
---|---|---|
committer | catboxanon <122327233+catboxanon@users.noreply.github.com> | 2023-08-11 03:42:58 +0000 |
commit | 4fafc34e498130dcbb2d1a44fbc55fdba31e32d4 (patch) | |
tree | 9bfdb4c5d4b3a8e204471c70a10a076cb6a20ef3 | |
parent | 458eda13211ac3498485f1e5154d90808fbcfb60 (diff) | |
download | stable-diffusion-webui-gfx803-4fafc34e498130dcbb2d1a44fbc55fdba31e32d4.tar.gz stable-diffusion-webui-gfx803-4fafc34e498130dcbb2d1a44fbc55fdba31e32d4.tar.bz2 stable-diffusion-webui-gfx803-4fafc34e498130dcbb2d1a44fbc55fdba31e32d4.zip |
Fix to make LoRA old method setting work
-rw-r--r-- | extensions-builtin/Lora/networks.py | 2 |
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
|