You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 13, 2025. It is now read-only.
https://scikit-learn.org/stable/model_persistence.html#security-maintainability-limitations
Trying to unpickle estimator ExtraTreeClassifier from version 1.3.2 when using version 1.4.1.post1. This might lead to breaking code or invalid results. Use at your own risk. For more info please refer to:
https://scikit-learn.org/stable/model_persistence.html#security-maintainability-limitations
And it took me some time to realize that what was wrong because in the Dockerfile we didn't install scikit-learn and I didn't recognize any packages that required scikit-learn, but it was right in front of my eye snorkel and in its requirement file was.
scikit-learn>=0.20.2
for a better solution I have to see to the new standard for pickle files but for a quick solution I change the required version to
scikit-learn==1.3.2
Caution
in the feauture we need to do it insted of evading the problem
Intro
I had some issues when running
fastAPIwith this docker commandthe error message was something like this
And it took me some time to realize that what was wrong because in the Dockerfile we didn't install
scikit-learnand I didn't recognize any packages that required scikit-learn, but it was right in front of my eye snorkel and in its requirement file was.for a better solution I have to see to the new standard for pickle files but for a quick solution I change the required version to
Caution
in the feauture we need to do it insted of evading the problem