Skip to content
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

Add: mlflow for experiment tracking #1059

Merged
merged 11 commits into from
Jan 9, 2024
4 changes: 3 additions & 1 deletion src/axolotl/core/trainer_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,9 @@ def build(self, total_num_steps):
False if self.cfg.ddp else None
)
training_arguments_kwargs["group_by_length"] = self.cfg.group_by_length
training_arguments_kwargs["report_to"] = "wandb" if self.cfg.use_wandb else None
training_arguments_kwargs["report_to"] = (
"wandb" if self.cfg.use_wandb else 'mlflow' if self.cfg.use_mlflow else None
winglian marked this conversation as resolved.
Show resolved Hide resolved
)
training_arguments_kwargs["run_name"] = (
self.cfg.wandb_name if self.cfg.use_wandb else None
)
Expand Down
Loading