Changes of clustering results after each time run in Python scikit-learn

前端 未结 4 1799
借酒劲吻你
借酒劲吻你 2020-12-17 15:53

I have a bunch of sentences and I want to cluster them using scikit-learn spectral clustering. I\'ve run the code and get the results with no problem. But, every time I run

相关标签:
4条回答
  • 2020-12-17 16:31

    When using k-means, you want to set the random_state parameter in KMeans (see the documentation). Set this to either an int or a RandomState instance.

    km = KMeans(n_clusters=number_of_k, init='k-means++', 
                max_iter=100, n_init=1, verbose=0, random_state=3425)
    km.fit(X_data)
    

    This is important because k-means is not a deterministic algorithm. It usually starts with some randomized initialization procedure, and this randomness means that different runs will start at different points. Seeding the pseudo-random number generator ensures that this randomness will always be the same for identical seeds.

    I'm not sure about the spectral clustering example though. From the documentation on the random_state parameter: "A pseudo random number generator used for the initialization of the lobpcg eigen vectors decomposition when eigen_solver == 'amg' and by the K-Means initialization." OP's code doesn't seem to be contained in those cases, though setting the parameter might be worth a shot.

    0 讨论(0)
  • 2020-12-17 16:36

    I had a similar issue, but it's that I wanted the data set from another distribution to be clustered the same way as the original data set. For example, all color images of the original data set were in the cluster 0 and all gray images of the original data set were in the cluster 1. For another data set, I want color images / gray images to be in cluster 0 and cluster 1 as well.

    Here is the code I stole from a Kaggler - in addition to set the random_state to a seed, you use the k-mean model returned by KMeans for clustering the other data set. This works reasonably well. However, I can't find the official scikit-Learn document saying that.

    # reference - https://www.kaggle.com/kmader/normalizing-brightfield-stained-and-fluorescence
    from sklearn.cluster import KMeans
    
    seed = 42
    def create_color_clusters(img_df,  cluster_count = 2, cluster_maker=None):
        if cluster_maker is None:
            cluster_maker = KMeans(cluster_count, random_state=seed)
            cluster_maker.fit(img_df[['Green', 'Red-Green', 'Red-Green-Sd']])
    
        img_df['cluster-id'] = np.argmin(cluster_maker.transform(img_df[['Green', 'Red-Green', 'Red-Green-Sd']]),-1)
    
    
        return img_df, cluster_maker
    
    # Now K-Mean your images `img_df` to two clusters
    img_df, cluster_maker = create_color_clusters(img_df, 2)
    # Cluster another set of images using the same kmean-model
    another_img_df, _ = create_color_clusters(another_img_df, 2, cluster_maker)
    

    However, even setting random_state to a int seed cannot ensure the same data will always be grouped in the same order across machines. The same data may be clustered as group 0 on one machine and clustered as group 1 on another machine. But at least with the same K-Means model (cluster_maker in my code) we make sure data from another distribution will be clustered in the same way as the original data set.

    0 讨论(0)
  • 2020-12-17 16:36

    Typically when running algorithms with many local minima it's common to take a stochastic approach and run the algorithm many times with different initial states. This will give you multiple results, and the one with the lowest error is usually chosen to be the best result.

    When I use K-Means I always run it several times and use the best result.

    0 讨论(0)
  • 2020-12-17 16:37

    As the others already noted, k-means is usually implemented with randomized initialization. It is intentional that you can get different results.

    The algorithm is only a heuristic. It may yield suboptimal results. Running it multiple times gives you a better chance of finding a good result.

    In my opinion, when the results vary highly from run to run, this indicates that the data just does not cluster well with k-means at all. Your results are not much better than random in such a case. If the data is really suited for k-means clustering, the results will be rather stable! If they vary, the clusters may not have the same size, or may be not well separated; and other algorithms may yield better results.

    0 讨论(0)
提交回复
热议问题