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, I'M Using Clearml 1.16.1 To Launch A Multi Node Task Using

Hi, I'm using ClearML 1.16.1 to launch a multi node task using task.launch_multi_node() with a self-hosted ClearML server and workers. As I understand it, the total_num_nodes argument should include the master node and I shouldn't need any differing code on the master/child (at least going off of the examples in the docs). However, when I run the experiment, for total_num_nodes=2 , I get 3 tasks created in total. Any ideas?
image
image
image

  
  
Posted 3 months ago
Votes Newest

Answers


Hi @<1709015393701466112:profile|ScatteredPeacock14>

I get 3 tasks created in total. Any ideas?

Could it be an old instance of the same Task?
Notice the for loop starts from 1 so it does include the master node:
None

  
  
Posted 3 months ago