INFO 4300 / CS4300 Information Retrieval slides adapted from - - PowerPoint PPT Presentation

info 4300 cs4300 information retrieval slides adapted
SMART_READER_LITE
LIVE PREVIEW

INFO 4300 / CS4300 Information Retrieval slides adapted from - - PowerPoint PPT Presentation

INFO 4300 / CS4300 Information Retrieval slides adapted from Hinrich Sch utzes, linked from http://informationretrieval.org/ IR 23/26: Hierarchical Clustering & Text Classification Redux Paul Ginsparg Cornell University, Ithaca, NY


slide-1
SLIDE 1

INFO 4300 / CS4300 Information Retrieval slides adapted from Hinrich Sch¨ utze’s, linked from http://informationretrieval.org/

IR 23/26: Hierarchical Clustering & Text Classification Redux

Paul Ginsparg

Cornell University, Ithaca, NY

19 Nov 2009

1 / 61

slide-2
SLIDE 2

Administrativa

Assignment 4 will be available by the end of today (Thu 19 Nov), due Fri 4 Dec (extended to Sun 6 Dec). Discussion 7 (Tues 24 Dec): Peter Norvig, “How to Write a Spelling Corrector” http://norvig.com/spell-correct.html See also http://www.facebook.com/video/video.php?v=644326502463 roughly 00:11:00 – 00:19:15 of a one hour video, but whole first half (or more) if you have time...

2 / 61

slide-3
SLIDE 3

Overview

1

Recap

2

Single-link/Complete-link

3

Centroid/GAAC

4

Variants

5

Labeling clusters

6

Text classification

3 / 61

slide-4
SLIDE 4

Outline

1

Recap

2

Single-link/Complete-link

3

Centroid/GAAC

4

Variants

5

Labeling clusters

6

Text classification

4 / 61

slide-5
SLIDE 5

Hierarchical agglomerative clustering (HAC)

HAC creates a hierachy in the form of a binary tree. Assumes a similarity measure for determining the similarity of two clusters. Up to now, our similarity measures were for documents. We will look at four different cluster similarity measures.

5 / 61

slide-6
SLIDE 6

A dendrogram

1.0 0.8 0.6 0.4 0.2 0.0 Ag trade reform. Back−to−school spending is up Lloyd’s CEO questioned Lloyd’s chief / U.S. grilling Viag stays positive Chrysler / Latin America Ohio Blue Cross Japanese prime minister / Mexico CompuServe reports loss Sprint / Internet access service Planet Hollywood Trocadero: tripling of revenues German unions split War hero Colin Powell War hero Colin Powell Oil prices slip Chains may raise prices Clinton signs law Lawsuit against tobacco companies suits against tobacco firms Indiana tobacco lawsuit Most active stocks Mexican markets Hog prices tumble NYSE closing averages British FTSE index Fed holds interest rates steady Fed to keep interest rates steady Fed keeps interest rates steady Fed keeps interest rates steady

The history of mergers can be read off from left to right. The vertical line of each merger tells us what the similarity of the merger was. We can cut the dendrogram at a particular point (e.g., at 0.1 or 0.4) to get a flat clustering.

6 / 61

slide-7
SLIDE 7

Naive HAC algorithm

SimpleHAC(d1, . . . , dN) 1 for n ← 1 to N 2 do for i ← 1 to N 3 do C[n][i] ← Sim(dn, di) 4 I[n] ← 1 (keeps track of active clusters) 5 A ← [] (collects clustering as a sequence of merges) 6 for k ← 1 to N − 1 7 do i, m ← arg max{i,m:i=m∧I[i]=1∧I[m]=1} C[i][m] 8 A.Append(i, m) (store merge) 9 for j ← 1 to N 10 do (use i as representative for i, m) 11 C[i][j] ← Sim(i, m, j) 12 C[j][i] ← Sim(i, m, j) 13 I[m] ← 0 (deactivate cluster) 14 return A

7 / 61

slide-8
SLIDE 8

Computational complexity of the naive algorithm

First, we compute the similarity of all N × N pairs of documents. Then, in each of N iterations:

We scan the O(N × N) similarities to find the maximum similarity. We merge the two clusters with maximum similarity. We compute the similarity of the new cluster with all other (surviving) clusters.

There are O(N) iterations, each performing a O(N × N) “scan” operation. Overall complexity is O(N3). We’ll look at more efficient algorithms later.

8 / 61

slide-9
SLIDE 9

Key question: How to define cluster similarity

Single-link: Maximum similarity

Maximum similarity of any two documents

Complete-link: Minimum similarity

Minimum similarity of any two documents

Centroid: Average “intersimilarity”

Average similarity of all document pairs (but excluding pairs of docs in the same cluster) This is equivalent to the similarity of the centroids.

Group-average: Average “intrasimilarity”

Average similary of all document pairs, including pairs of docs in the same cluster

9 / 61

slide-10
SLIDE 10

Single-link: Maximum similarity

1 2 3 4 5 6 7 1 2 3 4

b b b b b b b b b b b b b b b b b b b b

10 / 61

slide-11
SLIDE 11

Complete-link: Minimum similarity

1 2 3 4 5 6 7 1 2 3 4

b b b b b b b b b b b b b b b b b b b b

11 / 61

slide-12
SLIDE 12

Centroid: Average intersimilarity

1 2 3 4 5 6 7 1 2 3 4

b b b b b b b b b b b b b b b b b b b b

12 / 61

slide-13
SLIDE 13

Group average: Average intrasimilarity

1 2 3 4 5 6 7 1 2 3 4

b b b b b b b b b b b b b b b b b b b b

13 / 61

slide-14
SLIDE 14

Outline

1

Recap

2

Single-link/Complete-link

3

Centroid/GAAC

4

Variants

5

Labeling clusters

6

Text classification

14 / 61

slide-15
SLIDE 15

Single link HAC

The similarity of two clusters is the maximum intersimilarity – the maximum similarity of a document from the first cluster and a document from the second cluster. Once we have merged two clusters, how do we update the similarity matrix? This is simple for single link: sim(ωi, (ωk1 ∪ ωk2)) = max(sim(ωi, ωk1), sim(ωi, ωk2))

15 / 61

slide-16
SLIDE 16

This dendrogram was produced by single-link

1.0 0.8 0.6 0.4 0.2 0.0 Ag trade reform. Back−to−school spending is up Lloyd’s CEO questioned Lloyd’s chief / U.S. grilling Viag stays positive Chrysler / Latin America Ohio Blue Cross Japanese prime minister / Mexico CompuServe reports loss Sprint / Internet access service Planet Hollywood Trocadero: tripling of revenues German unions split War hero Colin Powell War hero Colin Powell Oil prices slip Chains may raise prices Clinton signs law Lawsuit against tobacco companies suits against tobacco firms Indiana tobacco lawsuit Most active stocks Mexican markets Hog prices tumble NYSE closing averages British FTSE index Fed holds interest rates steady Fed to keep interest rates steady Fed keeps interest rates steady Fed keeps interest rates steady

Notice: many small clusters (1 or 2 members) being added to the main cluster There is no balanced 2-cluster or 3-cluster clustering that can be derived by cutting the dendrogram.

16 / 61

slide-17
SLIDE 17

Complete link HAC

The similarity of two clusters is the minimum intersimilarity – the minimum similarity of a document from the first cluster and a document from the second cluster. Once we have merged two clusters, how do we update the similarity matrix? Again, this is simple: sim(ωi, (ωk1 ∪ ωk2)) = min(sim(ωi, ωk1), sim(ωi, ωk2)) We measure the similarity of two clusters by computing the diameter of the cluster that we would get if we merged them.

17 / 61

slide-18
SLIDE 18

Complete-link dendrogram

1.0 0.8 0.6 0.4 0.2 0.0 NYSE closing averages Hog prices tumble Oil prices slip Ag trade reform. Chrysler / Latin America Japanese prime minister / Mexico Fed holds interest rates steady Fed to keep interest rates steady Fed keeps interest rates steady Fed keeps interest rates steady Mexican markets British FTSE index War hero Colin Powell War hero Colin Powell Lloyd’s CEO questioned Lloyd’s chief / U.S. grilling Ohio Blue Cross Lawsuit against tobacco companies suits against tobacco firms Indiana tobacco lawsuit Viag stays positive Most active stocks CompuServe reports loss Sprint / Internet access service Planet Hollywood Trocadero: tripling of revenues Back−to−school spending is up German unions split Chains may raise prices Clinton signs law

Notice that this dendrogram is much more balanced than the single-link one. We can create a 2-cluster clustering with two clusters of about the same size.

18 / 61

slide-19
SLIDE 19

Exercise: Compute single and complete link clusterings

1 2 3 4 1 2 3

×

d5

×

d6

×

d7

×

d8

×

d1

×

d2

×

d3

×

d4

19 / 61

slide-20
SLIDE 20

Single-link clustering

1 2 3 4 1 2 3

×

d5

×

d6

×

d7

×

d8

×

d1

×

d2

×

d3

×

d4

20 / 61

slide-21
SLIDE 21

Complete link clustering

1 2 3 4 1 2 3

×

d5

×

d6

×

d7

×

d8

×

d1

×

d2

×

d3

×

d4

21 / 61

slide-22
SLIDE 22

Single-link vs. Complete link clustering

1 2 3 4 1 2 3

×

d5

×

d6

×

d7

×

d8

×

d1

×

d2

×

d3

×

d4 1 2 3 4 1 2 3

×

d5

×

d6

×

d7

×

d8

×

d1

×

d2

×

d3

×

d4

22 / 61

slide-23
SLIDE 23

Single-link: Chaining

0 1 2 3 4 5 6 1 2

× × × × × × × × × × × ×

Single-link clustering often produces long, straggly clusters. For most applications, these are undesirable.

23 / 61

slide-24
SLIDE 24

What 2-cluster clustering will complete-link produce?

0 1 2 3 4 5 6 7 1

×

d1

×

d2

×

d3

×

d4

×

d5 Coordinates: 1 + 2ε, 4, 5 + 2ε, 6, 7 − ε.

24 / 61

slide-25
SLIDE 25

Complete-link: Sensitivity to outliers

0 1 2 3 4 5 6 7 1

×

d1

×

d2

×

d3

×

d4

×

d5 The complete-link clustering of this set splits d2 from its right neighbors – clearly undesirable. The reason is the outlier d1. This shows that a single outlier can negatively affect the

  • utcome of complete-link clustering.

Single-link clustering does better in this case.

25 / 61

slide-26
SLIDE 26

Outline

1

Recap

2

Single-link/Complete-link

3

Centroid/GAAC

4

Variants

5

Labeling clusters

6

Text classification

26 / 61

slide-27
SLIDE 27

Centroid HAC

The similarity of two clusters is the average intersimilarity – the average similarity of documents from the first cluster with documents from the second cluster. A naive implementation of this definition is inefficient (O(N2)), but the definition is equivalent to computing the similarity of the centroids: sim-cent(ωi, ωj) = µ(ωi) · µ(ωj) = 1 Ni

  • dm∈ωi
  • dm
  • ·

1 Nj

  • dm∈ωj
  • dm
  • =

1 NiNj

  • dm∈ωi
  • dn∈ωj
  • dm ·

dn Hence the name: centroid HAC Note: this is the dot product, not cosine similarity!

27 / 61

slide-28
SLIDE 28

Exercise: Compute centroid clustering

1 2 3 4 5 6 7 1 2 3 4 5

× d1 × d2 × d3 × d4 ×

d5

× d6

28 / 61

slide-29
SLIDE 29

Centroid clustering

1 2 3 4 5 6 7 1 2 3 4 5

× d1 × d2 × d3 × d4 ×

d5

× d6

b c

µ1

b c µ2 b c

µ3

29 / 61

slide-30
SLIDE 30

Inversion in centroid clustering

In an inversion, the similarity increases during a merge

  • sequence. Results in an “inverted” dendrogram.

Below: d1 = (1 + ε, 1), d2 = (5, 1), d3 = (3, 1 + 2 √ 3) Similarity of the first merger (d1 ∪ d2) is -4.0, similarity of second merger ((d1 ∪ d2) ∪ d3) is ≈ −3.5. 1 2 3 4 5 1 2 3 4 5

× × ×

b c

d1 d2 d3 −4 −3 −2 −1 d1 d2 d3

30 / 61

slide-31
SLIDE 31

Inversions

Hierarchical clustering algorithms that allow inversions are inferior. The rationale for hierarchical clustering is that at any given point, we’ve found the most coherent clustering of a given size. Intuitively: smaller clusterings should be more coherent than larger clusterings. An inversion contradicts this intuition: we have a large cluster that is more coherent than one of its subclusters.

31 / 61

slide-32
SLIDE 32

Group-average agglomerative clustering (GAAC)

GAAC also has an “average-similarity” criterion, but does not have inversions. idea is that next merge cluster ωk = ωi ∩ ωj should be coherent: look at all doc–doc similarities within ωk, including those within ωi and within ωj The similarity of two clusters is the average intrasimilarity – the average similarity of all document pairs (including those from the same cluster). But we exclude self-similarities.

32 / 61

slide-33
SLIDE 33

Group-average agglomerative clustering (GAAC)

Again, a naive implementation is inefficient (O(N2)) and there is an equivalent, more efficient, centroid-based definition: sim-ga(ωi, ωj) = 1 (Ni + Nj)(Ni + Nj − 1)

  • dm∈ωi∪ωj
  • dn∈ωi∪ωj

dn=dm

  • dm·

dn = 1 (Ni + Nj)(Ni + Nj − 1)

  • dm∈ωi∪ωj
  • dm

2 − (Ni + Nj)

  • Again, this is the dot product, not cosine similarity.

33 / 61

slide-34
SLIDE 34

Which HAC clustering should I use?

Don’t use centroid HAC because of inversions. In most cases: GAAC is best since it isn’t subject to chaining and sensitivity to outliers. However, we can only use GAAC for vector representations. For other types of document representations (or if only pairwise similarities for document are available): use complete-link. There are also some applications for single-link (e.g., duplicate detection in web search).

34 / 61

slide-35
SLIDE 35

Flat or hierarchical clustering?

For high efficiency, use flat clustering (or perhaps bisecting k-means) For deterministic results: HAC When a hierarchical structure is desired: hierarchical algorithm HAC also can be applied if K cannot be predetermined (can start without knowing K)

35 / 61

slide-36
SLIDE 36

Outline

1

Recap

2

Single-link/Complete-link

3

Centroid/GAAC

4

Variants

5

Labeling clusters

6

Text classification

36 / 61

slide-37
SLIDE 37

Efficient single link clustering

SingleLinkClustering(d1, . . . , dN) 1 for n ← 1 to N 2 do for i ← 1 to N 3 do C[n][i].sim ← SIM(dn, di) 4 C[n][i].index ← i 5 I[n] ← n 6 NBM[n] ← arg maxX∈{C[n][i]:n=i} X.sim 7 A ← [] 8 for n ← 1 to N − 1 9 do i1 ← arg max{i:I[i]=i} NBM[i].sim 10 i2 ← I[NBM[i1].index] 11 A.Append(i1, i2) 12 for i ← 1 to N 13 do if I[i] = i ∧ i = i1 ∧ i = i2 14 then C[i1][i].sim ← C[i][i1].sim ← max(C[i1][i].sim, C[i2][i].sim) 15 if I[i] = i2 16 then I[i] ← i1 17 NBM[i1] ← arg maxX∈{C[i1][i]:I[i]=i∧i=i1} X.sim 18 return A

37 / 61

slide-38
SLIDE 38

Time complexity of HAC

The single-link algorithm we just saw is O(N2). Much more efficient than the O(N3) algorithm we looked at earlier! There is no known O(N2) algorithm for complete-link, centroid and GAAC. Best time complexity for these three is O(N2 log N): See book. In practice: little difference between O(N2 log N) and O(N2).

38 / 61

slide-39
SLIDE 39

Combination similarities of the four algorithms

clustering algorithm sim(ℓ, k1, k2) single-link max(sim(ℓ, k1), sim(ℓ, k2)) complete-link min(sim(ℓ, k1), sim(ℓ, k2)) centroid ( 1

Nm

vm) · ( 1

Nℓ

vℓ) group-average

1 (Nm+Nℓ)(Nm+Nℓ−1)[(

vm + vℓ)2 − (Nm + Nℓ)]

39 / 61

slide-40
SLIDE 40

Comparison of HAC algorithms

method combination similarity time compl.

  • ptimal?

comment single-link max intersimilarity of any 2 docs Θ(N2) yes chaining effect complete-link min intersimilarity of any 2 docs Θ(N2 log N) no sensitive to outliers group-average average of all sims Θ(N2 log N) no best choice for most applications centroid average intersimilarity Θ(N2 log N) no inversions can occur

40 / 61

slide-41
SLIDE 41

What to do with the hierarchy?

Use as is (e.g., for browsing as in Yahoo hierarchy) Cut at a predetermined threshold Cut to get a predetermined number of clusters K

Ignores hierarchy below and above cutting line.

41 / 61

slide-42
SLIDE 42

Bisecting K-means: A top-down algorithm

Start with all documents in one cluster Split the cluster into 2 using K-means Of the clusters produced so far, select one to split (e.g. select the largest one) Repeat until we have produced the desired number of clusters

42 / 61

slide-43
SLIDE 43

Bisecting K-means

BisectingKMeans(d1, . . . , dN) 1 ω0 ← { d1, . . . , dN} 2 leaves ← {ω0} 3 for k ← 1 to K − 1 4 do ωk ← PickClusterFrom(leaves) 5 {ωi, ωj} ← KMeans(ωk, 2) 6 leaves ← leaves \ {ωk} ∪ {ωi, ωj} 7 return leaves

43 / 61

slide-44
SLIDE 44

Bisecting K-means

If we don’t generate a complete hierarchy, then a top-down algorithm like bisecting K-means is much more efficient than HAC algorithms. But bisecting K-means is not deterministic. There are deterministic versions of bisecting K-means but they are much less efficient.

44 / 61

slide-45
SLIDE 45

Outline

1

Recap

2

Single-link/Complete-link

3

Centroid/GAAC

4

Variants

5

Labeling clusters

6

Text classification

45 / 61

slide-46
SLIDE 46

Major issue in clustering – labeling

After a clustering algorithm finds a set of clusters: how can they be useful to the end user? We need a pithy label for each cluster. For example, in search result clustering for “jaguar”, The labels of the three clusters could be “animal”, “car”, and “operating system”. Topic of this section: How can we automatically find good labels for clusters?

46 / 61

slide-47
SLIDE 47

Exercise

Come up with an algorithm for labeling clusters Input: a set of documents, partitioned into K clusters (flat clustering) Output: A label for each cluster Part of the exercise: What types of labels should we consider? Words?

47 / 61

slide-48
SLIDE 48

Discriminative labeling

To label cluster ω, compare ω with all other clusters Find terms or phrases that distinguish ω from the other clusters We can use any of the feature selection criteria we introduced in text classification to identify discriminating terms: mutual information, χ2 and frequency. (but the latter is actually not discriminative)

48 / 61

slide-49
SLIDE 49

Non-discriminative labeling

Select terms or phrases based solely on information from the cluster itself Terms with high weights in the centroid (if we are using a vector space model) Non-discriminative methods sometimes select frequent terms that do not distinguish clusters. For example, Monday, Tuesday, . . . in newspaper text

49 / 61

slide-50
SLIDE 50

Using titles for labeling clusters

Terms and phrases are hard to scan and condense into a holistic idea of what the cluster is about. Alternative: titles For example, the titles of two or three documents that are closest to the centroid. Titles are easier to scan than a list of phrases.

50 / 61

slide-51
SLIDE 51

Cluster labeling: Example

labeling method # docs centroid mutual information title 4 622

  • il plant mexico pro-

duction crude power 000 refinery gas bpd plant oil production barrels crude bpd mexico dolly capac- ity petroleum MEXICO: Hurricane Dolly heads for Mex- ico coast 9 1017 police security rus- sian people military peace killed told grozny court police killed military security peace told troops forces rebels people RUSSIA: Russia’s Lebed meets rebel chief in Chechnya 10 1259 00 000 tonnes traders futures wheat prices cents september tonne delivery traders fu- tures tonne tonnes desk wheat prices 000 00 USA: Export Business

  • Grain/oilseeds com-

plex Three methods: most prominent terms in centroid, differential labeling using MI, title of doc closest to centroid All three methods do a pretty good job.

51 / 61

slide-52
SLIDE 52

Outline

1

Recap

2

Single-link/Complete-link

3

Centroid/GAAC

4

Variants

5

Labeling clusters

6

Text classification

52 / 61

slide-53
SLIDE 53

Relevance feedback

In relevance feedback, the user marks documents as relevant/nonrelevant. Relevant/nonrelevant can be viewed as classes or categories. For each document, the user decides which of these two classes is correct. The IR system then uses these class assignments to build a better query (“model”) of the information need . . . . . . and returns better documents. Relevance feedback is a form of text classification. The notion of text classification (TC) is very general and has many applications within and beyond information retrieval.

53 / 61

slide-54
SLIDE 54

Another TC task: spam filtering

From: ‘‘’’ <takworlld@hotmail.com> Subject: real estate is the only way... gem

  • alvgkay

Anyone can buy real estate with no money down Stop paying rent TODAY ! There is no need to spend hundreds or even thousands for similar courses I am 22 years old and I have already purchased 6 properties using the methods outlined in this truly INCREDIBLE ebook. Change your life NOW ! ================================================= Click Below to order: http://www.wholesaledaily.com/sales/nmd.htm ================================================= How would you write a program that would automatically detect and delete this type of message?

54 / 61

slide-55
SLIDE 55

Formal definition of TC: Training

Given: A document space X

Documents are represented in this space – typically some type

  • f high-dimensional space.

A fixed set of classes C = {c1, c2, . . . , cJ}

The classes are human-defined for the needs of an application (e.g., relevant vs. nonrelevant).

A training set D of labeled documents with each labeled document d, c ∈ X × C Using a learning method or learning algorithm, we then wish to learn a classifier γ that maps documents to classes: γ : X → C

55 / 61

slide-56
SLIDE 56

Formal definition of TC: Application/Testing

Given: a description d ∈ X of a document Determine: γ(d) ∈ C, i.e., the class most appropriate for d

56 / 61

slide-57
SLIDE 57

Topic classification

classes: training set: test set:

regions industries subject areas γ(d′) =China

first private Chinese airline

UK China poultry coffee elections sports

London congestion Big Ben Parliament the Queen Windsor Beijing Olympics Great Wall tourism communist Mao chicken feed ducks pate turkey bird flu beans roasting robusta arabica harvest Kenya votes recount run-off seat campaign TV ads baseball diamond soccer forward captain team

d′

57 / 61

slide-58
SLIDE 58

Examples of how search engines use classification

Standing queries (e.g., Google Alerts) Language identification (classes: English vs. French etc.) The automatic detection of spam pages (spam vs. nonspam) The automatic detection of sexually explicit content (sexually explicit vs. not) Sentiment detection: is a movie or product review positive or negative (positive vs. negative) Topic-specific or vertical search – restrict search to a “vertical” like “related to health” (relevant to vertical vs. not)

58 / 61

slide-59
SLIDE 59

Classification methods: 1. Manual

Manual classification was used by Yahoo in the beginning of the web. Also: ODP, PubMed Very accurate if job is done by experts Consistent when the problem size and team is small Scaling manual classification is difficult and expensive. → We need automatic methods for classification.

59 / 61

slide-60
SLIDE 60

Classification methods: 2. Rule-based

Our Google Alerts example was rule-based classification. There are “IDE” type development environments for writing very complex rules efficiently. (e.g., Verity) Often: Boolean combinations (as in Google Alerts) Accuracy is very high if a rule has been carefully refined over time by a subject expert. Building and maintaining rule-based classification systems is expensive.

60 / 61

slide-61
SLIDE 61

Classification methods: 3. Statistical/Probabilistic

As per our definition of the classification problem – text classification as a learning problem Supervised learning of a the classification function γ and its application to classifying new documents We have looked at a couple of methods for doing this: Rocchio, kNN. Now Naive Bayes No free lunch: requires hand-classified training data But this manual classification can be done by non-experts.

61 / 61