From 1969c6cc2ac58516130dc85d9fbd9c9f7918c98c Mon Sep 17 00:00:00 2001 From: Ayla Khan <1399377+a-y-khan@users.noreply.github.com> Date: Mon, 13 Jan 2020 20:11:04 -0700 Subject: [PATCH] Remove extraneous f character from f-string. (#679) Makes tracking experiment names confusion, especially when using uuids. --- pytorch_lightning/logging/mlflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytorch_lightning/logging/mlflow.py b/pytorch_lightning/logging/mlflow.py index fde2945b27..5769693d6c 100644 --- a/pytorch_lightning/logging/mlflow.py +++ b/pytorch_lightning/logging/mlflow.py @@ -59,7 +59,7 @@ class MLFlowLogger(LightningLoggerBase): if expt: self._expt_id = expt.experiment_id else: - logger.warning(f"Experiment with name f{self.experiment_name} not found. Creating it.") + logger.warning(f"Experiment with name {self.experiment_name} not found. Creating it.") self._expt_id = self._mlflow_client.create_experiment(name=self.experiment_name) run = self._mlflow_client.create_run(experiment_id=self._expt_id, tags=self.tags)