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
Here Are Two More Questions:

Here are two more questions:
agent.package_manager.system_site_packages can be used to inherit packages from the system. How does clearml resolve packages/where does it look? And is it also possible to inherit from an existing conda/venv?

  
  
Posted 3 years ago
Votes Newest

Answers 9


Yea, I am still trying to get docker to work with clearml. I do not have much experience with docker besides creating Dockerfiles and it seems like the ~/.ssh/config ownership seems broken when mounted into the container on my workstations.

  
  
Posted 3 years ago

But this seems like something that is not related to clearml πŸ™‚ Anyways, thanks again for the explanations!

  
  
Posted 3 years ago

And then also use priority_optional_packages: ["carla"]

  
  
Posted 3 years ago

agent.package_manager.system_site_packages

Β can be used to inherit packages

Correct, it is basically venv with --system-site-packages

I do not think virtualenv nesting is support, if it was then in theory you could have executed the clearml-agent from virtual environment with system_site_packages turned on and then it would inherit from it. But again I'm not sure virtualenv supports it.
BTW: the latest clearml-agent RC already have venv caching (both pip/conda) πŸ™‚

  
  
Posted 3 years ago

Yea, I don't do anything manually.

  
  
Posted 3 years ago

I am thinking about just installing this manually on the worker ...

If you install them system wide (i.e. with sudo) and add agent.package_manager.system_site_packages then they will always be available for you πŸ™‚

And then also useΒ 

priority_optional_packages: ["carla"]

This actually means that it will always try to install the package clara first, but if it fails, it will no raise an error.

BTW: this would be a good use case for dockers, just saying πŸ˜‰

  
  
Posted 3 years ago

clearml does everything for me πŸ˜„

  
  
Posted 3 years ago

Sure πŸ™‚
BTW: clearml-agent will mount your host .ssh into the docker to /root/.ssh by default.
So no need to do that manually

  
  
Posted 3 years ago

Thank you. I am not trying to use this option to speed up the setup. I have some package (carla simulator PythonAPI) that has no pip support (only easy_install). So I am thinking about just installing this manually on the worker, so that tasks can assume, that carla is provided by the system

  
  
Posted 3 years ago