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 Command Line Interface That Lets You Query And Download Models From The Clearml Model Registry The Way You Can With Mlflow? Example:

Is there a command line interface that lets you query and download models from the ClearML model registry the way you can with MLFlow? Example:

# search for the model version that should be deployed
mlflow search --experiment-name <experiment_name> --query "tags.is_deployed=true" --format json

# download the best one
mlflow models download -m <run_id> -o <output_directory>

# use other CLI tools to deploy the fetched model...
  
  
Posted 11 months ago
Votes Newest

Answers


something like this: None ?

  
  
Posted 11 months ago