Presentation is loading. Please wait.

Presentation is loading. Please wait.

BHARATH RENGARAJAN PURSUING MY MASTERS IN COMPUTER SCIENCE FALL 2008.

Similar presentations


Presentation on theme: "BHARATH RENGARAJAN PURSUING MY MASTERS IN COMPUTER SCIENCE FALL 2008."— Presentation transcript:

1 BHARATH RENGARAJAN PURSUING MY MASTERS IN COMPUTER SCIENCE FALL 2008

2 I.Problems in the traditional clustering method II.CURE clustering III.Summary IV.Drawbacks

3

4 Attempts to find k-partitions that try to minimize a certain criterion function The square-error criterion is the most common criterion function used. Works well for compact, well separated clusters.

5 You may find error in case the square-error is reduced by splitting some large cluster to favor some other group.

6 ◦ This category of clustering method try to merge sequences of disjoint clusters into the target k clusters base on the minimum distance between two clusters. ◦ The distance between clusters can be measured as:  Distance between mean:  Distance between two nearest point within cluster

7 Result of d mean :

8 Result of d min :

9 1. Traditional clustering mainly favors spherical shape. 2. Data in the cluster must be compact together. 3. Each cluster must separate far away enough. 4. Outliner will greatly disturb the cluster result.

10

11 1.It is similar to hierarchical clustering approach. But it use sample point variant as the cluster representative rather than every point in the cluster. 2.First set a target sample number c. Than we try to select c well scattered sample points from the cluster. 3.The chosen scattered points are shrunk toward the centroid in a fraction of  where 0 <  <1 4.These points are used as representative of clusters and will be used as the point in d min cluster merging approach.

12 4.After each merging, c sample points will be selected from original representative of previous clusters to represent new cluster. 5.Cluster merging will be stopped until target k cluster is found Nearest Merge Nearest

13

14 The worst-case time complexity is O(n 2 logn) The space complexity is O(n) due to the use of k-d tree and heap.

15 In case of dealing with large database, we can’t store every data point to the memory. Handle of data merge in large database require very long time. We use random sampling to both reduce the time complexity and memory usage. By using random sampling, there exists a trade off between accuracy and efficiency.

16 We can introduce outliners elimination by two method. 1.Random sampling: With random sampling, most of outlier points are filtered out. 2.Outlier elimination: As outliner is not a compact group, it will grow in size very slowly during the cluster merge stage. We will then kick in the elimination procedure during the merging stage such that those cluster with 1 ~ 2 data points are removed from the cluster list.

17 Due to the use of random sample. We need to label back every remaining data points to the proper cluster group. Each data point is assigned to the cluster group with a representative point nearest to the data point.

18 Data Draw Random Sample Partition SamplePartially cluster partition Elimination outliersCluster partial clusters Label data in disk

19

20

21

22

23 CURE can effectively detect proper shape of the cluster with the help of scattered representative point and centroid shrinking. CURE can reduce computation time with random sampling. CURE can effectively remove outlier. The quality and effectiveness of CURE can be tuned be varying different s,p,c,  to adapt different input data set.

24

25 Clusters shown are somewhat standard shapes. Too many parameters are involved.

26


Download ppt "BHARATH RENGARAJAN PURSUING MY MASTERS IN COMPUTER SCIENCE FALL 2008."

Similar presentations


Ads by Google