Is it possible to set/change mlflow run name after run initial creation?

扶醉桌前 提交于 2019-12-11 03:38:44

问题


I could not find a way yet of setting the runs name after the first start_run for that run (we can pass a name there).

I Know we can use tags but that is not the same thing. I would like to add a run relevant name, but very often we know the name only after run evaluation or while we're running the run interactively in notebook for example.


回答1:


It is possible to edit run names from the MLflow UI. First, click into the run whose name you'd like to edit.

Then, edit the run name by clicking the dropdown next the run name (i.e. the downward-pointing caret in this image):

There's currently no stable public API for setting run names - however, you can programmatically set/edit run names by setting the tag with key mlflow.runName, which is what the UI (currently) does under the hood.



来源:https://stackoverflow.com/questions/57199472/is-it-possible-to-set-change-mlflow-run-name-after-run-initial-creation

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!