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"
'''
33 Views
0
Answers
12 days ago
12 days ago