Skip to content

Commit

Permalink
lowercase or
Browse files Browse the repository at this point in the history
  • Loading branch information
jerrychen109 committed Feb 22, 2024
1 parent 9911f46 commit 3449edc
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 @@ -163,7 +163,7 @@ def init(self, state: State, logger: Logger) -> None:
assert self._experiment_id is not None
existing_runs = mlflow.search_runs(
experiment_ids=[self._experiment_id],
filter_string=f'tags.run_name = "{state.run_name}" OR tags.composer_run_name = "{state.run_name}"',
filter_string=f'tags.run_name = "{state.run_name}" or tags.composer_run_name = "{state.run_name}"',
output_format='list')
if len(existing_runs) > 0:
self._run_id = existing_runs[0].info.run_id
Expand Down

0 comments on commit 3449edc

Please sign in to comment.