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
Hello, I Am Struggling Understanding The Docs And Hope I Can Get A Quick Answer Here: Is It Possible To Utilise Multiple Gpus In Parallel For Hyperparameter Optimization For The Same Base Experiment Without The Pro Plan? I Started An Agent With Clearml-Ag

Hello, I am struggling understanding the docs and hope I can get a quick answer here: Is it possible to utilise multiple gpus in parallel for hyperparameter optimization for the same base experiment without the PRO plan? I started an agent with clearml-agent daemon --docker --gpus 0,1 on a dual gpu machine, but when I run a hyperparameter optimization task all single experiments are run sequential on gpu 0 only.

  
  
Posted 6 months ago
Votes Newest

Answers 3


--gpus 0,1 : I believe this basically say that your code launched by the agent has access to both GPUs and that is it. Now it is up to your code to choose which GPU to use and what not and how ...

  
  
Posted 6 months ago

what about having 2 agents, one on each GPU, on the same machine, serving the same queue ? So that when you enqueue, which ever agent (thus GPU) available will take the new task

  
  
Posted 6 months ago

Ah yes, genius, thanks @<1576381444509405184:profile|ManiacalLizard2>

  
  
Posted 6 months ago
479 Views
3 Answers
6 months ago
6 months ago
Tags