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
Hi! I See The Following In The Docs

Hi! I see the following in the docs

https://clear.ml/docs/latest/docs/references/sdk/model_model/#modelquery_models

But I get AttributeError: type object 'Model' has no attribute 'query_models' . WTF? clearml version is 1.1.1

If the version is too old, then how can I fetch a model from the storage (e.g. by project_name and model_name) ?

  
  
Posted one year ago
Votes Newest

Answers 3


SuccessfulKoala55 sorry, that was a bug on my side. It was just referring to another class named Model

  
  
Posted one year ago

Seems that just initializing InputModel works nicely.

  
  
Posted one year ago

MelancholyElk85 can you share a code snippet?

  
  
Posted one year ago