diff --git a/CHANGELOG.md b/CHANGELOG.md index 12627f6bd..28d098a4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log for SD.Next -## Update for 2025-09-25 +## Update for 2025-09-28 - **Models** - [WAN 2.2 14B VACE](https://huggingface.co/alibaba-pai/Wan2.2-VACE-Fun-A14B) @@ -53,6 +53,7 @@ - **video** support for configurable multi-stage models such as WAN-2.2-14B - **video** new LTX model selection - replace `pynvml` with `nvidia-ml-py` for gpu monitoring + - update **loopback** script with radon seed option, thanks @rabanti - **Fixes** - ui: fix image metadata display when switching selected image in control tab - framepack: add explicit hf-login before framepack load diff --git a/scripts/loopback.py b/scripts/loopback.py index 571f67665..e24683ce6 100644 --- a/scripts/loopback.py +++ b/scripts/loopback.py @@ -82,11 +82,11 @@ class Script(scripts_manager.Script): if randomize_seed: p.seed = random.randrange(4294967294) p.all_seeds = [p.seed] - log.info(f'Setting random seed {p.seed} for loopback iteration {i}') p.seed = processed.seed + 1 # why? p.denoising_strength = calculate_denoising_strength(i + 1) last_image = processed.images[0] p.init_images = [last_image] + log.info(f'Loopback: iteration={i} seed={p.seed} curve={denoising_curve} strength={p.denoising_strength}:{final_denoising_strength}') if initial_batch_count == 1: history.append(last_image) all_images.append(last_image) diff --git a/wiki b/wiki index bd9905932..77e5745f7 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit bd990593287f36d4c76828a2db0eaa019ca0630f +Subproject commit 77e5745f7a7b8ac2f9d029c6ebb83c954be56006