On my project I have used k-means to classify data between groups, but I have a problem with the computation of the k-means from Scikit-learn - it was very slow. I need to boost it.
I have tried to change the number of n_jobs
to -1
, but still very slow!
Any suggestions how to speed up?
O(n^(dk+1))
where n is the number of observatons, d is the dimensionality, and k is k – Radiochemistryk
. – Cruzcruzado