add example for Task, multiple Tasks created in same code

This commit is contained in:
Revital 2021-04-01 13:22:14 +03:00 committed by Allegro AI
parent ee58f8c3ce
commit 30f366f23c

View File

@ -0,0 +1,9 @@
from clearml import Task
for i in range(3):
task = Task.init(project_name="same process, multiple tasks", task_name="Task #{}".format(i))
# Doing Task processing here
#
#
task.close()