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
Unanswered
Hello! It'S My Second Time Trying Clearml - Hoping This Time I Will Succeed


Hi @<1838387863251587072:profile|JealousCrocodile85>
I'm assuming this is with clearml-serving, notice that it cannot install the correct scikit learn package per endpoint, you have to specify it in the docker compose or k8s helm, see example here
Example
https://github.com/clearml/clearml-serving/blob/5c7077537ad46439f864f24e99e2ea5d4d5b35b3/docker/docker-compose.yml#L103
'''
services:
clearml-serving-inference:
image: allegroai/clearml-serving:latest
environment:
- CLEARML_API_ACCESS_KEY=${CLEARML_API_ACCESS_KEY}
- CLEARML_API_SECRET_KEY=${CLEARML_API_SECRET_KEY}
- CLEARML_SERVING_TASK_ID=${CLEARML_SERVING_TASK_ID}
# Add your extra packages here (space‑separated)
- CLEARML_EXTRA_PYTHON_PACKAGES=scikit-learn==1.7.1
ports:
- "8080:8080"

'''

  
  
Posted 12 days ago
33 Views
0 Answers
12 days ago
12 days ago