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
Unanswered
I Have A Special Python Package That Installed By Clone Its Source Code And Use

I have a special python package that installed by clone its source code and use python setup.py install cmd to install the package so that I can edit the package and works on fly. And the experiment entry is also a script on the source code, tools/train.py . If I run python tools/train.py ... is ok. But if I clone the experiment/task and enqueue the cloned new experiment on ClearML's WebAPP, all the codes will be cloned to new locations and run through the new train.py , thus it will import the package in the source code not the installed one and result in task failing. Is there a way to skip code clone?

  
  
Posted one year ago
Votes Newest

Answers