Hi @<1638712141588467712:profile|ExuberantTurtle48> , I think you can use Task.create()
to write similar code - None
However I would suggest you also investigate the pipelines
π Hi everyone! Iβm really glad ClearML exists and think you guys are doing fantastic work!
β I have question regarding remote execution. What I essentially would like to do is something like this:
from clearml import Task
def do_something_remotely():
print("Done something remotely!")
for i in range(10):
task = Task.init(project_name="dummy", task_name=f"dummy_{i}")
task.execute_remotely(queue_name="dummy_queue")
do_something_remotely()
and I would like do_something_remotely
to be added to the queue 10 times, each with a different task name. So far, this does not really work because the script exits after scheduling the first taskβ¦ π€
π Can anyone help?
Hi @<1638712141588467712:profile|ExuberantTurtle48> , I think you can use Task.create()
to write similar code - None
However I would suggest you also investigate the pipelines