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
Is There A Way To Launch A Clearml-Task From The Cli, Without Specifying Any Requirements.Txt? I Want The Script To Run Locally, But Just Record Metrics On Clearml-Server

Is there a way to launch a clearml-task from the CLI, without specifying any requirements.txt?

I want the script to run locally, but just record metrics on clearml-server

  
  
Posted one year ago
Votes Newest

Answers 4


For example
--packages "tqdm>=2.1" "scikit-learn"

  
  
Posted one year ago

I want the script to be agnostic to whether it is run using clearml or not, with a particular queue or not

  
  
Posted one year ago

Hi @<1535069219354316800:profile|PerplexedRaccoon19> , why not just run it as python script.y ?

  
  
Posted one year ago

Yes, you can also manually specify packages using --packages flag 🙂

  
  
Posted one year ago
663 Views
4 Answers
one year ago
one year ago
Tags