From 9ac9622f7c013d33c709e16e713c17cf908da310 Mon Sep 17 00:00:00 2001 From: nandanadileep Date: Fri, 12 Jun 2026 08:50:53 +0000 Subject: [PATCH] Fix #13094: fix: correct Z-Image guidance scale threshold from > 1 to > Signed-off-by: nandanadileep --- examples/community/pipeline_z_image_differential_img2img.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/community/pipeline_z_image_differential_img2img.py b/examples/community/pipeline_z_image_differential_img2img.py index 6309e91abbdd..bf60faf46f3e 100644 --- a/examples/community/pipeline_z_image_differential_img2img.py +++ b/examples/community/pipeline_z_image_differential_img2img.py @@ -432,7 +432,7 @@ def guidance_scale(self): @property def do_classifier_free_guidance(self): - return self._guidance_scale > 1 + return self._guidance_scale > 0 @property def joint_attention_kwargs(self):