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
Dumb Question I Know But I Have Code Running On My Local Machine And I’M Using The Remotely_Execute() Call In There So It’D Go To My Gpu Machine

dumb question I know but I have code running on my local machine and I’m using the remotely_execute() call in there so it’d go to my GPU machine

  
  
Posted 21 hours ago
Votes Newest

Answers 2


You don't need agent on your local machine.
You want an agent running on the GPU machine.
Local code will create an experiment in ClearML Server, then run up to the line remotely_execute() then stop
Once local code stop, the Clearml Server will take over and enqueue the experiment to the prescribe queue
The agent on the GPU see there is a experiment on its queue and then pull it and execute it. This time, clearml lib magic will make the code on the GPU machine, launched by the agent, run pass remotely_execute()

  
  
Posted 20 hours ago

amazing answer thank you so much

  
  
Posted 20 hours ago
6 Views
2 Answers
21 hours ago
6 hours ago
Tags