Remove extraneous f character from f-string. (#679)

Makes tracking experiment names confusion, especially when using uuids.
This commit is contained in:
Ayla Khan 2020-01-13 20:11:04 -07:00 committed by William Falcon
parent db6b404748
commit 1969c6cc2a
1 changed files with 1 additions and 1 deletions

View File

@ -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)