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 All, I Want To Run A Docker Image For Running Some Inference Code, And This Needs To Retrieve A Model From The Clearml Model Registry. So I Need To Give Access To The Clearml Server Inside The Image. What'S The Best Way To Do This? Via Env Vars Clearml

Hi all,
I want to run a docker image for running some inference code, and this needs to retrieve a model from the clearml model registry. So I need to give access to the clearml server inside the image. What's the best way to do this? Via env vars CLEARML_API_ACCESS_KEY and CLEARML_API_SECRET_KEY baked into the image, or this there a better way?

  
  
Posted 2 months ago
Votes Newest

Answers


Hi @<1649221402894536704:profile|AdventurousBee56> , sounds like a good way. You can also implement a clearml.conf in the image as well 🙂

  
  
Posted 2 months ago