Sure this is basically REST query 🙂
` from clearml.backend_api.session.client import APIClient
client = APIClient()
models = client.models.get_all(name='regexp', tags=['demo'], project=['project_id'])
print(models) `
Awesome, Thanks! if i may ask another question, is there a way to view all the models a in project? and maybe filter by system_tags to find archived ones?
Sure SharpDove45 ,from clearml import Model model = Model('model_id_aabbcc') model.system_tags += ['archived']