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 Can I Configure

How can I configure clearml Python logging, e.g., add a custom handler with my formatter?

Currently, the output is unformatted…
ClearML Task: created new task id=34253245324 2022-05-24 10:19:45,122 - clearml.Task - INFO - No repository found, storing script code instead ClearML new version available: upgrade to v1.4.1 is recommended! ClearML results page:

  
  
Posted one year ago
Votes Newest

Answers 6


I really appreciate your responsiveness! Thank you

  
  
Posted one year ago

Perfect. Thanks!

  
  
Posted one year ago

it can be placed and modified as follows in the clearml.conf :
logging { version: 1 disable_existing_loggers: 0 loggers { clearml { level: INFO } boto { level: WARNING } "boto.perf" { level: WARNING } botocore { level: WARNING } boto3 { level: WARNING } google { level: WARNING } urllib3 { level: WARNING } } }

  
  
Posted one year ago

The default is this:
{ version: 1 disable_existing_loggers: 0 loggers { clearml { level: INFO } boto { level: WARNING } "boto.perf" { level: WARNING } botocore { level: WARNING } boto3 { level: WARNING } google { level: WARNING } urllib3 { level: WARNING } } }

  
  
Posted one year ago

I can’t find this in the docs 🙈 Can you please send me the section?

  
  
Posted one year ago

Hi CourageousKoala93 , clearml has a logging configuration section which can be used for this purpose - this is loaded directly into the python logging module (using dictConfig)

  
  
Posted one year ago
526 Views
6 Answers
one year ago
one year ago
Tags