Reputation: 1
I have a parameter in k-Means clustering. how do i resolve this error to solve the problem in clustering? I tried all methods but cant find the solution.
Upvotes: 0
Views: 513
Reputation: 149
There is no argument such as njobs in Kmeans.
If you want to decrease processing time, try
Read more about sklearn kmeans https://scikit-learn.org/stable/modules/generated/sklearn.cluster.KMeans.html
Upvotes: 0