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/
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.
You can disable it if you want to. Sometimes it's useful to retrace your steps but it works without :)
. 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
Thanks for the answer.
So if I am not using remote machine can I disable this?
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 = false
BTW: why would you turn it off ?