mirror of
https://github.com/clearml/clearml-docs
synced 2025-02-07 13:21:46 +00:00
Fix code capitalization (#34)
This commit is contained in:
parent
cd12b8dfb8
commit
f849f4c10b
@ -26,7 +26,7 @@ ClearML will automatically log your experiment and code once you integrate the C
|
|||||||
At the begging of your code, import the clearml package
|
At the begging of your code, import the clearml package
|
||||||
|
|
||||||
```python
|
```python
|
||||||
From clearml import Task
|
from clearml import Task
|
||||||
```
|
```
|
||||||
|
|
||||||
:::note
|
:::note
|
||||||
@ -36,7 +36,7 @@ To ensure full automatic logging it is recommended to import the ClearML package
|
|||||||
Then initialize the Task object in your `main()` function, or the beginning of the script.
|
Then initialize the Task object in your `main()` function, or the beginning of the script.
|
||||||
|
|
||||||
```python
|
```python
|
||||||
Task = Task.init(project_name=”great project”, task_name=”best experiment”)
|
task = Task.init(project_name=”great project”, task_name=”best experiment”)
|
||||||
```
|
```
|
||||||
|
|
||||||
Task name is not unique, it's possible to have multiple experiments with the same name.
|
Task name is not unique, it's possible to have multiple experiments with the same name.
|
||||||
|
Loading…
Reference in New Issue
Block a user