mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-09-09 11:32:07 +08:00
Remove extraneous f character from f-string. (#679)
Makes tracking experiment names confusion, especially when using uuids.
This commit is contained in:
committed by
William Falcon
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)
|
||||
|
||||
Reference in New Issue
Block a user