update changelog

Signed-off-by: Vladimir Mandic <mandic00@live.com>
pull/4322/head
Vladimir Mandic 2025-10-28 14:00:06 -04:00
parent bc775f0530
commit b02778e689
2 changed files with 5 additions and 6 deletions

View File

@ -5,11 +5,11 @@
### Highlights for 2025-10-28
- Reorganization of **Reference Models** into *Base, Quantized, Distilled and Community* sections for easier navigation
- New models: **HunyuanImage 2.1** capable of generating 2K images natively, **Pony 7** based on AuraFlow architecture,
**Kandinsky 5** 10s video models, **Krea Realtime** autoregressive variant of WAN-2.1
- New models: **HunyuanImage 2.1** capable of 2K images natively, **Pony 7** based on AuraFlow architecture, **Kandinsky 5** 10s video models
- New **offline mode** to use previously downloaded models without internet connection
- Optimizations to **WAN-2.2** given its popularity
plus addition of native **VAE Upscaler** and optimized **pre-quantized** variants
- New SOTA model loader using **Run:ai streamer**
- Optimizations to **WAN-2.2** given its popularity plus addition of native **VAE Upscaler** and optimized **pre-quantized** variants
- Updates to `rocm` and `xpu` backends
- Fixes, fixes, fixes... too many to list here!

View File

@ -164,8 +164,7 @@ def load_upscale_vae():
return
if hasattr(shared.sd_model.vae, '_asymmetric_upscale_vae'):
return # already loaded
cls = shared.sd_model.vae.__class__.__name__
if cls != 'AutoencoderKLWan':
if shared.sd_model.vae.__class__.__name__ != 'AutoencoderKLWan':
shared.log.warning('Video decode: upscale VAE unsupported')
return
@ -176,7 +175,7 @@ def load_upscale_vae():
vae_decode.requires_grad_(False)
vae_decode = vae_decode.to(device=devices.device, dtype=devices.dtype)
vae_decode.eval()
shared.log.debug(f'Decode: load={repo_id}')
shared.log.debug(f'Decode: load="{repo_id}"')
shared.sd_model.orig_vae = shared.sd_model.vae
shared.sd_model.vae = vae_decode
shared.sd_model.vae._asymmetric_upscale_vae = True # pylint: disable=protected-access