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
Quest About

Quest about clearml-task

I found an example from documentation, how can I pass an argument without value? For example, my entrypoint looks like this original
python cli.py run --a=1

clearml-task seems does not allow me passing the run argument without value

clearml-task --project keras_examples --name remote_test --repo --script /webinar-0620/keras_mnist.py --args batch_size=64 epochs=1 --queue default
In addition, I have questions about how clearml-agent handles the data. The submitted job would automatically download data from internal data repository, but it will be time consuming if data is re-downloaded every time. Does ClearML caching the data somewhere?

  
  
Posted 2 years ago
Votes Newest

Answers


clearml-task

 seems does not allow me passing the 

run

 argument without value

EnviousStarfish54 did you try --args run=True
I'm assuming run is a boolean of a sort ?

a. The submitted job would automatically download data from internal data repository, but it will be time consuming if data is re-downloaded every time. Does ClearML caching the data somewhere?

What do you mean by the agent will download the data ? are you referring to Dataset ?

  
  
Posted 2 years ago
490 Views
1 Answer
2 years ago
one year ago
Tags