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! First Of All, Huge Thanks To The Clearml Team For This Wonderful Tool. I Wish I Knew It Earlier To Use It For My Ml/Dl Projects! I'Ve A Question Regarding The

Hi everyone!
First of all, huge thanks to the ClearML team for this wonderful tool. I wish I knew it earlier to use it for my ML/DL projects!
I've a question regarding the Task.execute_remotely() function of the ClearML SDK. When running locally, this method enqueue the task on the server for it to be picked by an agent and run remotely by the ClearML agent, and stop the local Python process. Is there something similar, but to just upload the task on the server and leave it in 'Draft' mode (without putting it into a queue basically), so I can, for example, add a custom setup shell script, or Docker image through the web UI before enqueueing it?

  
  
Posted 11 months ago
Votes Newest

Answers 2


Oh, you're right, that's exactly what I was looking for. Thanks!

  
  
Posted 11 months ago

I believe you should be able to set the queue_name parameter to None to accomplish this.

  
  
Posted 11 months ago
678 Views
2 Answers
11 months ago
11 months ago
Tags