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 Guys, Are There Any Ways To Suppress Clearml’S Console Messages? I’M Not Interested In Messages Like This, Especially About Uploading Models. I Tried Some Stuff With Loggers ” Logging.Basicconfig(Format=‘%(Name)S - %(Levelname)S - %(Message)S’, Level=

Hi guys, are there any ways to suppress ClearML’s console messages? I’m not interested in messages like this, especially about uploading models. I tried some stuff with loggers

logging.basicConfig(format=‘%(name)s - %(levelname)s - %(message)s’, level= logging.INFO )
logging.getLogger(‘clearml’).setLevel(logging.CRITICAL)
logging.getLogger(‘s3transfer’).setLevel(logging.CRITICAL)

no changes

Please help, clearml a good tool, but I want to decide, what kind of messages I want to see in jupyter/console.
image

  
  
Posted 2 months ago
Votes Newest

Answers


Hi @<1715900760333488128:profile|ScaryShrimp33> ! You can set the log level by setting the CLEARML_LOG_LEVEL env var before importing clearml. For example:

import os
os.environ["CLEARML_LOG_LEVEL"] = "ERROR"  # or str(logging.CRITICAL/whatever level) also works 

Note that the ClearML Monitor warning is most likely logged to stdout, in which case this message can't really be suppressed, but model upload related message should be

  
  
Posted 2 months ago
238 Views
1 Answer
2 months ago
2 months ago
Tags