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
Hello!, Does Anyone Know Why When Running A Task In A Specific Docker Image, There Are Some Python Packages Whose Versions Doesn'T Match? For Example, I Have Installed The Package Ultralytics On 8.1.25 On The Docker Image But It'S On 8.1.11 In The Install

Hello!, Does anyone know why when running a task in a specific docker image, there are some python packages whose versions doesn't match? For example, I have installed the package ultralytics on 8.1.25 on the docker image but it's on 8.1.11 in the installed packages for the task.

  
  
Posted one month ago
Votes Newest

Answers 3


Sorry, I don't understand your message

  
  
Posted one month ago

Hi @<1676762887223250944:profile|FancyKangaroo34> , it would be possible for example if the docker image has a different python version from what you ran on previously

  
  
Posted one month ago

I fixed it by adding this to the task

Task.add_requirements("ultralytics", "8.1.24")

But I still don't understand why I'm using a docker image if clearml then installs different versions

  
  
Posted one month ago
162 Views
3 Answers
one month ago
one month ago
Tags