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 2 years ago
Votes Newest

Answers 12


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 2 years ago

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

  
  
Posted 2 years ago

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

  
  
Posted 2 years 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 2 years 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 2 years ago

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

  
  
Posted 2 years 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 2 years ago

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

  
  
Posted 2 years ago

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

  
  
Posted 2 years ago

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 2 years ago

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

  
  
Posted 2 years ago

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

  
  
Posted 2 years ago
1K Views
12 Answers
2 years ago
one year ago
Tags