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 There, I Was Wondering If There Are Any Examples Of Initializing Clearml Inside Of A Container And Then Adding The Credentials Later? Or Is It Possible To Initialize Clearml Outside Of Using

Hi there, I was wondering if there are any examples of initializing clearml inside of a container and then adding the credentials later? Or is it possible to initialize clearml outside of using clearml-init ?

  
  
Posted 11 months ago
Votes Newest

Answers 3


for reference, I am using argoworkflows to schedule training of yolov5 (using yolov5's docker image) and would like to use yolov5's built-in clearml logger. Inside of the container I have access to the access tokens and secret through my own api, but need to properly initialize clearml before scheduling training.

  
  
Posted 11 months ago

Hi @<1570220838811078656:profile|NonsensicalBat51> , you can simply copy your clearml.conf file into the container, clearml-init simply generates the file.

  
  
Posted 11 months ago

Thanks! I ended up getting it working by setting environment variables

  
  
Posted 11 months ago
513 Views
3 Answers
11 months ago
11 months ago
Tags