Open MFreidank opened 3 years ago
Hi @MFreidank
Good point and you are in luck, the next ClearML version will support multi-models 🎉 (finally) Basically instead of single model, a Task will be able to hold multiple models in a key/value alike structure, where the key is the model filename (or manually set model name)
Until 0.18 is out (hopefully towards the end of the month), here is what you can do:
Currently multi models are stored in the ClearML artifactory and each one has a unique ID and a link back to the creating Task.
The missing piece if for the Task to link back to multiple models, based on their names (currently it links back to the last one).
That said, if you do Task.get_task('task_id_here').models['output']
you will get a list of all the output model objects, see docs and here. With the Model object you can query/set the name/tags/url etc. of the model itself.
Specifically regrading your questions:
What do think ?
Hello there,
I was wondering what the best way to manage an ensemble of models through clearML is? There seem to be assumptions that a single task maps to a single output model, see #224.
I'd like to understand the best way to:
Could you please help me understand how this could be done?
Many thanks in advance and kind regards, MFreidank