aboutsummaryrefslogtreecommitdiffstats
path: root/extensions-builtin/Lora/networks.py
diff options
context:
space:
mode:
authorv0xie <28695009+v0xie@users.noreply.github.com>2023-10-12 04:26:58 +0000
committerv0xie <28695009+v0xie@users.noreply.github.com>2023-10-12 04:26:58 +0000
commit906d1179e9a333eeb0f12a95b592dd5b44eb0aaa (patch)
treec2a473a9dfc4e6cf92c3ec049c5a268ef81e187d /extensions-builtin/Lora/networks.py
parent7d60076b8b275771a1aa98f017aff845ef68d964 (diff)
downloadstable-diffusion-webui-gfx803-906d1179e9a333eeb0f12a95b592dd5b44eb0aaa.tar.gz
stable-diffusion-webui-gfx803-906d1179e9a333eeb0f12a95b592dd5b44eb0aaa.tar.bz2
stable-diffusion-webui-gfx803-906d1179e9a333eeb0f12a95b592dd5b44eb0aaa.zip
support inference with LyCORIS GLora networks
Diffstat (limited to 'extensions-builtin/Lora/networks.py')
-rw-r--r--extensions-builtin/Lora/networks.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/extensions-builtin/Lora/networks.py b/extensions-builtin/Lora/networks.py
index 315682b3..ddab3c55 100644
--- a/extensions-builtin/Lora/networks.py
+++ b/extensions-builtin/Lora/networks.py
@@ -5,6 +5,7 @@ import re
import lora_patches
import network
import network_lora
+import network_glora
import network_hada
import network_ia3
import network_lokr
@@ -23,6 +24,7 @@ module_types = [
network_lokr.ModuleTypeLokr(),
network_full.ModuleTypeFull(),
network_norm.ModuleTypeNorm(),
+ network_glora.ModuleTypeGLora(),
]