From 0143b61a4ae9ecff4f06e66f01bcdeec393d495b Mon Sep 17 00:00:00 2001 From: Harry Wang Date: Wed, 23 Dec 2020 17:39:31 -0500 Subject: [PATCH] fix task init command in readme (#267) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d42ac7b5..83abfecd 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ pip install clearml Add two lines to your code: ```python from clearml import Task -task = Task(project_name='examples', task_name='hello world') +task = Task.init(project_name='examples', task_name='hello world') ``` You are done, everything your process outputs is now automagically logged into ClearML.