You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the swift framework supports logging to Weights & Biases (wandb), but does not provide a CLI option to set a custom run name, like transformers does via the run_name parameter in TrainingArguments.
This makes it harder to organize and distinguish experiments in the W&B dashboard, especially when running multiple jobs via command line scripts.
Describe the feature
Currently, the
swift
framework supports logging to Weights & Biases (wandb), but does not provide a CLI option to set a custom run name, liketransformers
does via therun_name
parameter inTrainingArguments
.This makes it harder to organize and distinguish experiments in the W&B dashboard, especially when running multiple jobs via command line scripts.
Requested change
Add a new CLI argument:
Additional context
transformers.TrainingArguments.run_name
swift
(after implementation):swift sft --model qwen --run_name "exp_lr5e4_bs2" --other_args ...
The text was updated successfully, but these errors were encountered: