diff --git a/CHANGELOG.md b/CHANGELOG.md index f784e5f56..742bf342b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,10 +38,15 @@ Plus support for CogView-4, new CLiP models, improvements to remote VAE, additio - **LoRA**: support for *Hunyuan, LTX, WAN, Mochi, Cog* - additional key points: - all models are auto-downloaded upon first use + uses *system paths -> huggingface* folder + - support for many video types - optional video interpolation while creating video files - optional video preview in ui + present if video output is selected - support for balanced offloading and model offloading + uses system settings - on-the-fly quantization: *BnB, Quanto, TorchAO* + uses system settings, granular for *transformer* and *text-encoder* separately - different video models support different video resolutions, frame counts, etc. and may require specific settings - see model links for details - see *ToDo/Limitations* section for additional notes diff --git a/modules/processing_diffusers.py b/modules/processing_diffusers.py index 366a62995..684484217 100644 --- a/modules/processing_diffusers.py +++ b/modules/processing_diffusers.py @@ -74,7 +74,7 @@ def process_base(p: processing.StableDiffusionProcessing): true_cfg_scale=p.diffusers_guidance_rescale, denoising_start=0 if use_refiner_start else p.refiner_start if use_denoise_start else None, denoising_end=p.refiner_start if use_refiner_start else 1 if use_denoise_start else None, - num_frames=getattr(p, 'frames', None), + num_frames=getattr(p, 'frames', 1), output_type='latent', clip_skip=p.clip_skip, desc='Base',