From bb2482a213c552974dc52963062bcb42fe05abf3 Mon Sep 17 00:00:00 2001 From: SHYuanBest Date: Thu, 26 Feb 2026 05:29:07 +0000 Subject: [PATCH] fix calculate_shift --- src/diffusers/pipelines/helios/pipeline_helios.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/diffusers/pipelines/helios/pipeline_helios.py b/src/diffusers/pipelines/helios/pipeline_helios.py index 84521d537d..ceac7db0eb 100644 --- a/src/diffusers/pipelines/helios/pipeline_helios.py +++ b/src/diffusers/pipelines/helios/pipeline_helios.py @@ -141,7 +141,6 @@ def apply_schedule_shift( max_seq_len if max_seq_len is not None else 4096, base_shift if base_shift is not None else 0.5, max_shift if max_shift is not None else 1.15, - exp_max if exp_max is not None else 7.0, ) if is_exponential: mu = min(mu, math.log(exp_max))