were you able to reproduce it CostlyOstrich36 ?
So I had an issue that it didn't add the tags for some reason. There was no error, just that there were no tags on the model.
Looks decent, give it a try and update us it's working 🙂
VexedCat68 , just making sure, when talking about tags for models, you mean the tags viewable in the 'models' tab in UI, correct?
I basically had to set the tag manually in the UI
Please try like this model.tags=['Test']
and not with append
I'm using clearml installed via pip in a conda env. Do I find this file inside the environment directory?
Doesn't matter how many times I run this code, it'll always give this same output. The tag gets appended to the list but isn't saved. Unless there's something else I'm supposed to do as well.
adding tags this way to a Dataset object works fine. This issue only occured when doing this to a model.
I'm on windows rn, and I work with clearml on ubuntu. I think it's 1.1.5rc4
I wasn't able to reproduce it on my side. Can you try the following?
In clearml/examples/reporting/mode_config.py
Under line 45:OutputModel().update_weights('my_best_model.bin')
Add the following:output_model = task.models['output'][-1]
output_model.tags=['deployed']
And check in the UI if you get a tag on the model
Interesting. I'll try to reproduce and see if it occurs to me as well 🙂