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 All

Hey all 🙂 ,
I tried to use Clearml in my Jupyter notebook for the first time. And I saw that it upload the notebook it self as notebook. Does it is normal? There is a way to disable it?

  
  
Posted 2 years ago
Votes Newest

Answers 6


So if I am not using remote machine can I disable this?

yes I think you can, add to your clearml.conf
sdk.development.store_jupyter_notebook_artifact = falseBTW: why would you turn it off ?

  
  
Posted 2 years ago

Thanks a lot…
I like to disable it since for now I log all the thinks I need to reproduce and run only on my local machine.

  
  
Posted 2 years ago

I think if you use explicit logging it only logs things you've selected but I'm not entirely sure
https://clear.ml/docs/latest/docs/guides/reporting/clearml_logging_example/

  
  
Posted 2 years ago

You can disable it if you want to. Sometimes it's useful to retrace your steps but it works without :)

  
  
Posted 2 years ago

Thanks for the answer.
So if I am not using remote machine can I disable this?

  
  
Posted 2 years ago

. And I saw that it upload the notebook it self as notebook. Does it is normal? There is a way to disable it?

Hi FriendlyElk26
Yes this is normal, it backups your notebook as well as converts it into python code (see "Execution - uncommitted changes" so that later the clearml-agent will be able to run it for you on remote machines.
You can also use task.connect({"param": "value") to expose arguments to use in the notebook so that later you will be able to change them from the UI and launch on remote machines

  
  
Posted 2 years ago