mirror of
https://github.com/vladmandic/automatic
synced 2026-09-19 09:14:35 +02:00
+5
-5
@@ -2,12 +2,15 @@
|
||||
|
||||
## Update for 2024-12-31
|
||||
|
||||
NYE refresh release with quite a few optimizatios and bug fixes...
|
||||
NYE refresh release with quite a few optimizatios and bug fixes...
|
||||
Commit hash: `master: #dcfc9f3` `dev: #935cac6`
|
||||
|
||||
- **LoRA**:
|
||||
- LoRA load/apply/unapply methods have been changed in 12/2024 Xmass release and further tuned in this release
|
||||
- for details on available methods, see <https://github.com/vladmandic/automatic/wiki/Lora#lora-loader>
|
||||
- **Sana** support
|
||||
- quantized models support
|
||||
- fuse support with on-demand apply/unapply
|
||||
- add fuse support with on-demand apply/unapply (new default)
|
||||
- add legacy option in *settings -> networks*
|
||||
- **HunyuanVideo**:
|
||||
- optimizations: full offload, quantization and tiling support
|
||||
@@ -33,9 +36,6 @@ NYE refresh release with quite a few optimizatios and bug fixes...
|
||||
- **OpenVINO**:
|
||||
- disable re-compile on resolution change
|
||||
- fix shape mismatch on resolution change
|
||||
- **LoRA**:
|
||||
- LoRA load/apply/unapply methods have been changed in 12/2024 Xmass release and further tuned in this release
|
||||
- for details on available methods, see <https://github.com/vladmandic/automatic/wiki/Lora#lora-loader>
|
||||
- **Fixes**:
|
||||
- flux pipeline switches: txt/img/inpaint
|
||||
- flux custom unet loader for bnb
|
||||
|
||||
@@ -130,7 +130,7 @@ class ExtraNetworkLora(extra_networks.ExtraNetwork):
|
||||
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):
|
||||
if (len(requested) == 0) or (len(requested) != len(loaded)):
|
||||
sd_model.loaded_loras[key] = requested
|
||||
return True
|
||||
for r, l in zip(requested, loaded):
|
||||
|
||||
Reference in New Issue
Block a user