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
How To Update The Logging Level Of All Loggers In Clearml?

How to update the logging level of all loggers in clearml?

  
  
Posted 2 years ago
Votes Newest

Answers 5


Should be in the clearml.conf file as this is what the SDK is loading externally

  
  
Posted 2 years ago

Thanks you! Does this go as a root logging {} element in the main conf? outside SDK right?

  
  
Posted 2 years ago

yeah meant this, within clearml.conf:

logging {} sdk {}

  
  
Posted 2 years ago

yup 🙂

  
  
Posted 2 years ago

Hן TrickySheep9 , you can control that using the logging configuration section. This is loaded from the config file. See the default here: https://github.com/allegroai/clearml/blob/master/clearml/config/default/logging.conf

  
  
Posted 2 years ago