diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-03-25 12:08:24 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-25 12:08:24 +0300 |
commit | 8dbe793af53194ff3054bfbc9529a10f961bdbd3 (patch) | |
tree | 087f31c96c6b0280c75cfca4380638cde72ff90e /extensions-builtin/Lora | |
parent | 8e3ced73a8c8f435809de544e0574da265177289 (diff) | |
parent | 70615448b2ef3285dba9bb1992974cb1eaf10995 (diff) |
Merge branch 'master' into extra-network-info
Diffstat (limited to 'extensions-builtin/Lora')
-rw-r--r-- | extensions-builtin/Lora/lora.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/extensions-builtin/Lora/lora.py b/extensions-builtin/Lora/lora.py index 8937b585..7c371deb 100644 --- a/extensions-builtin/Lora/lora.py +++ b/extensions-builtin/Lora/lora.py @@ -178,6 +178,7 @@ def load_loras(names, multipliers=None): def lora_forward(module, input, res):
+ input = devices.cond_cast_unet(input)
if len(loaded_loras) == 0:
return res
|