![]() |
How Many Iterations to Pick Best K-Cluster?
To pick the best set of K-Means clusters centroids for each training set, how many times should be generate the centroids to find the best? 10? 100? 1000? The higher number provides the higher probability of finding the the centroids with the lowest Eout.
Thanks, David |
Re: How Many Iterations to Pick Best K-Cluster?
Quote:
|
Re: How Many Iterations to Pick Best K-Cluster?
Different problem If you start with different initial centroids you get different results. If you run it enough you can materially change Ein and Eout because of a better centroid result.
By itself K-means clustering doesn't guarantee an optimal result although it reaches a stable result quickly (especially with so few data points). |
Re: How Many Iterations to Pick Best K-Cluster?
Quote:
|
Re: How Many Iterations to Pick Best K-Cluster?
It was mentioned in lectures that you in general should try different initilizations.
However, I didn't do this... I just started with K random real data points. This strategy favours the SVM model when we compare classification performance, but since we execute the experiment many times this type of bias should be diminishing. |
Re: How Many Iterations to Pick Best K-Cluster?
I'm getting a difference of two letters in the answer between using the first k-means cluster returned and testing 50 clusters per training data set.
If I can't get an official answer....those who submitted the correct answer, was it one iteration or a high number of iterations to choose the centroids for RBF? |
Re: How Many Iterations to Pick Best K-Cluster?
Each experiment should start with a random selection of points without regard to the data set. Lloyd's algorithm is then applied to these points to discover a set of centroids. This is unsupervised learning; i.e., the training data labels are not considered. It is not intended that one should find the optimal centroids, only that one finds some set of k-means clusters.
|
Re: How Many Iterations to Pick Best K-Cluster?
The location of the centroids is fully dependent on the training data. Lloyd's algorithm doesn't find an optimal solution; K-means clustering requires multiple centroid selections to determine the best fit. This reduces the 'luck' in your initial random centroid selections.
|
Re: How Many Iterations to Pick Best K-Cluster?
Quote:
There are different approaches to choosing the centers that may lead to different performance. The above approach is the one used in this problem. |
Re: How Many Iterations to Pick Best K-Cluster?
Oops...less than an hour and I have to rerun all 5...
|
All times are GMT -7. The time now is 12:32 AM. |
Powered by vBulletin® Version 3.8.3
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.
The contents of this forum are to be used ONLY by readers of the Learning From Data book by Yaser S. Abu-Mostafa, Malik Magdon-Ismail, and Hsuan-Tien Lin, and participants in the Learning From Data MOOC by Yaser S. Abu-Mostafa. No part of these contents is to be communicated or made accessible to ANY other person or entity.