Add info about turning off auto-logging (#84)

This commit is contained in:
pollfly
2021-10-11 09:52:14 +03:00
committed by GitHub
parent ac7f0bdb74
commit 1d43794c17
3 changed files with 30 additions and 7 deletions

View File

@@ -23,14 +23,16 @@ clearml-init
In ClearML, experiments are organized as [Tasks](../../fundamentals/task).
ClearML will automatically log your experiment and code once you integrate the ClearML [SDK](../../clearml_sdk.md) with your code.
At the beginning of your code, import the clearml package
ClearML will automatically log your experiment and code, including outputs and parameters from popular ML frameworks,
once you integrate the ClearML [SDK](../../clearml_sdk.md) with your code. To control what ClearML automatically logs, see this [FAQ](../../faq.md#controlling_logging).
At the beginning of your code, import the `clearml` package
```python
from clearml import Task
```
:::note
:::note Full Automatic Logging
To ensure full automatic logging it is recommended to import the ClearML package at the top of your entry script.
:::