a fast algorithm for subspace clustering by pattern
play

A Fast Algorithm for Subspace Clustering by Pattern Similarity Fang - PDF document

A Fast Algorithm for Subspace Clustering by Pattern Similarity Fang Chu 1 Jian Pei 2 Haixun Wang Wei Fan Philip S. Yu IBM T. J. Watson Research Center, { haixun,weifan,psyu } @us.ibm.com 1 Dept. of Computer Science, Univ. of California, Los


  1. A Fast Algorithm for Subspace Clustering by Pattern Similarity Fang Chu 1 Jian Pei 2 Haixun Wang Wei Fan Philip S. Yu IBM T. J. Watson Research Center, { haixun,weifan,psyu } @us.ibm.com 1 Dept. of Computer Science, Univ. of California, Los Angeles, fchu@cs.ucla.edu 2 Dept. of Computer Science, SUNY Buffalo, jianpei@cse.buffalo.edu Abstract ficient algorithm makes the model impractical for large scale data. In this paper, we introduce a novel clustering Unlike traditional clustering methods that focus on model which is intuitive, capable of capturing subspace pattern similarity effectively, and is inducive to an effi- grouping objects with similar values on a set of dimen- cient implementation. sions, clustering by pattern similarity finds objects that exhibit a coherent pattern of rise and fall in subspaces. Pattern-based clustering extends the concept of tradi- 1.1 Subspace Pattern Similarity tional clustering and benefits a wide range of applica- We present the concept of subspace pattern similarity tions, including large scale scientific data analysis, tar- by an example in Figure 1. We have three objects. get marketing, web usage analysis, etc. However, state- Here, the X axis represents a set of conditions, and of-the-art pattern-based clustering methods (e.g., the the Y axis represents object values under those condi- pCluster algorithm) can only handle datasets of thou- tions. In Figure 1(a), the similarity among the three sands of records, which makes them inappropriate for objects are not visibly clear, until we study them un- many real-life applications. Furthermore, besides the der two subsets of conditions. In Figure 1(b), we find huge data volume, many data sets are also character- the same three objects form a shifting pattern in sub- ized by their sequentiality, for instance, customer pur- space { b, c, h, j, e } , and in Figure 1(c), a scaling pattern chase records and network event logs are usually mod- in subspace { f, d, a, g, i } . eled as data sequences. Hence, it becomes important This means, we should consider objects similar to each other as long as they manifest a coherent pattern in a to enable pattern-based clustering methods i) to handle certain subspace, regardless of whether their coordinate large datasets, and ii) to discover pattern similarity em- values in such subspaces are close or not. It also means bedded in data sequences. In this paper, we present a many traditional distance functions, such as Euclidean, novel algorithm that offers this capability. Experimental cannot effectively discover such similarity. results from both real life and synthetic datasets prove its effectiveness and efficiency. 1.2 Applications We motivate our work with applications in two impor- 1 Introduction tant areas. Clustering large datasets is a challenging data mining task with many real life applications. Much research Scien- Analysis of Large Scientific Datasets. has been devoted to the problem of finding subspace tific data sets often consist of many numerical columns. clusters [2, 3, 4, 7, 12]. Along this direction, we further One such example is the gene expression data. DNA extended the concept of clustering to focus on pattern- micro-arrays are an important breakthrough in exper- based similarity [21]. Several research work have since imental molecular biology, for they provide a power- studied clustering based on pattern similarity [22, 15], ful tool in exploring gene expression on a genome-wide as opposed to traditional value-based similarity. scale. By quantifying the relative abundance of thou- These efforts represent a step forward in bringing sands of mRNA transcripts simultaneously, researchers can discover new functional relationships among a group the techniques closer to the demands of real life ap- of genes [6, 9]. plications, but at the same time, they also introduced new challenges. For instance, the clustering models in Investigations show that more often than not, sev- use [21, 22, 15] are often too rigid to find objects that eral genes contribute to one disease, which motivates exhibit meaningful similarity, and also, the lack of an ef- researchers to identify genes whose expression levels rise 1

  2. 90 90 90 80 Object 1 80 Object 1 80 Object 1 Object 2 Object 2 Object 2 Object 3 Object 3 Object 3 70 70 70 60 60 60 50 50 50 40 40 40 30 30 30 20 20 20 10 10 10 0 0 0 a b c d e f g h i j b c h j e f d a g i (a) Raw data: (b) A Shifting Pattern in (c) A Scaling Pattern in 3 objects, 10 columns subspace { b, c, h, j, e } subspace { f, d, a, g, i } Figure 1: Objects form patterns in subspaces. CH1I CH1B CH1D CH2I CH2B and fall coherently under a subset of conditions, that · · · 281 275 VPS8 401 120 298 is, they exhibit fluctuation of a similar shape when con- SSA1 401 292 109 580 238 ditions change [6, 9]. Table 1 shows that three genes, SP07 228 290 48 285 224 VPS8, CYS3, and EFB1, respond to certain environ- EFB1 318 280 37 277 215 mental changes coherently. MDM10 538 272 266 277 236 More generally, with the DNA micro-array as an ex- 288 278 CYS3 322 41 219 ample, we argue that the following queries are of interest DEP1 317 272 40 273 232 in scientific data analysis. NTG1 329 296 33 274 228 . . Example 1. Counting . How many genes whose expression level in sample CH1I is about 100 ± 5 units higher than that in CH2B, 280 ± 5 Table 1: Expression data of Yeast genes units higher than that in CH1D, and 75 ± 5 units higher than that in CH2I? logs is important to the understanding of the tempo- Example 2. Clustering ral causal relationships among the events, which often Find clusters of genes that exhibit coherent subspace pat- provide actionable insights for determining problems in terns, given the following constraints: i) the subspace system management. pattern has dimensionality higher than minCols ; and We focus on two attributes, Event and Timestamp ii) the number of objects in the cluster is larger than (Table 2), of the log database. A network event pat- minRows . tern contains multiple events. For instance, a candidate pattern might be the following: Answering the above queries efficiently is important in Example 3. Sequential Pattern discovering gene correlations [6, 9] from large scale DNA Event CiscoDCDLinkUp is followed by MLMStatusUp micro-array data. The counting problem of Example 1 that is followed, in turn, by CiscoDCDLinkUp, under the seems easy to implement, yet it constitutes the most constraint that the interval between the first two events primitive operation in solving the clustering problem of is about 20 ± 2 seconds, and the interval between the 1st Example 2, which is the focus of this paper. and 3rd events is about 40 ± 2 seconds. Current database techniques cannot solve the above problems efficiently. Algorithms such as the pClus- Previous works [20, 19] have studied the problem of ter [21] have been proposed to find clusters of objects efficiently locating a given sequential pattern, however, that manifest coherent patterns. Unfortunately, they finding all interesting sequential patterns is a difficult can only handle datasets containing no more than thou- problem. A network event pattern becomes interesting sands of records. if: i) it occurs frequently, and ii) it is non-trivial, mean- ing it contains a certain amount of events. The challenge We use net- here is to find such patterns efficiently. Discovery of Sequential Patterns. work event logs to demonstrate the need to find clus- Although seemingly different to the problem shown in ters based on sequential patterns in large datasets. A Figure 1, finding patterns exhibited over the time in se- network system generates various events. We log each quential data is closely related to finding coherent pat- event, as well as the environment in which it occurs, into terns in tabular data. It is another form of clustering a database. Finding patterns in a large dataset of event by subspace pattern similarity: if we think of different 2

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