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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
The latest version of sklearn is 1.2.1.
The official documentation says "sparse is deprecated in 1.2 and will be removed in 1.4. Use sparse_output instead." (https://scikit-learn.org/stable/modules/generated/sklearn.preprocessing.OneHotEncoder.html)
The issue can be resolved by modifying line 977 in hypermapper/models.py to
hypermapper/models.py
encoder = OneHotEncoder(categories="auto", sparse_output=False)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The latest version of sklearn is 1.2.1.
The official documentation says "sparse is deprecated in 1.2 and will be removed in 1.4. Use sparse_output instead." (https://scikit-learn.org/stable/modules/generated/sklearn.preprocessing.OneHotEncoder.html)
The issue can be resolved by modifying line 977 in
hypermapper/models.py
toThe text was updated successfully, but these errors were encountered: