From 9575e0632afb5f02833b33e4d4f1da37274779e7 Mon Sep 17 00:00:00 2001 From: "Vinh H. Pham" Date: Tue, 13 Jan 2026 12:01:03 +0700 Subject: [PATCH] Apply suggestions from code review Co-authored-by: dg845 <58458699+dg845@users.noreply.github.com> --- src/diffusers/pipelines/ltx2/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/diffusers/pipelines/ltx2/utils.py b/src/diffusers/pipelines/ltx2/utils.py index bd0ae08c10..7e143edc9b 100644 --- a/src/diffusers/pipelines/ltx2/utils.py +++ b/src/diffusers/pipelines/ltx2/utils.py @@ -1,4 +1,4 @@ -DISTILLED_SIGMA_VALUES = [1.0, 0.99375, 0.9875, 0.98125, 0.975, 0.909375, 0.725, 0.421875, 0.0] +DISTILLED_SIGMA_VALUES = [1.0, 0.99375, 0.9875, 0.98125, 0.975, 0.909375, 0.725, 0.421875] # Reduced schedule for super-resolution stage 2 (subset of distilled values) -STAGE_2_DISTILLED_SIGMA_VALUES = [0.909375, 0.725, 0.421875, 0.0] +STAGE_2_DISTILLED_SIGMA_VALUES = [0.909375, 0.725, 0.421875]