Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hi Everyone! I’M Really Glad Clearml Exists And Think You Guys Are Doing Fantastic Work!

πŸ‘‹ 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?

  
  
Posted 10 months ago
Votes Newest

Answers


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

  
  
Posted 10 months ago
585 Views
1 Answer
10 months ago
10 months ago
Tags