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
I'M Trying To Use Clearml Agents. For Tensorflow It Looks Like It Does Not Save The Pip Package Correctly. I Need To Install It As

I'm trying to use clearml agents. For tensorflow it looks like it does not save the pip package correctly. I need to install it as tensorflow[and-cuda] not just tensorflow. How do I get the experiment to correctly save my environment?

  
  
Posted one day ago
Votes Newest

Answers 3


Hi @<1719524641879363584:profile|ThankfulClams64> , this environment variable is meant for the agent running the task remotely, and so using it in your local clearml configuration file will not work. You can add it to the extra container arguments in the task

  
  
Posted one day ago

I just used CLEARML_AGENT_SKIP_PYTHON_ENV_INSTALL can that be put int he clearml.conf? I didn't see a reference to it in the documentaiton

  
  
Posted one day ago

I guess I don't understand I am referring to the clearml configuration file on the agent. The only way I have gotten it to consistently work is to just install the environment before hand and set that environment variable. Otherwise it seems clearml is not correctly saving the environment to be able to reproduce it. In my case the issues is installing tensorflow instead of tensorflow[and-cuda] which is what was installed

  
  
Posted one day ago