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
More An Internal Utilities Usage Question - If I Have A Script (.Py) Can I Use An Utility That Clearml Uses To Get The Packages Used By The Script? Was Looking At

More an internal utilities usage question - if I have a script (.py) can I use an utility that clearml uses to get the packages used by the script? Was looking at ScriptInfo.get but it’s not giving any requirements. Any help?

  
  
Posted 3 years ago
Votes Newest

Answers 4


TrickySheep9 , what is the use case? If I understand correctly, you want to use ClearML's package detection in a script to get the imports or do you want all the packages in the environment you're running?

  
  
Posted 3 years ago

Get the imports, yes.

  
  
Posted 3 years ago

This is for building my model package for inference

  
  
Posted 3 years ago

Was able to use ScriptRequirements and get what I need. thanks!

  
  
Posted 3 years ago
846 Views
4 Answers
3 years ago
one year ago
Tags