diff --git a/CHANGELOG.md b/CHANGELOG.md index 06e3c151b..6c08fb514 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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! diff --git a/modules/video_models/video_load.py b/modules/video_models/video_load.py index bbbc8209c..cc42886d8 100644 --- a/modules/video_models/video_load.py +++ b/modules/video_models/video_load.py @@ -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