mirror of
https://github.com/clearml/clearml
synced 2025-02-07 05:18:50 +00:00
add example for Task, multiple Tasks created in same code
This commit is contained in:
parent
ee58f8c3ce
commit
30f366f23c
9
examples/advanced/multiple_tasks_single_process.py
Normal file
9
examples/advanced/multiple_tasks_single_process.py
Normal 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()
|
Loading…
Reference in New Issue
Block a user