This commit is contained in:
George Shaikovski 2024-11-19 23:12:06 +00:00 committed by GitHub
commit 2a21aae265
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -80,7 +80,7 @@ class LinearWarmupCosineLRScheduler:
total_cur_step = cur_epoch * self.iters_per_epoch + cur_step
if total_cur_step < self.warmup_steps:
warmup_lr_schedule(
step=cur_step,
step=total_cur_step,
optimizer=self.optimizer,
max_step=self.warmup_steps,
init_lr=self.warmup_start_lr,