We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I use scikit-learn==1.1.2 on my project and I also use Unitrack as a submodule. However, Unitrack uses scikit-learn==0.22, which version is too old.
scikit-learn==1.1.2
scikit-learn==0.22
So, import error is occured in utils/mask.py line.16.
utils/mask.py
from sklearn.metrics import jaccard_similarity_score
jaccard_similarity_score is deleted from scikit-learn >= 0.23. (And it isn't used in utils/mask.py, so it can be deleted.)
jaccard_similarity_score
scikit-learn >= 0.23
Will you update scikit-learn? If scikit-learn is updated, it might be some other errors will be occured.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I use
scikit-learn==1.1.2
on my project and I also use Unitrack as a submodule.However, Unitrack uses
scikit-learn==0.22
, which version is too old.So, import error is occured in
utils/mask.py
line.16.jaccard_similarity_score
is deleted fromscikit-learn >= 0.23
.(And it isn't used in
utils/mask.py
, so it can be deleted.)Will you update scikit-learn?
If scikit-learn is updated, it might be some other errors will be occured.
The text was updated successfully, but these errors were encountered: