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

Hi , just updating that we've found an issue related to the current ClearML Agent requirements and the recent release of pathlib2 v2.3.7 (due to conflicting six requirements), which will cause docker images launched by the Agent daemon to fail if six was preinstalled in the docker image with version <1.13.0. To resolve, add python -m pip install -U six>=1.13.0 to in you agent configuration file under agent.docker_preprocess_bash_script , or in your task's Container -> Setup Shell Script section.
The next ClearML Agent version will include revised requirements to resolve this issue. Please let us know in case you need any help 🙂

  
  
Posted 2 years ago
Votes Newest

Answers 4


In these cases, the agent spinning the docker container for the task might fail with an import error coming from the pathlib2 code. We've just released clearml agent v1.1.2 with updated requirements that should solve the issue

  
  
Posted 2 years ago

SuccessfulKoala55 thanks for letting us know. I actually had that issue starting from this morning.

  
  
Posted 2 years ago

SuccessfulKoala55 can you describe how the failure behaviour will look like?

  
  
Posted 2 years ago

Note to use either python -m pip install -U six>=1.13.0 or python3 -m pip install -U six>=1.13.0 , depending on the python version available in your docker image.

  
  
Posted 2 years ago
628 Views
4 Answers
2 years ago
one year ago
Tags