clustering
play

Clustering - PowerPoint PPT Presentation

Clustering Reference:http://www.elet.polimi.it/upload/matteucc/Clustering/tutorial_html/ Dr Ahmed Rafea Outline Introduction Clustering Algorithms K-means Fuzzy C-means Hierarchical clustering Introduction(1)


  1. Clustering Reference:http://www.elet.polimi.it/upload/matteucc/Clustering/tutorial_html/ Dr Ahmed Rafea

  2. Outline • Introduction • Clustering Algorithms – K-means – Fuzzy C-means – Hierarchical clustering

  3. Introduction(1) • Clustering can be considered the most important unsupervised learning problem; so, as every other problem of this kind, • it deals with finding a structure in a collection of unlabeled data. • A loose definition of clustering could be “the process of organizing objects into groups whose members are similar in some way”. • A cluster is therefore a collection of objects which are “similar” between them and are “dissimilar” to the objects belonging to other clusters.

  4. Introduction(2) •In this case we easily identify the 4 clusters into which the data can be divided; •the similarity criterion is distance : two or more objects belong to the same cluster if they are “close” according to a given distance (in this case geometrical distance). This is called distance-based clustering . •Another kind of clustering is conceptual clustering : two or more objects belong to the same cluster if this one defines a concept common to all that objects.

  5. Introduction(3) • The main requirements that a clustering algorithm should satisfy are: – scalability; – dealing with different types of attributes; – discovering clusters with arbitrary shape; – minimal requirements for domain knowledge to determine input parameters; – ability to deal with noise and outliers; – insensitivity to order of input records; – high dimensionality; – interpretability and usability.

  6. Introduction(4) • There are a number of problems with clustering. Among them: – current clustering techniques do not address all the requirements adequately – dealing with large number of dimensions and large number of data items can be problematic because of time complexity; – the effectiveness of the method depends on the definition of “distance” (for distance-based clustering); – if an obvious distance measure doesn’t exist we must “define” it, which is not always easy, especially in multi-dimensional spaces; – the result of the clustering algorithm can be interpreted in different ways.

  7. Clustering Algorithms • Exclusive Clustering – Data are grouped in an exclusive way, so that if a certain datum belongs to a definite cluster then it could not be included in another cluster. • Overlapping Clustering – The overlapping clustering, uses fuzzy sets to cluster data, so that each point may belong to two or more clusters with different degrees of membership. • Hierarchical Clustering – A hierarchical clustering algorithm is based on the union between the two nearest clusters. • Probabilistic Clustering – This algorithm uses a completely probabilistic approach.

  8. K-Means Clustering (1) • K-means is one of the simplest unsupervised learning algorithms that solve the well known clustering problem. • The main idea is to define k centroids, one for each cluster. • These centroids should be placed as much as possible far away from each other. • Take each point belonging to a given data set and associate it to the nearest centroid. • Re-calculate k new centroids as barycenters of the clusters resulting from the previous step. • After we have these k new centroids, a new binding has to be done between the same data set points and the nearest new centroid. • Loop until no more changes are done.

  9. K-Means Clustering (2) • This algorithm aims at minimizing an objective function , in this case a squared error function. The objective function k n J = Σ Σ || x i (j) – c j || 2 j=1 i=1 Where || x i (j) – c j || 2 is a chosen distance measure between a (j) and the cluster centre c j data point x i • Although it can be proved that the procedure will always terminate, the k- means algorithm does not necessarily find the most optimal configuration, corresponding to the global objective function minimum. • The algorithm is also significantly sensitive to the initial randomly selected cluster centers. The k-means algorithm can be run multiple times to reduce this effect.

  10. Fuzzy C-Means Clustering(1) • Fuzzy c-means (FCM) is a method of clustering which allows one piece of data to belong to two or more clusters. It is based on minimization of the following objective function: where m is any real number greater than 1, u ij is the degree of membership of x i in the cluster j , x i is the i th of d-dimensional measured data, c j is the d-dimension center of the cluster, and ||*|| is any norm expressing the similarity between any measured data and the center.

  11. Fuzzy C-Means Clustering(2) • Fuzzy partitioning is carried out through an iterative optimization of the objective function shown above, with the update of membership u ij and the cluster centers c j by: Look for the formula in the tutorial • This iteration will stop when max ij {|u ijk+1 - u ijk |}< ε , where ε is a termination criterion between 0 and 1, whereas k are the iteration steps. This procedure converges to a local minimum or a saddle point of J m .

  12. Fuzzy C-Means Clustering(3) Initialize U=[u ij ] matrix, U (0) 1. At k-step: calculate the centers vectors C (k) =[c j ] with U (k) 2. Look for the formula in the tutorial Update U (k) , U (k+1) 3. Look for the formula in the tutorial If || U (k+1) - U (k) ||< ε then STOP; otherwise return to step 2. 4.

  13. Fuzzy C-Means Clustering(4) • For a better understanding, we may consider this simple mono-dimensional example. Given a certain data set, suppose to represent it as distributed on an axis. The figure below shows this: • Looking at the picture, we may identify two clusters in proximity of the two data concentrations. We will refer to them using ‘A’ and ‘B’. In the k- means algorithm - we associated each datum to a specific centroid; therefore, this membership function looked like this:

  14. Fuzzy C-Means Clustering(5) • In the FCM approach, instead, the same given datum does not belong exclusively to a well defined cluster, but it can be placed in a middle way. In this case, the membership function follows a smoother line to indicate that every datum may belong to several clusters with different values of the membership coefficient. • In the figure above, the datum shown as a red marked spot belongs more to the B cluster rather than the A cluster. The value 0.2 of ‘m’ indicates the degree of membership to A for such datum.

  15. Fuzzy C-Means Clustering(6) • Now, instead of using a graphical representation, we introduce a matrix U whose factors are the ones taken from the membership functions: Look for the matrices in the tutorial (a) (b) • We have C = 2 columns (C = 2 clusters) and N rows, where C is the total number of clusters and N is the total number of data. The generic element is so indicated: u ij . • We can notice that in the first case (a) the coefficients are always unitary. It is so to indicate the fact that each datum can belong only to one cluster. Other properties are shown below:

  16. Hierarchical Clustering (1) • Given a set of N items to be clustered, and an N*N distance (or similarity) matrix, the basic process of hierarchical clustering is this: – Start by assigning each item to a cluster, so that if you have N items, you now have N clusters, each containing just one item. Let the distances (similarities) between the clusters the same as the distances (similarities) between the items they contain. – Find the closest (most similar) pair of clusters and merge them into a single cluster, so that now you have one cluster less. – Compute distances (similarities) between the new cluster and each of the old clusters. – Repeat steps 2 and 3 until all items are clustered into a single cluster of size N. • Of course there is no point in having all the N items grouped in a single cluster but, once you have got the complete hierarchical tree, if you want k clusters you just have to cut the k-1 longest links

  17. Hierarchical Clustering (2) • Step 3 can be done in different ways, which is what distinguishes single-linkage from complete-linkage and average-linkage clustering. – In single-linkage clustering, we consider the distance between one cluster and another cluster to be equal to the shortest distance from any member of one cluster to any member of the other cluster. – In complete-linkage clustering, we consider the distance between one cluster and another cluster to be equal to the greatest distance from any member of one cluster to any member of the other cluster. – In average-linkage clustering, we consider the distance between one cluster and another cluster to be equal to the average distance from any member of one cluster to any member of the other cluster.

  18. Hierarchical Clustering (3) • This kind of hierarchical clustering is called agglomerative because it merges clusters iteratively. There is also a divisive hierarchical clustering which does the reverse by starting with all objects in one cluster and subdividing them into smaller pieces. Divisive methods are not generally available, and rarely have been applied.

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend