Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hey Again, So I Asked About Archiving A

Hey again, so i asked about archiving a model via code, and was given the answer about archiving tasks which will indeed archive my model but assuming i'm retrieving a model in a different task, and want to archive just the model, is there such an option?

  
  
Posted 3 years ago
Votes Newest

Answers 3


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) `

  
  
Posted 3 years ago

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?

  
  
Posted 3 years ago

Sure SharpDove45 ,
from clearml import Model model = Model('model_id_aabbcc') model.system_tags += ['archived']

  
  
Posted 3 years ago
486 Views
3 Answers
3 years ago
one year ago
Tags