From f849f4c10b210f169801eb7aec6dc9ebb186989b Mon Sep 17 00:00:00 2001 From: pollfly <75068813+pollfly@users.noreply.github.com> Date: Mon, 9 Aug 2021 13:18:11 +0300 Subject: [PATCH] Fix code capitalization (#34) --- docs/getting_started/ds/ds_first_steps.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting_started/ds/ds_first_steps.md b/docs/getting_started/ds/ds_first_steps.md index 6f776e9c..57a52507 100644 --- a/docs/getting_started/ds/ds_first_steps.md +++ b/docs/getting_started/ds/ds_first_steps.md @@ -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 ```python -From clearml import Task +from clearml import Task ``` :::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. ```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.