Remove extraneous f character from f-string. (#679)
Makes tracking experiment names confusion, especially when using uuids.
This commit is contained in:
parent
db6b404748
commit
1969c6cc2a
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue