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, Is There A Simple Way To

hi, is there a simple way to stop logging completely. E.g. I use ray-tune to launch thousands of trials, and I just want to record basic config stuff at the start, just to record the tuning run, but I definitely do not want any logging from the thousands of trials. Is there a simple way to disable logging? Couldn't find it in the docs. Thanks

  
  
Posted one year ago
Votes Newest

Answers 2


You can control it with auto_ arguments in the Task.init call
https://clear.ml/docs/latest/docs/references/sdk/task#taskinit

  
  
Posted one year ago

Thanks AgitatedDove14 yes I am able to adjust the auto_connect_... settings

  
  
Posted one year ago