Here is the kmeans algorithm class from scikit learn.
class sklearn.cluster.KMeans(n_clusters=8, init='k-means++', n_init=10, max_iter=300, tol=0.0001, precompute_distances=True, verbose=0, random_state=None, copy_x=True, n_jobs=1)ΒΆ
An interest in knowing what βverboseβ means, and on output it shows the values ββof inertia, also not sure what that means. They are not explained in the documentation. Any help would be greatly appreciated.
source share