From e1f0b7e255922b4bc0c6f04e58fca1bef23ebba8 Mon Sep 17 00:00:00 2001 From: Daniel Gu Date: Tue, 30 Dec 2025 00:38:51 +0100 Subject: [PATCH] Fix typo when applying scheduler fix in T2V inference script --- scripts/ltx2_test_full_pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ltx2_test_full_pipeline.py b/scripts/ltx2_test_full_pipeline.py index 6d7317ea03..37a649d5ea 100644 --- a/scripts/ltx2_test_full_pipeline.py +++ b/scripts/ltx2_test_full_pipeline.py @@ -186,7 +186,7 @@ def main(args): time_shift_type = pipeline.scheduler.config.time_shift_type fixed_scheduler = FlowMatchEulerDiscreteScheduler.from_config( pipeline.scheduler.config, - dynamic_shifting=False, + use_dynamic_shifting=False, shift=math.exp(max_shift) if time_shift_type == "exponential" else max_shift, ) pipeline.scheduler = fixed_scheduler