SUBCLU

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

Lua error in package.lua at line 80: module 'strict' not found. Lua error in package.lua at line 80: module 'strict' not found. SUBCLU is an algorithm for clustering high-dimensional data by Karin Kailing, Hans-Peter Kriegel and Peer Kröger.[1] It is a subspace clustering algorithm that builds on the density-based clustering algorithm DBSCAN. SUBCLU can find clusters in axis-parallel subspaces, and uses a bottom-up, greedy strategy to remain efficient.

Approach

SUBCLU uses a monotonicity criteria: if a cluster is found in a subspace S, then each subspace T \subseteq S also contains a cluster. However, a cluster C \subseteq DB in subspace S is not necessarily a cluster in T \subseteq S, since clusters are required to be maximal, and more objects might be contained in the cluster in T that contains C. However, a density-connected set in a subspace S is also a density-connected set in T \subseteq S.

This downward-closure property is utilized by SUBCLU in a way similar to the Apriori algorithm: first, all 1-dimensional subspaces are clustered. All clusters in a higher-dimensional subspace will be subsets of the clusters detected in this first clustering. SUBCLU hence recursively produces k+1-dimensional candidate subspaces by combining k-dimensional subspaces with clusters sharing k-1 attributes. After pruning irrelevant candidates, DBSCAN is applied to the candidate subspace to find out if it still contains clusters. If it does, the candidate subspace is used for the next combination of subspaces. In order to improve the runtime of DBSCAN, only the points known to belong to clusters in one k-dimensional subspace (which is chosen to contain as little clusters as possible) are considered. Due to the downward-closure property, other point cannot be part of a k+1-dimensional cluster anyway.

Pseudocode

SUBCLU takes two parameters, \epsilon\!\, and MinPts, which serve the same role as in DBSCAN. In a first step, DBSCAN is used to find 1D-clusters in each subspace spanned by a single attribute:

\!\,SUBCLU(DB, eps, MinPts)

S_1 := \emptyset
C_1 := \emptyset
for\, each\, a \in Attributes
C^{\{a\}} = DBSCAN(DB, \{a\}, eps, MinPts)\!\,
if (C^{\{a\}} \neq \emptyset)
S_1 := S_1 \cup \{a\}
C_1 := C_1 \cup C^{\{a\}}
end\, if
end\, for

In a second step, k+1-dimensional clusters are built from k-dimensional ones:

k := 1\!\,
while (C_k \neq \emptyset)
CandS_{k+1} := GenerateCandidateSubspaces(S_k)\!\,
for\, each\, cand \in CandS_{k+1}
bestSubspace := \min_{s \in S_k \wedge s \subset cand} \sum_{C_i \in C^s} |C_i|
C^{cand} := \emptyset
for\, each\, cluster\, cl \in C^{bestSubspace}
C^{cand} := C^{cand} \cup DBSCAN(cl, cand, eps, MinPts)
if\, (C^{cand} \neq \emptyset)
S_{k+1} := S_{k+1} \cup cand
C_{k+1} := C_{k+1} \cup C^{cand}
end\, if
end\, for
end\, for
k:=k+1\!\,
end\, while

end\!\,

The set S_k contains all the k-dimensional subspaces that are known to contain clusters. The set C_k contains the sets of clusters found in the subspaces. The bestSubspace is chosen to minimize the runs of DBSCAN (and the number of points that need to be considered in each run) for finding the clusters in the candidate subspaces.

Candidate subspaces are generated much alike the Apriori algorithm generates the frequent itemset candidates: Pairs of the k-dimensional subspaces are compared, and if they differ in one attribute only, they form a k+1-dimensional candidate. However, a number of irrelevant candidates are found as well; they contain a k-dimensional subspace that does not contain a cluster. Hence, these candidates are removed in a second step:

\,\!GenerateCandidateSubspaces(S_k)

CandS_{k+1} := \emptyset
for\,each\,s_1 \in S_k
for\,each\,s_2 \in S_k
if\,(s_1\,and\,s_2\,\,\mathit{differ}\,\,in\,\,exactely\,\,one\,\,attribute)
CandS_{k+1} := CandS_{k+1} \cup \{s_1 \cup s_2\}
end\,if
end\,for
end\,for
// Pruning of irrelevant candidate subspaces
for\,each\,cand \in CandS_{k+1}
for\, each\, k-element\,s \subset cand
if \, (s \not \in S_k)
CandS_{k+1} = CandS_{k+1} \setminus \{cand\}
end\,if
end\,for
end\,for

end\,\!

Availability

An example implementation of SUBCLU is available in the ELKI framework.

References

  1. Karin Kailing, Hans-Peter Kriegel and Peer Kröger. Density-Connected Subspace Clustering for High-Dimensional Data. In: Proc. SIAM Int. Conf. on Data Mining (SDM'04), pp. 246-257, 2004.