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
Hi There, I Have A Question Regarding The Automatic Requirements Collection Of Clearml-Agent. Currently I Have Two Pip Packages Installed In The Base-Docker Image. When I Run My Experiment I Use:

Hi there,
I have a question regarding the automatic requirements collection of clearml-agent. Currently I have two pip packages installed in the base-docker image. When I run my experiment I use: task.set_packages(packages="requirements.txt") to override the automatic collection of required packages. The agent is able to pick this up and run the experiment. After the experiment, the requirements of the run changed from my requirements.txt to the automatically collected packages on the agent. Is this behavior avoidable?
This leads to errors when this experiment is cloned and run because (e.g. numpy==1.2.6 -> numpy @ file:///numpy ) and this crashed during installation?

  
  
Posted 2 months ago
Votes Newest

Answers