Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2024-12-29 15:41:34 -05:00
parent e010c57749
commit 40472eefe5
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -10,7 +10,7 @@
- **HunyuanVideo** optimizations: full offload, quantization and tiling support
- **LTXVideo** optimizations: full offload, quantization and tiling support
- VAE tiling granular options in *settings -> variable auto encoder*
- UI: live preview optimizations
- UI: live preview optimizations and error handling
- UI: CSS optimizations when log view is disabled
- Samplers: add flow shift options and separate dynamic thresholding from dynamic shifting
- **Fixes**
+1 -1
View File
@@ -127,7 +127,7 @@ class ExtraNetworkLora(extra_networks.ExtraNetwork):
sd_model = getattr(shared.sd_model, "pipe", shared.sd_model)
if not hasattr(sd_model, 'loaded_loras'):
sd_model.loaded_loras = {}
key = f'{','.join(include)}:{','.join(exclude)}'
key = f'{",".join(include)}:{','.join(exclude)}'
loaded = sd_model.loaded_loras.get(key, [])
# shared.log.trace(f'Load network: type=LoRA key="{key}" requested={requested} loaded={loaded}')
if len(requested) != len(loaded):