Unanswered
Hi, There! After Running A Task In Clearml, How Can I Use The Api To Get The Best Performing Output Model For That Task?
I Came Across This
Hi @<1614069770586427392:profile|FlutteringFrog26>
So since you have the Task id. you do:
task = Task.get_task("task id here")
Then to get the models
models = task.models["output]
the models is a list And a dict, if you want the lats one you do last_model = models[-1]
if you know the best model name you do model = models["best model"]
(notice the model name is the exact one you see in the UI. Once you have the model object you can get a copy with model.get_local_copy()
130 Views
0
Answers
one year ago
one year ago