Skip to content

Commit

Permalink
Remove step in log_image for MLFlow (#3601)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvpatel2000 authored Sep 4, 2024
1 parent 998198d commit 7d34d66
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 @@ -601,7 +601,7 @@ def log_images(
assert isinstance(self._run_id, str)
self._mlflow_client.log_image(
image=image,
key=f'{name}_{step}_{im_ind}',
key=f'{name}_{im_ind}',
run_id=self._run_id,
step=step,
)
Expand Down

0 comments on commit 7d34d66

Please sign in to comment.