From 94323a26a7ad97aae3eb5aea9d452332dc3b7deb Mon Sep 17 00:00:00 2001 From: comfyanonymous Date: Fri, 22 Nov 2024 10:51:31 -0500 Subject: [PATCH] Remove prints. --- comfy_extras/nodes_lt.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/comfy_extras/nodes_lt.py b/comfy_extras/nodes_lt.py index 17177b66..9d063937 100644 --- a/comfy_extras/nodes_lt.py +++ b/comfy_extras/nodes_lt.py @@ -152,7 +152,6 @@ class LTXVScheduler: mm = (max_shift - base_shift) / (x2 - x1) b = base_shift - mm * x1 sigma_shift = (tokens) * mm + b - print(sigma_shift) power = 1 sigmas = torch.where( @@ -170,7 +169,6 @@ class LTXVScheduler: stretched = 1.0 - (one_minus_z / scale_factor) sigmas[non_zero_mask] = stretched - print(sigmas) return (sigmas,)