We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a944e77 commit ecd87feCopy full SHA for ecd87fe
src/lightning/pytorch/loggers/mlflow.py
@@ -178,7 +178,7 @@ def experiment(self) -> "MlflowClient":
178
179
if self._experiment_id is None:
180
expt = self._mlflow_client.get_experiment_by_name(self._experiment_name)
181
- if expt is not None:
+ if expt is not None and expt.lifecycle_stage != 'deleted':
182
self._experiment_id = expt.experiment_id
183
else:
184
log.warning(f"Experiment with name {self._experiment_name} not found. Creating it.")
0 commit comments