Skip to content

feat: add run name support #4072

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion swift/llm/argument/train_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,9 @@ def _add_version(self):
if is_master():
os.makedirs(self.output_dir, exist_ok=True)

if self.run_name is None:
self.run_name = self.output_dir

self.training_args.output_dir = self.output_dir
self.training_args.run_name = self.output_dir
self.training_args.run_name = self.run_name
self.training_args.logging_dir = self.logging_dir