From 3876343fad5b710a11fcc381569927b89ba42904 Mon Sep 17 00:00:00 2001 From: Kohya S <52813779+kohya-ss@users.noreply.github.com> Date: Sun, 21 Sep 2025 13:09:38 +0900 Subject: [PATCH] fix: remove print statement for guidance rescale in AdaptiveProjectedGuidance --- library/hunyuan_image_utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/library/hunyuan_image_utils.py b/library/hunyuan_image_utils.py index 3b0d68fd..8e95925c 100644 --- a/library/hunyuan_image_utils.py +++ b/library/hunyuan_image_utils.py @@ -424,7 +424,6 @@ class AdaptiveProjectedGuidance: ) if self.guidance_rescale > 0.0: - print(f"Applying guidance rescale with factor {self.guidance_rescale} at step {step}") pred = rescale_noise_cfg(pred, pred_cond, self.guidance_rescale) return pred