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
Hey, Is There A Way To Temporarily Turn Off Clearml Logging? I’M Using Pipeline And When Developing I Don’T Wand Them To Be Added To The Ui And Spam It. In Wandb There Is A Way To Do

Hey, Is there a way to temporarily turn off clearml logging?

I’m using pipeline and when developing i don’t wand them to be added to the UI and spam it.
in wandb there is a way to do wandb off and wandb on , anything similar?

  
  
Posted one year ago
Votes Newest

Answers 12


You can definitely turn off logging partially or completely: https://clear.ml/docs/latest/docs/clearml_sdk/task_sdk#automatic-logging

I'm not aware of changing this during the execution of the task (you'll have to set this in task.init) but you can manually log what you need after you (partially) turned off logging.

  
  
Posted one year ago

also, i don’t need to change it during execution, i want it for a specific run

  
  
Posted one year ago

It’s a lot of manual work that you need to remember to undo

  
  
Posted one year ago

I actually don't think that it's supported at the moment...I'll talk to the devs and see if that's something we can add to a future release

  
  
Posted one year ago

Yes, but it’s more complex because i’m using a pipeline… where i don’t explicitly call Task.init()

  
  
Posted one year ago

PricklyRaven28
You mean that even though you called Task.init(), nothing will show in the UI?

  
  
Posted one year ago

BTW, i would expect this to happen automtically when running “local” and “debug”

  
  
Posted one year ago

What you can do is run it in offline mode though 😄

  
  
Posted one year ago

Yeah I get what you're saying, but when developing ClearML we did not view it like that. when we run it locally or debug it, we thought of it more "This is running just on my local computer without an agent to make sure everything works before I use an agent to run the parts". Sorry that it confuses you 🙂

  
  
Posted one year ago

TimelyMouse69
Thanks for the reply, this is only regarding automatic logging, where i want to disable logging all together (avoiding the task being added to the UI)

  
  
Posted one year ago

My only suggestion is to maybe route it into a "debug_pipeline" project and then just delete it altogether when development is done? 🙂

  
  
Posted one year ago

My use case is developing the code, i don’t want to spam the UI

  
  
Posted one year ago
604 Views
12 Answers
one year ago
one year ago
Tags