Top Banner
1 Clustering Algorithms Applications Hierarchical Clustering k -Means
33

Clustering Algorithms

Jan 20, 2016

Download

Documents

Selin Kesebir

Clustering Algorithms. Applications Hierarchical Clustering k -Means. Inter-cluster distances are maximized. Intra-cluster distances are minimized. The Problem of Clustering. - PowerPoint PPT Presentation
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Clustering Algorithms

1

Clustering Algorithms

ApplicationsHierarchical Clustering

k -Means

Page 2: Clustering Algorithms

2

The Problem of Clustering Given a set of points, with a notion of

distance between points, group the points into some number of clusters, such that:

Inter-cluster distances are maximized

Intra-cluster distances are

minimized

Page 3: Clustering Algorithms

3

Example: Clustering CD’s

Intuitively: music divides into categories, and customers prefer a few categories. But what are categories really?

Represent a CD by the customers who bought it.

Similar CD’s have similar sets of customers, and vice-versa.

Page 4: Clustering Algorithms

4

The Space of CD’s

Think of a space with one dimension for each customer. Values in a dimension may be 0 or 1

only.

A CD’s point in this space is (x1, x2,…, xk), where xi = 1 iff the i th customer bought the CD.

Page 5: Clustering Algorithms

5

Space of CD’s – (2)

For Amazon, the dimension count is tens of millions.

An alternative: use minhashing/LSH to get Jaccard similarity between “close” CD’s.

1 minus Jaccard similarity can serve as a (non-Euclidean) distance.

Page 6: Clustering Algorithms

6

Example: Clustering Documents

Represent a document by a vector (x1, x2,…, xk), where xi = 1 iff the i th word (in some order) appears in the document.

Documents with similar sets of words may be about the same topic.

Page 7: Clustering Algorithms

7

Example: DNA Sequences Objects are sequences of {C,A,T,G}.

Distance between sequences is edit distance, Minimum number of inserts and deletes

needed to turn one into the other.

Note there is a “distance,” but no convenient space in which points “live.”

Page 8: Clustering Algorithms

8

Distance Measures A Euclidean space has some number

of real-valued dimensions. Based on locations of points in such a

space.

A Non-Euclidean distance is based on properties of points, but not their “location” in a space.

Page 9: Clustering Algorithms

9

Axioms of a Distance Measure

d is a distance measure if it is a function from pairs of objects to real numbers such that:1.d(x,y) > 0. 2.d(x,y) = 0 iff x = y.3.d(x,y) = d(y,x).4.d(x,y) < d(x,z) + d(z,y) (triangle

inequality ).

Page 10: Clustering Algorithms

10

Some Euclidean Distances L2 norm : d(x,y) = square root of the sum of the

squares of the differences between x and y in each dimension.

L1 norm : sum of the differences in each dimension. Manhattan distance = distance if you had to travel

along coordinates only.

x = (5,5)

y = (9,8)L2-norm:dist(x,y) =(42+32)= 5

L1-norm:dist(x,y) =4+3 = 7

4

35

Page 11: Clustering Algorithms

11

Non-Euclidean Distances Jaccard distance for sets = 1 minus ratio

of sizes of intersection and union.

Cosine distance = angle between vectors from the origin to the points in question.

Edit distance = number of inserts and deletes to change one string into another.

Page 12: Clustering Algorithms

12

Jaccard Distance for Sets (Bit-Vectors)

Example: p1 = 10111; p2 = 10011. Size of intersection = 3; size of union

= 4, Jaccard similarity (not distance) = 3/4.

d(x,y) = 1 – (Jaccard similarity) = 1/4.

Page 13: Clustering Algorithms

13

Why J.D. Is a Distance Measure

d(x,x) = 0 because xx = xx. d(x,y) = d(y,x) because union and intersection

are symmetric. d(x,y) > 0 because |xy| < |xy|. d(x,y) < d(x,z) + d(z,y) trickier...

(1 - |x z|/|x z|) + (1 - |y z|/|y z|) 1 - |x y|/|x y|

Remember: |a b|/|a b| = probability that minhash(a) = minhash(b)1 - |a b|/|a b| = prob. that minhash(a) minhash(b).

Claim: prob[mh(x)mh(y)] prob[mh(x)mh(z)] + prob[mh(z)mh(y)]

Proof: Whenever mh(x)mh(y), at least one of mh(x)mh(z) and mh(z)mh(y) must be true.

Page 14: Clustering Algorithms

14

Clustering with JD

{a,b,c}{b,c,e,f}

{d,e,f}{a,b,d,e}

Similarity threshold = 1/3;distance < 2/3

Page 15: Clustering Algorithms

15

Cosine Distance Think of a point as a vector from the origin

(0,0,…,0) to its location. Two points’ vectors make an angle, whose

cosine is the normalized dot-product of the vectors: p1.p2/|p2||p1|. Example: p1 = 00111; p2 = 10011.

p1.p2 = 2; |p1| = |p2| = 3. cos() = 2/3; is about 48 degrees.

• d (p1, p2) = = arccos(p1.p2/|p2||p1|)

Page 16: Clustering Algorithms

16

Why C.D. Is a Distance Measure

d(x,x) = 0 because arccos(1) = 0. d(x,y) = d(y,x) by symmetry. d(x,y) > 0 because angles are chosen

to be in the range 0 to 180 degrees. Triangle inequality: physical

reasoning. If I rotate an angle from x to z and then from z to y, I can’t rotate less than from x to y.

Page 17: Clustering Algorithms

17

Edit Distance The edit distance of two strings is the

number of inserts and deletes of characters needed to turn one into the other.

Example x = abcde ; y = bcduve. Turn x into y by deleting a, then inserting u

and v after d. d(x,y) = 3.

Or, longest common subsequence: LCS(x,y) = bcde.

Note: d(x,y) = |x| + |y| - 2|LCS(x,y)| = 5 + 6 –2*4 = 3 = edit dist.

Page 18: Clustering Algorithms

18

Why Edit Distance Is a Distance Measure

d(x,x) = 0 because 0 edits suffice. d(x,y) = d(y,x) because insert/delete

are inverses of each other. d(x,y) > 0: no notion of negative edits. Triangle inequality: changing x to z

and then to y is one way to change x to y.

Page 19: Clustering Algorithms

19

Methods of Clustering

Hierarchical (Agglomerative): Initially, each point in cluster by itself. Repeatedly combine the two

“nearest” clusters into one. Point Assignment:

Maintain a set of clusters. Place points into their “nearest”

cluster.

Page 20: Clustering Algorithms

20

Hierarchical Clustering

Two important questions:1. How do you determine the

“nearness” of clusters?2. How do you represent a cluster of

more than one point?

Page 21: Clustering Algorithms

21

Hierarchical Clustering – (2)

Key problem: as you build clusters, how do you represent the location of each cluster, to tell which pair of clusters is closest?

Euclidean case: each cluster has a centroid = average of its points. Measure intercluster distances by

distances of centroids.

Page 22: Clustering Algorithms

22

Example

(5,3)o

(1,2)o

o (2,1) o (4,1)

o (0,0) o (5,0)

x (1.5,1.5)

x (4.5,0.5)

x (1,1)x (4.7,1.3)

Page 23: Clustering Algorithms

23

And in the Non-Euclidean Case?

The only “locations” we can talk about are the points themselves. I.e., there is no “average” of two points.

Approach 1: clustroid = point “closest” to other points. Treat clustroid as if it were centroid,

when computing intercluster distances.

Page 24: Clustering Algorithms

24

“Closest” Point?

Possible meanings:1. Smallest maximum distance to the

other points.2. Smallest average distance to other

points.3. Smallest sum of squares of

distances to other points.4. Etc., etc.

Page 25: Clustering Algorithms

25

Example

1 2

34

5

6

interclusterdistance

clustroid

clustroid

Page 26: Clustering Algorithms

26

Other Approaches to Defining “Nearness” of

Clusters Approach 2: intercluster distance =

minimum of the distances between any two points, one from each cluster.

Approach 3: Pick a notion of “cohesion” of clusters, e.g., maximum distance from the clustroid. Merge clusters whose union is most

cohesive.

Page 27: Clustering Algorithms

27

k – Means Algorithm(s)

Assumes Euclidean space. Start by picking k, the number of

clusters. Initialize clusters by picking one point

per cluster. Example: pick one point at random, then

k -1 other points, each as far away as possible from the previous points.

Page 28: Clustering Algorithms

28

Populating Clusters

1. For each point, place it in the cluster whose current centroid it is nearest.

2. After all points are assigned, fix the centroids of the k clusters.

3. Optional: reassign all points to their closest centroid.

Sometimes moves points between clusters.

Page 29: Clustering Algorithms

29

Example: Assigning Clusters

1

2

3

4

5

6

7 8x

x

Clusters after first round

Reassignedpoints

Page 30: Clustering Algorithms

30

Getting k Right Try different k, looking at the

change in the average distance to centroid, as k increases.

Average falls rapidly until right k, then changes little.

k

Averagedistance tocentroid

Best valueof k

Page 31: Clustering Algorithms

31

Example: Picking k

x xx x x xx x x x

x x xx x

xxx x

x x x x x

xx x x

x

x xx x x x x x x

x

x

x

Too few;many longdistancesto centroid.

Page 32: Clustering Algorithms

32

Example: Picking k

x xx x x xx x x x

x x xx x

xxx x

x x x x x

xx x x

x

x xx x x x x x x

x

x

x

Just right;distancesrather short.

Page 33: Clustering Algorithms

33

Example: Picking k

x xx x x xx x x x

x x xx x

xxx x

x x x x x

xx x x

x

x xx x x x x x x

x

x

x

Too many;little improvementin averagedistance.