任何地方都没有记录永久删除实验。我正在使用带有后端 postgres db 的 Mlflow
这是我运行的:
client = MlflowClient(tracking_uri=server)
client.delete_experiment(1)
Run Code Online (Sandbox Code Playgroud)
这将删除实验,但是当我运行一个与我刚刚删除的实验同名的新实验时,它将返回此错误:
mlflow.exceptions.MlflowException: Cannot set a deleted experiment 'cross-sell' as the active experiment. You can restore the experiment, or permanently delete the experiment to create a new one.
Run Code Online (Sandbox Code Playgroud)
我在文档中找不到任何显示如何永久删除所有内容的地方。