<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>Generating a Diverse Set of High-Quality Clusterings?</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Jeff M. Phillips</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Parasaran Raman</string-name>
          <email>praman@cs.utah.edu</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Suresh Venkatasubramanian</string-name>
          <email>suresh@cs.utah.edu</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>School of Computing, University of Utah</institution>
          ,
          <country country="US">USA</country>
        </aff>
      </contrib-group>
      <fpage>80</fpage>
      <lpage>91</lpage>
      <abstract>
        <p>We provide a new framework for generating multiple good quality partitions (clusterings) of a single data set. Our approach decomposes this problem into two components, generating many high-quality partitions, and then grouping these partitions to obtain k representatives. The decomposition makes the approach extremely modular and allows us to optimize various criteria that control the choice of representative partitions.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>
        Clustering is a critical tool used to understand the structure of a data set.
There are many ways in which one might partition a data set into representative
clusters, and this is demonstrated by the huge variety of different algorithms for
clustering [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ], [
        <xref ref-type="bibr" rid="ref35">35</xref>
        ], [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ], [
        <xref ref-type="bibr" rid="ref27">27</xref>
        ], [
        <xref ref-type="bibr" rid="ref45">45</xref>
        ], [
        <xref ref-type="bibr" rid="ref31">31</xref>
        ], [
        <xref ref-type="bibr" rid="ref43">43</xref>
        ], [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ], [
        <xref ref-type="bibr" rid="ref28">28</xref>
        ].
      </p>
      <p>Each clustering method identifies different kinds of structure in data,
reflecting different desires of the end user. Thus, a key exploratory tool is identifying
a diverse and meaningful collection of partitions of a data set, in the hope that
these distinct partitions will yield different insights about the underlying data.
Problem specification. The input to our problem is a single data set X. The
output is a set of k partitions of X. A partition of X is a set of subsets Xi =
{Xi,1, Xi,2, . . . , Xi,s} where X = Ss</p>
      <p>j=1 Xi,j and for all j, j0 Xi,j ∩ Xi,j0 = ∅. Let
PX be the space of all partitions of X; since X is fixed throughout this paper,
we just refer to this space as P.</p>
      <p>There are two quantities that control the nature of the partitions generated.
The quality of a partition, represented by a function Q : P → R+, measures
the degree to which a particular partition captures intrinsic structure in data; in
general, most clustering algorithms that identify a single clustering attempt to
optimize some notion of quality. The distance between partitions, represented by
the function d : P×P → R, is a quantity measuring how dissimilar two partitions
are. The partitions Xi ∈ P that do a better job of capturing the structure of the
data set X will have a larger quality value Q(Xi). And the partitions Xi, Xi0 ∈ P
that are more similar to each other will have a smaller distance value d(Xi, Xi0 ).
A good set of diverse partitions all have large distances from each other and all
have high quality scores.</p>
      <p>Thus, the goal is this paper is to generate a set of k partitions that best
represent all high-quality partitions as accurately as possible.</p>
      <p>Related Work. There are two main approaches in the literature for computing
many high-quality, diverse partitions. However, both approaches focus only on
a specific subproblem. Alternate clustering focuses on generating one additional
partition of high-quality that should be far from a given set (typically of size
one) of existing partitions. k-consensus clustering assumes an input set of many
partitions, and then seeks to return k representative partitions.</p>
      <p>
        Most algorithms for generating alternate partitions [
        <xref ref-type="bibr" rid="ref12 ref13 ref16 ref21 ref38 ref5 ref6">38, 16, 6, 5, 13, 21, 12</xref>
        ]
operate as follows. Generate a single partition using a clustering algorithm of choice.
Next, find another partition that is both far from the first partition and of high
quality. Most methods stop here, but a few methods try to discover more
alternate partitions; they repeatedly find new, still high-quality, partitions that are
far from all existing partitions. This effectively produces a variety of partitions,
but the quality of each successive partition degrades quickly.
      </p>
      <p>
        Although there are a few other methods that try to discover alternate
partitions simultaneously [
        <xref ref-type="bibr" rid="ref10 ref29 ref37">10, 29, 37</xref>
        ], they are usually limited to discovering two
partitions of the data. Other methods that generate more than just two
partitions either randomly weigh the features or project the data onto different
subspaces, but use the same clustering technique to get the alternate partitions
in each round. Using the same clustering technique tends to generate partitions
with clusters of similar shapes and might not be able to exploit all the structure
in the data.
      </p>
      <p>
        The problem of k-consensus, which takes as input a set of m k
partitions of a single data set to produce k distinct partitions, has not been studied
as extensively. To obtain the input for this approach, either the output of
several distinct clustering algorithms, or the output of multiple runs of the same
randomized algorithm with different initial seeds are considered [
        <xref ref-type="bibr" rid="ref46 ref47">46, 47</xref>
        ]. This
problem can then be viewed as a clustering problem; that is, finding k clusters
of partitions from the set of input partitions. Therefore, there are many possible
optimization criteria or algorithms that could be explored for this problem as
there are for clustering in general. Most formal optimization problems are
intractable to solve exactly, making heuristics the only option. Furthermore, no
matter the technique, the solution is only as good as the input set of partitions,
independent of the optimization objective. In most k-consensus approaches, the
set of input partitions is usually not diverse enough to give a good solution.
      </p>
      <p>In both cases, these subproblems avoid the full objective of constructing a
diverse set of partitions that represent the landscape of all high-quality partitions.
The alternate clustering approach is often too reliant on the initial partition, has
had only limited success in generalizing the initial step to generate k partitions.
The k-consensus partitioning approach does not verify that its input represents
the space of all high-quality partitions, so a representative set of those input
partitions is not necessarily a representative set of all high-quality partitions.
Our approach. To generate multiple good partitions, we present a new paradigm
which decouples the notion of distance between partitions and the quality of
partitions. Prior methods that generate multiple diverse partitions cannot explore
the space of partitions entirely since the distance component in their objective
functions biases against partitions close to the previously generated ones. These
could be interesting partitions that might now be left out. To avoid this, we
will first look at the space of all partitions more thoroughly and then pick
nonredundant partitions from this set. Let k be the number of diverse partitions
that we seek. Our approach works in two steps. In the first step called the
generation step, we first sample from the space of all partitions proportional to their
quality. Stirling numbers of the second kind, S(n, s) is the number of ways of
partitioning a set of n elements into s nonempty subsets. Therefore, this is the
size of the space that we sample from. We illustrate the sampling in figure 1. This
generates a set of size m k to ensure we get a diverse sample that represents
the space of all partitions well, since generating only k partitions in this phase
may “accidentally” miss some high quality region of P. Next, in the grouping
step, we cluster this set of m partitions into k sets, resulting in k clusters of
partitions. We then return one representative from each of these k clusters as
our output alternate partitions.</p>
      <p>: Samples generated proportional to quality
P)i
(
y
t
li
a
u
Q</p>
      <p>P1</p>
      <p>Space of all partitions</p>
      <p>RP</p>
      <p>PS(n,s)
of partitions, for instance, either guided just by the spatial distance between
partitions, or also by a density-based distance which only takes into account the
number of high-quality partitions assigned to a cluster.</p>
      <p>
        From our experimental evaluation, we note that decoupling the generation
step from the grouping step helps as we are able to generate a lot of very high
quality partitions. In fact, the quality of some of the generated partitions is
better than the quality of the partition obtained by a consensus clustering technique
called LiftSSD [
        <xref ref-type="bibr" rid="ref39">39</xref>
        ]. The relative quality w.r.t. the reference partition of a few
generated partitions even reach close to 1. To our best knowledge, such
partitions have not been uncovered by other previous meta-clustering techniques. The
grouping step also picks out representative partitions far-away from each other.
We observe this by computing the closest-pair distance between representatives
and comparing it against the distance values of the partitions to their closest
representative.
      </p>
      <p>Outline. In Section 2, we discuss a sampling-based approach for generating many
partitions proportional to their quality; i.e. the higher the quality of a partition,
the more likely it is to be sampled. In Section 3, we describe how to choose k
representative partitions from the large collection partitions already generated.
We will present the results of our approach in Section 4. We have tested our
algorithms on a synthetic dataset, a standard clustering dataset from the UCI
repository and a subset of images from the Yale Face database B.
2</p>
    </sec>
    <sec id="sec-2">
      <title>Generating Many High Quality Partitions</title>
      <p>In this section we describe how to generate many high quality partitions. This
requires (1) a measure of quality, and (2) an algorithm that generates a partition
with probability proportional to its quality.
2.1</p>
      <sec id="sec-2-1">
        <title>Quality of Partitions</title>
        <p>
          Most work on clustering validity criteria look at a combination of how compact
clusters are and how separated two clusters are. Some of the popular measures
that follow this theme are S Dbw, CDbw, SD validity index, maximum likelihood
and Dunn index [
          <xref ref-type="bibr" rid="ref15 ref17 ref23 ref24 ref32 ref36 ref4 ref44">23, 24, 36, 44, 15, 4, 32, 17</xref>
          ]. Ackerman et. al. also discuss similar
notions of quality, namely VR (variance ratio) and WPR (worst pair ratio) in
their study of clusterability [
          <xref ref-type="bibr" rid="ref1 ref2">1, 2</xref>
          ]. We briefly describe a few specific notions of
quality below.
k-Means quality. If the elements x ∈ X belong to a metric space with an
underlying distance δ : X × X → R and each cluster Xi,j in a partition Xi is
represented by a single element x¯j , then we can measure the inverse quality of a
cluster by q¯(Xi,j ) = Px∈Xi,j δ(x, x¯j )2. Then the quality of the entire partition
is then the inverse of the sum of the inverse qualities of the individual clusters:
Q¯(Xi) = 1/(Ps
j=1 q¯(Xi,j )).
        </p>
        <p>This corresponds to the quality optimized by s-mean clustering 1, and is
quite popular, but is susceptible to outliers. If all but one element of X fit
neatly in s clusters, but the one remaining point is far away, then this one point
dominates the cost of the clustering, even if it is effectively noise. Specifically,
the quality score of this measure is dominated by the points which fit least well
in the clusters, as opposed to the points which are best representative of the true
data. Hence, this quality measure may not paint an accurate picture about the
partition.</p>
        <p>
          Kernel distance quality. We introduce a method to compute quality of a
partition, based on the kernel distance [
          <xref ref-type="bibr" rid="ref30">30</xref>
          ]. Here we start with a similarity function
between two elements of X, typically in the form of a (positive definite) kernel:
K : X × X → R+. If x1, x2 ∈ X are more similar, then K(x1, x2) is smaller
than if they are less similar. Then the overall similarity score between two
clusters Xi,j , Xi,j0 ∈ Xi is defined κ(Xi,j , Xi,j0 ) = Px∈Xi,j Px0∈Xi,j0 K(x, x0), and
a single clusters self-similarity for Xi,j ∈ Xi is defined κ(Xi,j , Xi,j ). Finally, the
overall quality of a partition is defined QK (Xi) = Ps
j=1 κ(Xi,j , Xi,j ).
        </p>
        <p>If X is a metric space, the highest quality partitions divide X into s Voronoi
cells around s points – similar to s-means clustering. However, its score is
dominated by the points which are a good fit to a cluster, rather than outlier points
which do not fit well in any cluster. This is a consequence of how kernels like the
Gaussian kernel taper off with distance, and is the reason we recommend this
measure of cluster quality in our experiments.
2.2</p>
      </sec>
      <sec id="sec-2-2">
        <title>Generation of Partitions Proportional to Quality</title>
        <p>We now discuss how to generate a sample of partitions proportional to their
quality. This procedure will be independent of the measure of quality used, so
we will generically let Q(Xi) denote the quality of a partition. Now the problem
becomes to generate a set Y ⊂ P of partitions where each Xi ∈ Y is drawn
randomly proportionally to Q(Xi).</p>
        <p>
          The standard tool for this problem framework is a Metropolis-Hastings
random-walk sampling procedure [
          <xref ref-type="bibr" rid="ref25 ref26 ref34">34, 25, 26</xref>
          ]. Given a domain X to be sampled and
an energy function Q : X → R, we start with a point x ∈ X, and suggest a new
point x1 that is typically “near” x. The point x1 is accepted unconditionally if
Q(x1) ≥ Q(x), and is accepted with probability Q(x1)/Q(x) if not. Otherwise,
we say that x1 was rejected and instead set x1 = x as the current state. After
some sufficiently large number of such steps t, the expected state of xt is a
random draw from P with probability proportional to Q. To generate many
random samples from P this procedure is repeated many times.
        </p>
        <p>
          In general, Metropolis-Hastings sampling suffers from high autocorrelation,
where consecutive samples are too close to each other. This can happen when
1 it is commonplace to use k in place of s, but we reserve k for other notions in this
paper
far away samples are rejected with high probability. To counteract this
problem, often Gibbs sampling is used [
          <xref ref-type="bibr" rid="ref41">41</xref>
          ]. Here, each proposed step is decomposed
into several orthogonal suggested steps and each is individually accepted or
rejected in order. This effectively constructs one longer step with a much higher
probability of acceptance since each individual step is accepted or rejected
independently. Furthermore, if each step is randomly made proportional to Q, then
we can always accept the suggested step, which reduces the rejection rate.
Metropolis-Hastings-Gibbs sampling for partitions. The Metropolis-Hastings
procedure for partitions works as follows. Given a partition Xi, we wish to select
a random subset Y ⊂ X and randomly reassign the elements of Y to different
clusters. If the size of Y is large, this will have a high probability of rejection,
but if Y is small, then the consecutive clusters will be very similar. Thus, we
use a Gibbs-sampling approach. At each step we choose a random ordering σ of
the elements of X. Now, we start with the current partition Xi and choose the
first element xσ(1) ∈ X. We assign xσ(1) to each of the s clusters generating s
suggested partitions Xij and calculate s quality scores qj = Q(Xij ). Finally, we
select index j with probability qj , and assign xσ(1) to cluster j. Rename the new
partition as Xi. We repeat this for all points in order. Finally, after all elements
have been reassigned, we set Xi+1 to be the resulting partition.
        </p>
        <p>Note that auto-correlation effects may still occur since we tend to have
partitions with high quality, but this effect will be much reduced. Note that we do
not have to run this entire procedure each time we need a new random sample.
It is common in practice to run this procedure for some number t0 (typically
t0 = 1000) of burn-in steps, and then use the next m steps as m random samples
from P. The rationale is that after the burn-in period, the induced Markov chain
is expected to have mixed, and so each new step would yield a random sample
from the stationary distribution.
3</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Grouping the Partitions</title>
      <p>
        Having generated a large collection Z of m k high-quality partitions from
P by random sampling, we now describe a grouping procedure that returns k
representative partitions from this collection. We will start by placing a metric
structure on P. This allows us to view the problem of grouping as a metric
clustering problem. Our approach is independent of any particular choice of metric;
obviously, the specific choice of distance metric and clustering algorithm will
affect the properties of the output set we generate. There are many different
approaches to comparing partitions. While our approach is independent of the
particular choice of distance measure used, we review the main classes.
Membership-based distances. The most commonly used class of distances is
membership-based. These distances compute statistics about the number of pairs
of points which are placed in the same or different cluster in both partitions, and
return a distance based on these statistics. Common examples include the Rand
distance, the variation of information, and the normalized mutual information
[
        <xref ref-type="bibr" rid="ref33 ref40 ref42 ref7">33, 40, 42, 7</xref>
        ]. While these distances are quite popular, they ignore information
about the spatial distribution of points within clusters, and so are unable to
differentiate between partitions that might be significantly different.
Spatially-sensitive distances. In order to rectify this problem, a number of
spatiallyaware measures have been proposed. In general, they work by computing a
concise representation of each cluster and then use the earthmover’s distance (EMD)
[
        <xref ref-type="bibr" rid="ref20">20</xref>
        ] to compare these sets of representatives in a spatially-aware manner. These
include CDistance [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ], dADCO [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ], CC distance [
        <xref ref-type="bibr" rid="ref48">48</xref>
        ], and LiftEMD [
        <xref ref-type="bibr" rid="ref39">39</xref>
        ]. As
discussed in [
        <xref ref-type="bibr" rid="ref39">39</xref>
        ], LiftEMD has the benefit of being both efficient as well as a
well-founded metric, and is the method used here.
      </p>
      <p>Density-based distances. The partitions we consider are generated via a
sampling process that samples more densely in high-quality regions of the space of
partitions. In order to take into account dense samples in a small region, we use
a density-sensitive distance that intuitively spreads out regions of high density.
Consider two partitions Xi and Xi0 . Let d : P × P → R+ be any of the above
natural distances on P. Then let dZ : P × P → R+ be a density-based distance
defined as dZ (Xi, Xi0 ) = |{Xl ∈ Z | d(Xi, Xl) &lt; d(Xi, Xi0 )}|.
3.1</p>
      <sec id="sec-3-1">
        <title>Clusters of Partitions</title>
        <p>
          Once we have specified a distance measure to compare partitions, we can cluster
them. We will use the notation φ(Xi) to denote the representative partition X
is assigned to. We would like to pick k representative partitions, and a simple
algorithm by Gonzalez [
          <xref ref-type="bibr" rid="ref22">22</xref>
          ] provides a 2-approximation to the best clustering
that minimizes the maximum distance between a point and its assigned center.
The algorithm maintains a set of centers k0 &lt; k in C. Let φC (Xi) represent
the partition in C closest to Xi (when apparent we use just φ(Xi) in place of
φC (Xi)). The algorithm chooses Xi ∈ Z with maximum value d(Xi, φ(Xi)). It
adds this partition Xi to C and repeats until C contains k partitions. We run
the Gonzalez method to compute k representative partitions using LiftEMD
between partitions. We also ran the method using the density based distance
derived from using LiftEMD. We got very similar results in both cases and we
will only report the results from using LiftEMD in section 4. We note that other
clustering methods such as k-means and hierarchical agglomerative clustering
yield similar results.
4
        </p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Experimental Evaluation</title>
      <p>In this section, we show the effectiveness of our technique in generating
partitions of good divergence and its power to find partitions with very high quality,
well beyond usual consensus techniques.</p>
      <p>
        Data. We created a synthetic dataset 2D5C with 100 points in 2-dimensions,
for which the data is drawn from 5 Gaussians to produce 5 visibly separate
clusters. We also test our methods on the Iris dataset containing 150 points in
4 dimensions from UCI machine learning repository [
        <xref ref-type="bibr" rid="ref18">18</xref>
        ]. We also use a subset
of the Yale Face Database B [
        <xref ref-type="bibr" rid="ref19">19</xref>
        ] (90 images corresponding to 10 persons and 9
poses in the same illumination). The images are scaled down to 30x40 pixels.
Methodology. For each dataset, we first run k-means to get the first partition
with the same number of clusters specified by the reference partition. Using this
as a seed, we generate m = 4000 partitions after throwing away the first 1000
of them. We then run the Gonzalez k-center method to find 10 representative
partitions. We associate each of the 3990 remaining partitions with the closest
representative partition. We compute and report the quality of each of these
representative partitions. We also measure the LiftEMD distance to each of these
partitions from the reference partition. For comparison, we also plot the quality
of consensus partitions generated by LiftSSD [
        <xref ref-type="bibr" rid="ref39">39</xref>
        ] using inputs from k-means,
single-linkage, average-linkage, complete-linkage and Ward’s method.
4.1
      </p>
      <sec id="sec-4-1">
        <title>Performance Evaluation</title>
        <p>Evaluating partition diversity. We can evaluate partition diversity by
determining how close partitions are to their chosen representatives using LiftEMD. Low
LiftEMD values between partitions will indicate redundancy in the generated
partitions and high LiftEMD values will indicate good partition diversity. The
resulting distribution of distances is presented in Figures 2(a), 2(b), 2(c), in
which we also mark the distance values between a representative and its closest
other representative with red squares. Since we expect that the representative
partitions will be far from each other, those distances provide a baseline for
distances considered large. For all datasets, a majority of the partitions generated
are generally far from the closest representative partition. For instance, in the
Iris data set (2(a)), about three-fourths of the partitions generated are far away
from the closest representative with LiftEMD values ranging between 1.3 and
1.4.</p>
        <p>
          Evaluating partition quality. Secondly, we would like to inspect the quality of the
partitions generated. Since we intend the generation process to sample from the
space of all partitions proportional to the quality, we hope for a majority of the
partitions to be of high quality. The ratio between the kernel distance quality QK
of a partition to that of the reference partition gives us a fair idea of the relative
quality of that partition, with values closer to 1 indicating partitions of higher
quality. The distribution of quality is plotted in Figures 3(a)3(b)3(c). We observe
that for all the datasets, we get a normally distributed quality distribution with
a mean value between 0.62 and 0.8. In addition, we compare the quality of
our generated partitions against the consensus technique LiftSSD. We mark the
quality of the representative partitions with red squares and that of the consensus
partition with a blue circle. For instance, chart 3(a) shows that the relative
quality w.r.t. the reference partition of three-fourths of the partitions is better
than that of the consensus partition. For the Yale Face data, note that we have
two reference partitions namely by pose and by person and we chose the partition
by person as the reference partition due to its superior quality.
Visual inspection of partitions. We ran multi-dimensional scaling [
          <xref ref-type="bibr" rid="ref3">3</xref>
          ] on the
allpairs distances between the 10 representatives for a visual representation of the
space of partitions. We compute the variance of the distances of the partitions
associated with each representative and draw Gaussians around them to depict
the size of each cluster of partitions. For example, for the Iris dataset, as we
can see from chart 4(a), the clusters of partitions are well-separated and are
far from the original reference partition. In figure 5, we show two interesting
representative partitions on the Yale face database. We show the mean image
from each of the 10 clusters. Figure 5(a) is a representative partition very similar
to the partition by person and figure 5(b) resembles the partition by pose.
5
        </p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>Conclusion</title>
      <p>In this paper we introduced a new framework to generate multiple non-redundant
partitions of good quality. Our approach is a two stage process: in the generation
step, we focus on sampling a large number of partitions from the space of all
partitions proportional to the quality and in the grouping step, we identify k
representative partitions that best summarizes the space of all partitions.
s (a) Iris
n
o
iitt0:5
r
laP0:4
a
toT0:3
/
son0:2
ii
t
rta0:1
P
.o 0
N
:01 :20 :03 :04 :05 :06 :07 :80 :90 1 :11 :21 :13 :14</p>
      <p>LiftEMD(Pi, Rep(Pi))</p>
      <p>(b) Yale Face
s
n
o
itt0:4
i
r
a
laP0:3
t
o
s/T0:2
n
o
i
itt0:1
r
a
P
.o 0
N
s
n
o
i
t
irt0:5
a
laP0:4
t
oT0:3
/
s
ion0:2
t
i
rta0:1
P
.o 0
N
:01 :20 :03 :04 :50 :60 :70 :80 :90 1 :11 :21 :13 :14</p>
      <p>LiftEMD(Pi, Rep(Pi))</p>
      <p>(c) 2D5C
:01 :20 :03 :04 :05 :06 :70 :80 :90 1 :11 :21 :13 :14</p>
      <p>LiftEMD(Pi, Rep(Pi))
1;200
1;000
s
ion 800
t
i
rta 600
P
.o 400
N 200</p>
      <p>0
1;000
son 800
i
t
irt 600
a
.oP 400
N 200</p>
      <p>0
1;200
s1;000
n
iito 800
t
raP 600
:06 :64
0
8
6
:
0</p>
      <p>:027 :076 :08 :084 :088
Quality(Pi)/Quality(RP )</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <given-names>M.</given-names>
            <surname>Ackerman</surname>
          </string-name>
          and
          <string-name>
            <given-names>S.</given-names>
            <surname>Ben-David</surname>
          </string-name>
          .
          <article-title>Measures of Clustering Quality: A Working Set of Axioms for Clustering</article-title>
          .
          <source>In proceedings of the 22nd Neural Information Processing Systems</source>
          ,
          <year>2008</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <given-names>M.</given-names>
            <surname>Ackerman</surname>
          </string-name>
          and
          <string-name>
            <given-names>S.</given-names>
            <surname>Ben-David</surname>
          </string-name>
          .
          <article-title>Clusterability: A theoretical study</article-title>
          .
          <source>Journal of Machine Learning Research - Proceedings Track</source>
          ,
          <volume>5</volume>
          :
          <fpage>1</fpage>
          -
          <lpage>8</lpage>
          ,
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <given-names>A.</given-names>
            <surname>Agarwal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. M.</given-names>
            <surname>Phillips</surname>
          </string-name>
          , and
          <string-name>
            <given-names>S.</given-names>
            <surname>Venkatasubramanian</surname>
          </string-name>
          .
          <article-title>Universal multidimensional scaling</article-title>
          .
          <source>In proceedings of the 16th ACM SIGKDD</source>
          ,
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <given-names>J.</given-names>
            <surname>Aldrich</surname>
          </string-name>
          . R. A.
          <article-title>Fisher and the making of maximum likelihood 1912-1922</article-title>
          . Statist. Sci.,
          <volume>12</volume>
          (
          <issue>3</issue>
          ):
          <fpage>162</fpage>
          -
          <lpage>176</lpage>
          ,
          <year>1997</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <given-names>E.</given-names>
            <surname>Bae</surname>
          </string-name>
          and
          <string-name>
            <given-names>J.</given-names>
            <surname>Bailey</surname>
          </string-name>
          .
          <article-title>Coala: A novel approach for the extraction of an alternate clustering of high quality and high dissimilarity</article-title>
          .
          <source>In proceedings of the 6th ICDM</source>
          ,
          <year>2006</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <given-names>E.</given-names>
            <surname>Bae</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Bailey</surname>
          </string-name>
          , and
          <string-name>
            <given-names>G.</given-names>
            <surname>Dong</surname>
          </string-name>
          .
          <article-title>A clustering comparison measure using density profiles and its application to the discovery of alternate clusterings</article-title>
          .
          <source>Data Mining and Knowledge Discovery</source>
          ,
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <given-names>A.</given-names>
            <surname>Ben-Hur</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Elisseeff</surname>
          </string-name>
          ,
          <string-name>
            <surname>and I. Guyon.</surname>
          </string-name>
          <article-title>A stability based method for discovering structure in clustered data</article-title>
          .
          <source>In Pacific Symposium on Biocomputing</source>
          ,
          <year>2002</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <given-names>P.</given-names>
            <surname>Berkhin</surname>
          </string-name>
          .
          <article-title>A survey of clustering data mining techniques</article-title>
          . In J. Kogan,
          <string-name>
            <given-names>C.</given-names>
            <surname>Nicholas</surname>
          </string-name>
          , and M. Teboulle, editors,
          <source>Grouping Multidimensional Data</source>
          , pages
          <fpage>25</fpage>
          -
          <lpage>71</lpage>
          . Springer,
          <year>2006</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <given-names>R. E.</given-names>
            <surname>Bonner</surname>
          </string-name>
          .
          <article-title>On some clustering techniques</article-title>
          .
          <source>IBM J. Res. Dev.</source>
          , 8:
          <fpage>22</fpage>
          -
          <lpage>32</lpage>
          ,
          <year>January 1964</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <given-names>R.</given-names>
            <surname>Caruana</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Elhawary</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Nguyen</surname>
          </string-name>
          , and
          <string-name>
            <given-names>C.</given-names>
            <surname>Smith.</surname>
          </string-name>
          <article-title>Meta clustering</article-title>
          .
          <source>Data Mining</source>
          , IEEE International Conference on,
          <volume>0</volume>
          :
          <fpage>107</fpage>
          -
          <lpage>118</lpage>
          ,
          <year>2006</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>M. Coen</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          <string-name>
            <surname>Ansari</surname>
            , and
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Fillmore</surname>
          </string-name>
          .
          <article-title>Comparing clusterings in space</article-title>
          . In ICML,
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <given-names>X. H.</given-names>
            <surname>Dang</surname>
          </string-name>
          and
          <string-name>
            <given-names>J.</given-names>
            <surname>Bailey</surname>
          </string-name>
          .
          <article-title>Generation of alternative clusterings using the CAMI approach</article-title>
          .
          <source>In proceedings of 10th SDM</source>
          ,
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <given-names>X. H.</given-names>
            <surname>Dang</surname>
          </string-name>
          and
          <string-name>
            <given-names>J.</given-names>
            <surname>Bailey</surname>
          </string-name>
          .
          <article-title>A hierarchical information theoretic technique for the discovery of non linear alternative clusterings</article-title>
          .
          <source>In proceedings of the 16th ACM SIGKDD</source>
          ,
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>S. Das</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Abraham</surname>
          </string-name>
          ,
          <article-title>and</article-title>
          <string-name>
            <given-names>A.</given-names>
            <surname>Konar</surname>
          </string-name>
          . Metaheuristic Clustering. Springer Publishing Company,
          <source>Incorporated, 1st edition</source>
          ,
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <given-names>R. N.</given-names>
            <surname>Dave</surname>
          </string-name>
          .
          <article-title>Validating fuzzy partitions obtained through c-shells clustering</article-title>
          .
          <source>Pattern Recogn. Lett.</source>
          ,
          <volume>17</volume>
          :
          <fpage>613</fpage>
          -
          <lpage>623</lpage>
          , May
          <year>1996</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <given-names>I.</given-names>
            <surname>Davidson</surname>
          </string-name>
          and
          <string-name>
            <given-names>Z.</given-names>
            <surname>Qi</surname>
          </string-name>
          .
          <article-title>Finding alternative clusterings using constraints</article-title>
          .
          <source>In proceedings of the 8th ICDM</source>
          ,
          <year>2008</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <surname>J. C.</surname>
          </string-name>
          <article-title>Dunn</article-title>
          .
          <article-title>Well separated clusters and optimal fuzzy-partitions</article-title>
          .
          <source>Journal of Cybernetics</source>
          ,
          <year>1974</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <string-name>
            <given-names>A.</given-names>
            <surname>Frank</surname>
          </string-name>
          and
          <string-name>
            <surname>A. Asuncion.</surname>
          </string-name>
          <article-title>UCI machine learning repository</article-title>
          ,
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <given-names>A.</given-names>
            <surname>Georghiades</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Belhumeur</surname>
          </string-name>
          , and
          <string-name>
            <given-names>D.</given-names>
            <surname>Kriegman</surname>
          </string-name>
          .
          <article-title>From few to many: Illumination cone models for face recognition under variable lighting and pose</article-title>
          .
          <source>IEEE Trans. Pattern Anal. Mach. Intelligence</source>
          ,
          <volume>23</volume>
          (
          <issue>6</issue>
          ):
          <fpage>643</fpage>
          -
          <lpage>660</lpage>
          ,
          <year>2001</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          20.
          <string-name>
            <given-names>C. R.</given-names>
            <surname>Givens</surname>
          </string-name>
          and
          <string-name>
            <given-names>R. M.</given-names>
            <surname>Shortt</surname>
          </string-name>
          .
          <article-title>A class of wasserstein metrics for probability distributions</article-title>
          .
          <source>Michigan Math Journal</source>
          ,
          <volume>31</volume>
          :
          <fpage>231</fpage>
          -
          <lpage>240</lpage>
          ,
          <year>1984</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          21.
          <string-name>
            <given-names>D.</given-names>
            <surname>Gondek</surname>
          </string-name>
          and
          <string-name>
            <given-names>T.</given-names>
            <surname>Hofmann</surname>
          </string-name>
          .
          <article-title>Non-redundant data clustering</article-title>
          .
          <source>In proceedings of the 4th ICDM</source>
          ,
          <year>2004</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          22.
          <string-name>
            <given-names>T. F.</given-names>
            <surname>Gonzalez</surname>
          </string-name>
          .
          <article-title>Clustering to minimize the maximum intercluster distance</article-title>
          .
          <source>Theor. Comput. Sci.</source>
          ,
          <volume>38</volume>
          :
          <fpage>293</fpage>
          -
          <lpage>306</lpage>
          ,
          <year>1985</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          23.
          <string-name>
            <given-names>M.</given-names>
            <surname>Halkidi</surname>
          </string-name>
          and
          <string-name>
            <given-names>M.</given-names>
            <surname>Vazirgiannis</surname>
          </string-name>
          .
          <article-title>Clustering validity assessment: finding the optimal partitioning of a data set</article-title>
          .
          <source>In proceedings of the 1st ICDM</source>
          ,
          <year>2001</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          24.
          <string-name>
            <surname>M. Halkidi</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Vazirgiannis</surname>
            , and
            <given-names>Y.</given-names>
          </string-name>
          <string-name>
            <surname>Batistakis</surname>
          </string-name>
          .
          <article-title>Quality scheme assessment in the clustering process</article-title>
          .
          <source>In proceedings of the 4th PKDD</source>
          ,
          <year>2000</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          25.
          <string-name>
            <given-names>W. K.</given-names>
            <surname>Hastings</surname>
          </string-name>
          .
          <article-title>Monte carlo sampling methods using markov chains and their applications</article-title>
          .
          <source>Biometrika</source>
          ,
          <volume>57</volume>
          :
          <fpage>97</fpage>
          -
          <lpage>109</lpage>
          ,
          <year>1970</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          26.
          <string-name>
            <surname>P. D. Hoff</surname>
          </string-name>
          .
          <source>A First Course in Bayesian Statistical Methods</source>
          . Springer,
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          27.
          <string-name>
            <surname>A. K. Jain</surname>
          </string-name>
          .
          <article-title>Data clustering: 50 years beyond k-means</article-title>
          .
          <source>Pattern Recogn. Lett.</source>
          ,
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          28.
          <string-name>
            <surname>A. K. Jain</surname>
            ,
            <given-names>M. N.</given-names>
          </string-name>
          <string-name>
            <surname>Murty</surname>
            , and
            <given-names>P. J.</given-names>
          </string-name>
          <string-name>
            <surname>Flynn</surname>
          </string-name>
          .
          <article-title>Data clustering: a review</article-title>
          .
          <source>ACM Comput. Surv.</source>
          ,
          <volume>31</volume>
          :
          <fpage>264</fpage>
          -
          <lpage>323</lpage>
          ,
          <year>September 1999</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          29.
          <string-name>
            <given-names>P.</given-names>
            <surname>Jain</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Meka</surname>
          </string-name>
          ,
          <string-name>
            <given-names>and I. S.</given-names>
            <surname>Dhillon</surname>
          </string-name>
          .
          <article-title>Simultaneous unsupervised learning of disparate clusterings</article-title>
          .
          <source>Stat. Anal. Data Min.</source>
          ,
          <volume>1</volume>
          :
          <fpage>195</fpage>
          -
          <lpage>210</lpage>
          ,
          <year>November 2008</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref30">
        <mixed-citation>
          30.
          <string-name>
            <given-names>S.</given-names>
            <surname>Joshi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R. V.</given-names>
            <surname>Kommaraju</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. M.</given-names>
            <surname>Phillips</surname>
          </string-name>
          , and
          <string-name>
            <given-names>S.</given-names>
            <surname>Venkatasubramanian</surname>
          </string-name>
          .
          <article-title>Comparing distributions and shapes using the kernel distance (to appear)</article-title>
          .
          <source>27th Annual Symposium on Computational Geometry</source>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref31">
        <mixed-citation>
          31. G. G. C. Ma; and
          <string-name>
            <given-names>J.</given-names>
            <surname>Wu</surname>
          </string-name>
          .
          <article-title>Data Clustering: Theory, Algorithms, and</article-title>
          <string-name>
            <surname>Applications. SIAM</surname>
          </string-name>
          , Society for Industrial and Applied Mathematics, illustrated edition, May
          <year>2007</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref32">
        <mixed-citation>
          32.
          <string-name>
            <surname>D. J. C.</surname>
          </string-name>
          <article-title>MacKay</article-title>
          . Information Theory,
          <string-name>
            <given-names>Inference &amp; Learning</given-names>
            <surname>Algorithms</surname>
          </string-name>
          . Cambridge University Press, New York, NY, USA,
          <year>2002</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref33">
        <mixed-citation>
          33.
          <string-name>
            <surname>M. Meila</surname>
          </string-name>
          <article-title>˘. Comparing clusterings-an information based distance</article-title>
          .
          <source>J. Multivar. Anal.</source>
          ,
          <year>2007</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref34">
        <mixed-citation>
          34.
          <string-name>
            <given-names>N.</given-names>
            <surname>Metropolis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. W.</given-names>
            <surname>Rosentbluth</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. N.</given-names>
            <surname>Rosenbluth</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. H.</given-names>
            <surname>Teller</surname>
          </string-name>
          , and
          <string-name>
            <given-names>E.</given-names>
            <surname>Teller</surname>
          </string-name>
          .
          <article-title>Equations of state calculations by fast computing machines</article-title>
          .
          <source>Journal of Chemical Physics</source>
          ,
          <year>1953</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref35">
        <mixed-citation>
          35.
          <string-name>
            <given-names>P.</given-names>
            <surname>Michaud</surname>
          </string-name>
          .
          <article-title>Clustering techniques</article-title>
          .
          <source>Future Generation Computer Systems</source>
          ,
          <year>1997</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref36">
        <mixed-citation>
          36. G. Milligan and
          <string-name>
            <given-names>M.</given-names>
            <surname>Cooper</surname>
          </string-name>
          .
          <article-title>An examination of procedures for determining the number of clusters in a data set</article-title>
          .
          <source>Psychometrika</source>
          ,
          <volume>50</volume>
          :
          <fpage>159</fpage>
          -
          <lpage>179</lpage>
          ,
          <year>1985</year>
          .
          <volume>10</volume>
          .1007/BF02294245.
        </mixed-citation>
      </ref>
      <ref id="ref37">
        <mixed-citation>
          37.
          <string-name>
            <given-names>D.</given-names>
            <surname>Niu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. G.</given-names>
            <surname>Dy</surname>
          </string-name>
          , and
          <string-name>
            <given-names>M. I.</given-names>
            <surname>Jordan</surname>
          </string-name>
          .
          <article-title>Multiple non-redundant spectral clustering views</article-title>
          .
          <source>In ICML'10</source>
          , pages
          <fpage>831</fpage>
          -
          <lpage>838</lpage>
          ,
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref38">
        <mixed-citation>
          38.
          <string-name>
            <given-names>Z.</given-names>
            <surname>Qi</surname>
          </string-name>
          and
          <string-name>
            <surname>I. Davidson.</surname>
          </string-name>
          <article-title>A principled and flexible framework for finding alternative clusterings</article-title>
          .
          <source>In proceedings of the 15th ACM SIGKDD</source>
          ,
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref39">
        <mixed-citation>
          39.
          <string-name>
            <given-names>P.</given-names>
            <surname>Raman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. M.</given-names>
            <surname>Phillips</surname>
          </string-name>
          , and
          <string-name>
            <given-names>S.</given-names>
            <surname>Venkatasubramanian</surname>
          </string-name>
          .
          <article-title>Spatially-aware comparison and consensus for clusterings (to appear)</article-title>
          .
          <source>Proceedings of 11th SDM</source>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref40">
        <mixed-citation>
          40.
          <string-name>
            <surname>W. M. Rand</surname>
          </string-name>
          .
          <article-title>Objective criteria for the evaluation of clustering methods</article-title>
          .
          <source>Journal of the American Statistical Association</source>
          ,
          <volume>66</volume>
          (
          <issue>336</issue>
          ):
          <fpage>846</fpage>
          -
          <lpage>850</lpage>
          ,
          <year>1971</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref41">
        <mixed-citation>
          41.
          <string-name>
            <given-names>G. O.</given-names>
            <surname>Roberts</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Gelman</surname>
          </string-name>
          , and
          <string-name>
            <given-names>W. R.</given-names>
            <surname>Gilks</surname>
          </string-name>
          .
          <article-title>Weak convergence and optimal scaling of random walk metropolis algorithms</article-title>
          .
          <source>Annals of Applied Probability</source>
          ,
          <volume>7</volume>
          :
          <fpage>110</fpage>
          -
          <lpage>120</lpage>
          ,
          <year>1997</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref42">
        <mixed-citation>
          42.
          <string-name>
            <given-names>A.</given-names>
            <surname>Strehl</surname>
          </string-name>
          and
          <string-name>
            <given-names>J.</given-names>
            <surname>Ghosh</surname>
          </string-name>
          .
          <article-title>Cluster ensembles - a knowledge reuse framework for combining multiple partitions</article-title>
          .
          <source>JMLR</source>
          ,
          <volume>3</volume>
          :
          <fpage>583</fpage>
          -
          <lpage>617</lpage>
          ,
          <year>2003</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref43">
        <mixed-citation>
          43.
          <string-name>
            <surname>P.-N. Tan</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Steinbach</surname>
            , and
            <given-names>V.</given-names>
          </string-name>
          <string-name>
            <surname>Kumar</surname>
          </string-name>
          .
          <article-title>Introduction to Data Mining, (First Edition)</article-title>
          .
          <article-title>Addison-Wesley Longman Publishing Co</article-title>
          ., Inc., Boston, MA, USA,
          <year>2005</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref44">
        <mixed-citation>
          44.
          <string-name>
            <given-names>S.</given-names>
            <surname>Theodoridis</surname>
          </string-name>
          and
          <string-name>
            <given-names>K.</given-names>
            <surname>Koutroumbas</surname>
          </string-name>
          .
          <source>Pattern Recognition. Elsevier</source>
          ,
          <year>2006</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref45">
        <mixed-citation>
          45.
          <string-name>
            <given-names>R.</given-names>
            <surname>Xu</surname>
          </string-name>
          and
          <string-name>
            <given-names>D.</given-names>
            <surname>Wunsch</surname>
          </string-name>
          . Clustering. Wiley-IEEE Press,
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref46">
        <mixed-citation>
          46.
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zhang</surname>
          </string-name>
          and
          <string-name>
            <given-names>T.</given-names>
            <surname>Li</surname>
          </string-name>
          .
          <article-title>Consensus clustering + meta clustering = multiple consensus clustering</article-title>
          .
          <source>Florida Artificial Intelligence Research Society Conference</source>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref47">
        <mixed-citation>
          47.
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zhang</surname>
          </string-name>
          and
          <string-name>
            <given-names>T.</given-names>
            <surname>Li</surname>
          </string-name>
          .
          <article-title>Extending consensus clustering to explore multiple clustering views</article-title>
          .
          <source>In proceedings of 11th SDM</source>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref48">
        <mixed-citation>
          48.
          <string-name>
            <surname>D. Zhou</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>and H.</given-names>
          </string-name>
          <string-name>
            <surname>Zha</surname>
          </string-name>
          .
          <article-title>A new Mallows distance based metric for comparing clusterings</article-title>
          .
          <source>In ICML</source>
          ,
          <year>2005</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>