Hi GrittyKangaroo27 ,
By default, ClearML publishes the last output model when publishing a task - the reasoning it that this is the latest model and represents the result.
Do you publish you task programmatically (i.e. by calling task.publish()
)?
I see... Well, currently this will only publish the latest model. You can publish the other models programmatically using something like:for model in task.models.output[:-1]: model.publish()
If the use-case is important to you, please open a GitHub issue with a feature request š