Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
KuuCi committed Apr 16, 2024
1 parent ded6862 commit 9ca8b7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion composer/loggers/mlflow_logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def init(self, state: State, logger: Logger) -> None:

# Store the Composer run name in the MLFlow run tags so it can be retrieved for autoresume.
self.tags = self.tags or {}
self.tags['run_name'] = os.environ['RUN_NAME'] if 'RUN_NAME' in os.environ else state.run_name
self.tags['run_name'] = os.environ.get('RUN_NAME', state.run_name)

# Adjust name and group based on `rank_zero_only`.
if not self._rank_zero_only:
Expand Down

0 comments on commit 9ca8b7d

Please sign in to comment.