From 702c8a9a201e63fe6a00e61d2665329b0c92d064 Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Thu, 30 Oct 2025 20:07:57 -0400 Subject: [PATCH] lint Signed-off-by: Vladimir Mandic --- CHANGELOG.md | 9 +++++---- pipelines/chrono/pipeline_chronoedit.py | 2 +- pipelines/model_chrono.py | 3 ++- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cf5837105..a35bbe217 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,14 @@ # Change Log for SD.Next -## Update for 2025-10-30 +## Update for 2025-10-31 -### Highlights for 2025-10-30 +### Highlights for 2025-10-31 Less than 2 weeks since last release, here's a service-pack style update with a lot of fixes and improvements: - Reorganization of **Reference Models** into *Base, Quantized, Distilled and Community* sections for easier navigation and introduction of optimized **pre-quantized** variants for many popular models - use this as your quick start! -- New models: **HunyuanImage 2.1** capable of 2K images natively, **HunyuanImage 3.0** large unified multimodal autoregressive model, +- New models: + **HunyuanImage 2.1** capable of 2K images natively, **HunyuanImage 3.0** large unified multimodal autoregressive model, **ChronoEdit** that re-purposes temporal consistency of generation for image editing **Pony 7** based on AuraFlow architecture, **Kandinsky 5** 10s video models - New **offline mode** to use previously downloaded models without internet connection @@ -21,7 +22,7 @@ Less than 2 weeks since last release, here's a service-pack style update with a [ReadMe](https://github.com/vladmandic/automatic/blob/master/README.md) | [ChangeLog](https://github.com/vladmandic/automatic/blob/master/CHANGELOG.md) | [Docs](https://vladmandic.github.io/sdnext-docs/) | [WiKi](https://github.com/vladmandic/automatic/wiki) | [Discord](https://discord.com/invite/sd-next-federal-batch-inspectors-1101998836328697867) | [Sponsor](https://github.com/sponsors/vladmandic) -### Details for 2025-10-30 +### Details for 2025-10-31 - **Reference** networks section is now split into actual *Base* models plus: - **Quantized**: pre-quantized variants of the base models using SDNQ-SVD quantization for optimal quality and smallest possible resource usage diff --git a/pipelines/chrono/pipeline_chronoedit.py b/pipelines/chrono/pipeline_chronoedit.py index de439a359..794911fa7 100644 --- a/pipelines/chrono/pipeline_chronoedit.py +++ b/pipelines/chrono/pipeline_chronoedit.py @@ -761,4 +761,4 @@ class ChronoEditPipeline(DiffusionPipeline, WanLoraLoaderMixin): if not return_dict: return (video,) - return WanPipelineOutput(frames=video) \ No newline at end of file + return WanPipelineOutput(frames=video) diff --git a/pipelines/model_chrono.py b/pipelines/model_chrono.py index 1f528dcac..8eca2f47f 100644 --- a/pipelines/model_chrono.py +++ b/pipelines/model_chrono.py @@ -37,11 +37,12 @@ def load_chrono(checkpoint_info, diffusers_load_config=None): 'num_temporal_reasoning_steps': shared.opts.model_chrono_temporal_steps, 'output_type': 'np', } + # reference: if shared.opts.model_chrono_temporal_steps > 0: pipe.task_args['num_frames'] = 29 pipe.task_args['enable_temporal_reasoning'] = True else: - pipe.task_args['num_frames'] = 29 + pipe.task_args['num_frames'] = 5 pipe.task_args['enable_temporal_reasoning'] = False del text_encoder