Presentation is loading. Please wait.

Presentation is loading. Please wait.

Birch: An efficient data clustering method for very large databases

Similar presentations


Presentation on theme: "Birch: An efficient data clustering method for very large databases"— Presentation transcript:

1 Birch: An efficient data clustering method for very large databases
By Tian Zhang, Raghu Ramakrishnan Presented by Hung Lai

2 Outline What is data clustering Data clustering applications
Previous Approaches and problems Birch’s Goal Clustering Feature Birch clustering algorithm Experiment results and conclusion

3 What is Data Clustering?
A cluster is a closely-packed group. A collection of data objects that are similar to one another and treated collectively as a group. Data Clustering is the partitioning of a dataset into clusters

4 Data Clustering Helps understand the natural grouping or structure in a dataset Provided a large set of multidimensional data Data space is usually not uniformly occupied Identify the sparse and crowded places Helps visualization

5 Some Clustering Applications
Biology – building groups of genes with related patterns Marketing – partition the population of consumers to market segments Division of WWW pages into genres. Image segmentations – for object recognition Land use – Identification of areas of similar land use from satellite images Insurance – Identify groups of policy holders with high average claim cost

6 Data Clustering – previous approaches
Probability based (Machine learning): make wrong assumption that distributions on attributes are independent on each other Probability representations of clusters are expensive

7 Approaches Distance Based (statistics)
Must be a distance metric between two items Assumes that all data points are in memory and can be scanned frequently Ignores the fact that not all data points are equally important Close data points are not gathered together Inspects all data points on multiple iterations These approaches do not deal with dataset and memory size issues!

8 Clustering parameters
Centroid – Euclidian center Radius – average distance to center Diameter – average pair wise difference within a cluster Radius and diameter are measures of the tightness of a cluster around its center. We wish to keep these low.

9 Clustering parameters
Other measurements (like the Euclidean distance of the centroids of two clusters) will measure how far away two clusters are. A good quality clustering will produce high intra-clustering and low interclustering A good quality clustering can help find hidden patterns

10 Birch’s goals: Minimize running time and data scans, thus formulating the problem for large databases Clustering decisions made without scanning the whole data Exploit the non uniformity of data – treat dense areas as one, and remove outliers (noise)

11 Clustering Features (CF)
CF is a compact storage for data on points in a cluster Has enough information to calculate the intra-cluster distances Additivity theorem allows us to merge sub-clusters

12 Clustering Feature (CF)
Given N d-dimensional data points in a cluster: {Xi} where i = 1, 2, …, N, CF = (N, LS, SS) N is the number of data points in the cluster, LS is the linear sum of the N data points, SS is the square sum of the N data points.

13 CF Additivity Theorem If CF1 = (N1, LS1, SS1), and
CF2 = (N2 ,LS2, SS2) are the CF entries of two disjoint sub-clusters. The CF entry of the sub-cluster formed by merging the two disjoin sub-clusters is: CF1 + CF2 = (N1 + N2 , LS1 + LS2, SS1 + SS2)

14 Properties of CF-Tree Each non-leaf node has at most B entries
Each leaf node has at most L CF entries which each satisfy threshold T Node size is determined by dimensionality of data space and input parameter P (page size) A non-leaf node entry is a CF tuple and a child node link A leaf node is a collection of CF tuples and links to the next and previous leaf nodes T is maximum diameter (or radius) of any CF in a leaf node CFs "absorb" data points close to them BALANCED HEIGHT!

15 CF Tree Insertion Identifying the appropriate leaf: recursively descending the CF tree and choosing the closest child node according to a chosen distance metric Modifying the leaf: test whether the leaf can absorb the node without violating the threshold. If there is no room, split the node Modifying the path: update CF information up the path.

16 Birch Clustering Algorithm
Phase 1: Scan all data and build an initial in-memory CF tree. Phase 2: condense into desirable length by building a smaller CF tree. Phase 3: Global clustering Phase 4: Cluster refining – this is optional, and requires more passes over the data to refine the results

17 Birch – Phase 1 Start with initial threshold and insert points into the tree If run out of memory, increase thresholdvalue, and rebuild a smaller tree by reinserting values from older tree and then other values Good initial threshold is important but hard to figure out Outlier removal – when rebuilding tree remove outliers

18 Birch - Phase 2 Optional Phase 3 sometime have minimum size which performs well, so phase 2 prepares the tree for phase 3. Removes outliers, and grouping clusters.

19 Birch – Phase 3 Problems after phase 1: Phase 3:
Input order affects results Splitting triggered by node size Phase 3: cluster all leaf nodes on the CF values according to an existing algorithm Algorithm used here: agglomerative hierarchical clustering

20 Birch – Phase 4 Optional Do additional passes over the dataset & reassign data points to the closest centroid from phase 3 Recalculating the centroids and redistributing the items. Always converges (no matter how many time phase 4 is repeated)

21 Experimental Results Create 3 synthetic data sets for testing
Also create an ordered copy for testing input order KMEANS and CLARANS require entire data set to be in memory Initial scan is from disk, subsequent scans are in memory

22 Experimental Results Intended clustering

23 Experimental Results KMEANS clustering DS: default setting
D: weighted average diameter. The smaller D is the better the quality. DS Time D # Scan 1 43.9 2.09 289 1o 33.8 1.97 197 2 13.2 4.43 51 2o 12.7 4.20 29 3 32.9 3.66 187 3o 36.0 4.35 241

24 Experimental Results CLARANS clustering DS Time D # Scan 1 932 2.10
3307 1o 794 2.11 2854 2 758 2.63 2661 2o 816 2.31 2933 3 835 3.39 2959 3o 924 3.28 3369

25 Experimental Results BIRCH clustering DS Time D # Scan 1 11.5 1.87 2
1o 13.6 10.7 1.99 2o 12.1 3 11.4 3.95 3o 12.2 3.99

26 Conclusion Birch performs faster than existing algorithms (CLARANS and KMEANS) on large datasets in Quality, speed, stability and scalability Scans whole data only once Handles outliers better


Download ppt "Birch: An efficient data clustering method for very large databases"

Similar presentations


Ads by Google