Merge pull request #4006 from Uminosachi/scheduler-kwargs

Set scheduler_specific_kwargs to get_scheduler
This commit is contained in:
hoshi-hiyouga 2024-06-03 19:27:53 +08:00 committed by GitHub
commit 0f01500b68
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -379,6 +379,7 @@ def create_custom_scheduler(
optimizer=optimizer_dict[param],
num_warmup_steps=training_args.get_warmup_steps(num_training_steps),
num_training_steps=num_training_steps,
scheduler_specific_kwargs=training_args.lr_scheduler_kwargs,
)
def scheduler_hook(param: "torch.nn.Parameter"):