Closed itsdawei closed 2 years ago
On python 3.9, sklearn.cluster.kmeans has deprecated algorithm='full'. According to the documentation for kmeans,
sklearn.cluster.kmeans
algorithm='full'
"auto" and "full" are deprecated and they will be removed in Scikit-Learn 1.3. They are both aliases for "lloyd".
This deprecation has led to a warning for some users, and this changes resolves that warning.
algorithm='lloyd'
yapf
pytest
pylint
HISTORY.md
Description
On python 3.9,
sklearn.cluster.kmeans
has deprecatedalgorithm='full'
. According to the documentation for kmeans,This deprecation has led to a warning for some users, and this changes resolves that warning.
TODO
algorithm='full'
toalgorithm='lloyd'
Status
yapf
pytest
pylint
HISTORY.md
.