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
When I Run Multiple Tasks Simultaneously In The Same Projects Locally, If One Task Finishes Before Others, The Other Tasks Are Gonna Be Automatically Terminated. Is This The Expected Behavior? If Not, What'Re The Possible Causes, And How To Fix Them? Than

When I run multiple tasks simultaneously in the same projects locally, if one task finishes before others, the other tasks are gonna be automatically terminated. Is this the expected behavior? If not, what're the possible causes, and how to fix them? Thanks in advance.

  
  
Posted 11 months ago
Votes Newest

Answers 3


I have ClearML set up locally. The way to run the task is straightforward: I create the task with Task.init() at the very top of the file, do things (inference, save outputs, etc.), upload outputs with task.upload_artifact(), and then end the script with task.mark_completed().

  
  
Posted 11 months ago

Hi @<1523701266142728192:profile|DeterminedOwl36> , this should not happen - how are you running the tasks locally?

  
  
Posted 11 months ago

I didn't call task.execute_remotely() so it didn't push the task to the workers

  
  
Posted 11 months ago
637 Views
3 Answers
11 months ago
11 months ago
Tags