133
CS 730: Text Mining for Social Media & Collaboratively Generated Content 1 Mondays 10am-12:30pm Emerson E510 (Conference room) Instructor: Eugene Agichtein (http://www.mathcs.emory.edu/~eugene/ ) 9/13/2010 CS730: Text Mining for Social Media, F2010

& Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

  • Upload
    others

  • View
    2

  • Download
    0

Embed Size (px)

Citation preview

Page 1: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

CS 730: Text Mining for Social Media

& Collaboratively Generated Content

1

& Collaboratively Generated Content

Mondays 10am-12:30pm

Emerson E510 (Conference room)

Instructor: Eugene Agichtein (http://www.mathcs.emory.edu/~eugene/ )

9/13/2010 CS730: Text Mining for Social Media, F2010

Page 2: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Lecture Plan

• Language Models (conclusion, applications)

• Smoothing

• Text classification review• Text classification review

• Word Sense Disambiguation

• Part of Speech Tagging

9/13/2010 CS730: Text Mining for Social Media, F2010 2

Page 3: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Logistics/Plans

• Language models (word, n-gram, …)

�Statistical NLP:

�Language models

�Classification and sequence models�Classification and sequence models

�Part-of-speech tagging, entity tagging, information extraction

• Next week: parsing

• Next->Next week: semantics

• Part II: Social media (research papers start)

9/13/2010 CS730: Text Mining for Social Media, F2010 3

Page 4: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Recap: N-order Markov Models

9/13/2010 CS730: Text Mining for Social Media, F2010 4

Page 5: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Sparsity

9/13/2010 CS730: Text Mining for Social Media, F2010 5

Page 6: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Smoothing Overview

9/13/2010 CS730: Text Mining for Social Media, F2010 6

Page 7: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Smoothing

• Estimating multinomials

• We want to know what words follow some history h

– There’s some true distribution P(w | h)

– We saw some small sample of N words from P(w | h)

– We want to reconstruct a useful approximation of P(w | h)

– Counts of events we didn’t see are always too low (0 < N P(w | h))

9/13/2010 CS730: Text Mining for Social Media, F2010 7

– Counts of events we didn’t see are always too low (0 < N P(w | h))

– Counts of events we did see are in aggregate to high

• Two issues:

– Discounting: how to reserve mass what we haven’t seen

– Interpolation: how to allocate that mass amongst unseen events

Page 8: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Laplace smoothing

• Idea: pretend we saw every word once more than we actually did [Laplace]– Corresponds to a uniform prior over vocabulary

– Think of it as taking items with observed count r > 1 and treating them as having count r* < r

– Holds out V/(N+V) for “fake” events

– N1+/N of which is distributed back to seen words

– N0/(N+V) actually passed on to unseen words (nearly all!)

9/13/2010 CS730: Text Mining for Social Media, F2010 8

– N0/(N+V) actually passed on to unseen words (nearly all!)

– Actually tells us not only how much to hold out, but where to put it

• Works poorly in practice

• Quick fix: add a small δ instead of 1 [Lidstone, Jefferys]

• Slightly better, holds out less mass, still a bad idea

Page 9: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Linear Interpolation

9/13/2010 CS730: Text Mining for Social Media, F2010 9

Page 10: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Good-Turing Smoothing

• Intuition: Can judge rate of novel events by rate of singletons.

• Let N = # of word types with r training tokens

9/13/2010 CS730: Text Mining for Social Media, F2010 10

• Let Nr = # of word types with r training tokens

– e.g., N0 = number of unobserved words

– e.g., N1 = number of singletons

• Let N = Σ r Nr = total # of training tokens

Page 11: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Good-Turing Smoothing (2)

• Let Nr = # of word types with r training tokens

• Let N = Σ r Nr = total # of training tokens

• Naïve estimate: if x has r tokens, p(x) = ?

– Answer: r/N

• Total naïve probability of all words with r tokens?

– Answer: Nr r / N.

9/13/2010 CS730: Text Mining for Social Media, F2010 11

– Answer: Nr r / N.

• Good-Turing estimate of this total probability:

– Defined as: Nr+1 (r+1) / N

– So proportion of novel words in test data is estimated by proportion of singletons in training data.

– Proportion in test data of the N1 singletons is estimated by proportion of the N2 doubletons in training data. Etc.

Page 12: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Backoff Smoothing

• Why are we treating all novel events as the same?

• p(zygote | see the) vs. p(baby | see the)

– Suppose both trigrams have zero count

• baby beats zygote as a unigram

9/13/2010 CS730: Text Mining for Social Media, F2010 12

• baby beats zygote as a unigram

• the baby beats the zygote as a bigram

• see the baby beats see the zygote ?

• As always for backoff:

– Lower-order probabilities (unigram, bigram) aren’t quite what we want

– But we do have enuf data to estimate them & they’re better than nothing.

Page 13: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Backoff Smoothing (2)

• Backoff smoothing

– Holds out same amount of probability mass for novel events

– But divide up unevenly in proportion to backoff prob.

– When defining p(z | xy), the backoff prob for novel z is p(z | y)

• Novel events are types z that were never observed after xy.

– When defining p(z | y), the backoff prob for novel z is p(z)

• Here novel events are types z that were never observed after y.

9/13/2010 CS730: Text Mining for Social Media, F2010 13

• Here novel events are types z that were never observed after y.

• Even if z was never observed after xy, it may have been observed after the shorter, more frequent context y. Then p(z | y) can be estimated without further backoff. If not, we back off further to p(z).

– When defining p(z), do we need a backoff prob for novel z?

• What are novel z in this case? What could the backoff prob be? What if the vocabulary is known and finite? What if it’s potentially infinite?

Page 14: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

How much to subtract?

• Remember the key discounting problem:

– What count should r* should we use for an event that occurred r times in N samples?

– r is too big

• Idea: held-out data [Jelinek and Mercer]

– Get another N samples

9/13/2010 CS730: Text Mining for Social Media, F2010 14

– Get another N samples

– See what the average count of items occurring r times is (e.g. doubletons on average might occur 1.78 times)

– Use those averages as r*

– Much better than add-one, etc.

Page 15: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Importance of Held-Out Data

9/13/2010 CS730: Text Mining for Social Media, F2010 15

Page 16: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Held-Out Reweighting

9/13/2010 CS730: Text Mining for Social Media, F2010 16

Page 17: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

What actually works?

9/13/2010 CS730: Text Mining for Social Media, F2010 17

Page 18: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Review of Text Classification

9/13/2010 CS730: Text Mining for Social Media, F2010 18

Review of Text Classification

Page 19: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

LMs: Language Identification

9/13/2010 CS730: Text Mining for Social Media, F2010 19

Page 20: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Text Classification

9/13/2010 CS730: Text Mining for Social Media, F2010 20

Page 21: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Naïve Bayes Model

9/13/2010 CS730: Text Mining for Social Media, F2010 21

Page 22: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Maximum a posteriori Hypothesis

)|(argmax DhPhHh

MAP∈

)(

)()|(argmax

DP

hPhDPh

HhMAP

=

9/13/2010 CS730: Text Mining for Social Media, F2010 22

)(DPHhMAP

)()|(argmax hPhDPhHh

MAP∈

=

Page 23: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Maximum likelihood Hypothesis

If all hypotheses are a priori equally likely, we only

need to consider the P(D|h) term:

9/13/2010 CS730: Text Mining for Social Media, F2010 23

)|(argmax hDPhHh

ML∈

Page 24: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Naive Bayes Classifiers

Task: Classify a new instance based on a tuple of attribute

values

nxxx ,,, 21 K

),,,|(argmax 21 njMAP xxxcPc K=

9/13/2010 CS730: Text Mining for Social Media, F2010 24

),,,|(argmax 21 njCc

MAP xxxcPcj

K

=

),,,(

)()|,,,(argmax

21

21

n

jjn

CcMAP

cccP

cPcxxxPc

j K

K

=

)()|,,,(argmax 21 jjnCc

MAP cPcxxxPcj

K

=

Page 25: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Naïve Bayes Classifier: Assumptions

• P(cj)

– Can be estimated from the frequency of classes in

the training examples.

• P(x1,x2,…,xn|cj)

– O(|X|n•|C|)

9/13/2010 CS730: Text Mining for Social Media, F2010 25

– O(|X|n•|C|)

– Could only be estimated if a very, very large

number of training examples was available.

Conditional Independence Assumption:

⇒ Assume that the probability of observing the

conjunction of attributes is equal to the product of the

individual probabilities.

Page 26: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Flu

X1 X2 X5X3 X4

The Naïve Bayes Classifier

9/13/2010 CS730: Text Mining for Social Media, F2010 26

X1 X2 X5X3 X4feversinus coughrunnynose muscle-ache

• Conditional Independence Assumption:

features (words) are independent of each

other given the class:

)|()|()|()|,,( 52151 CXPCXPCXPCXXP •••= LK

Page 27: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Learning the Model

• Common practice:maximum likelihood

– simply use the frequencies in the data

C

X1 X2 X5X3 X4 X6

9/13/2010 CS730: Text Mining for Social Media, F2010 27

– simply use the frequencies in the data

)(

),()|(ˆ

j

jii

jicCN

cCxXNcxP

=

===

N

cCNcP

j

j

)()(ˆ

==

Page 28: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Problem with Max Likelihood

• What if we have seen no training cases where patient had no flu

Flu

X1 X2 X5X3 X4feversinus coughrunnynose muscle-ache

)|()|()|()|,,( 52151 CXPCXPCXPCXXP •••= LK

0)(

),()|(ˆ 5

5 ==

=====

nfCN

nfCtXNnfCtXP

9/13/2010 CS730: Text Mining for Social Media, F2010 28

• What if we have seen no training cases where patient had no flu and muscle aches?

• Zero probabilities cannot be conditioned away, no matter the other evidence!

∏=i ic cxPcP )|(ˆ)(ˆmaxargl

Page 29: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Smoothing to Avoid Overfitting

kcCN

cCxXNcxP

j

jii

ji+=

+===

)(

1),()|(ˆ

# of values of Xi

9/13/2010 CS730: Text Mining for Social Media, F2010 29

• Somewhat more subtle version

mcCN

mpcCxXNcxP

j

kijkii

jki+=

+===

)(

),()|(ˆ ,,

,

overall fraction in data where Xi=xi,k

extent of“smoothing”

Page 30: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Underflow Prevention

• Multiplying lots of probabilities, which are

between 0 and 1 by definition, can result in

floating-point underflow.

• Since log(xy) = log(x) + log(y), it is better to

perform all computations by summing logs of

9/13/2010 CS730: Text Mining for Social Media, F2010 30

perform all computations by summing logs of

probabilities rather than multiplying

probabilities.

• Class with highest final un-normalized log

probability score is still the most probable.

Page 31: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Two NB Formulations

9/13/2010 CS730: Text Mining for Social Media, F2010 31

Page 32: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Beyond Naïve Bayes

9/13/2010 CS730: Text Mining for Social Media, F2010 32

Page 33: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Categorization

• Given:

– A description of an instance, x∈X, where X is the

instance language or instance space.

– A fixed set of categories: C={c1, c2,…cn}

9/13/2010 CS730: Text Mining for Social Media, F2010 33

• Determine:

– The category of x: c(x)∈C, where c(x) is a

categorization function whose domain is X and

whose range is C.

Page 34: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Some Terminology: Features

9/13/2010 CS730: Text Mining for Social Media, F2010 34

Page 35: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Features

9/13/2010 CS730: Text Mining for Social Media, F2010 35

Page 36: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Sample Category Learning Problem

• Instance language: <size, color, shape>

– size ∈ {small, medium, large}

– color ∈ {red, blue, green}

– shape ∈ {square, circle, triangle}

• C = {positive, negative}

• D:

9/13/2010 CS730: Text Mining for Social Media, F2010 36

• D: Example Size Color Shape Category

1 small red circle positive

2 large red circle positive

3 small red triangle negative

4 large blue circle negative

Page 37: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

General Learning Issues

• Many hypotheses are usually consistent with the training data.

• Bias

– Any criteria other than consistency with the training data that is used to select a hypothesis.

• Classification accuracy (% of instances classified

9/13/2010 CS730: Text Mining for Social Media, F2010 37

• Classification accuracy (% of instances classified correctly).

– Measured on independent test data.

• Training time (efficiency of training algorithm).

• Testing time (efficiency of subsequent classification).

Page 38: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Binary Classification

• Consider 2 class problems

– Deciding between two classes, perhaps, government and

non-government

[one-versus-rest classification]

9/13/2010 CS730: Text Mining for Social Media, F2010 38

• How do we define (and find) the separating

surface?

• How do we test which region a test doc is in?

Page 39: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Separation by Hyperplanes

• A strong high-bias assumption is linear separability:

– in 2 dimensions, can separate classes by a line

– in higher dimensions, need hyperplanes

• Can find separating hyperplane by linear programming

(or can iteratively fit solution via perceptron):

9/13/2010 CS730: Text Mining for Social Media, F2010 39

(or can iteratively fit solution via perceptron):

– separator can be expressed as ax + by = c

Page 40: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Which Hyperplane?

• Lots of possible solutions for a,b,c.

• Some methods find a separating hyperplane, but not the optimal one [according to some criterion of expected goodness]

– E.g., perceptron

• Most methods find an optimal separating hyperplane

9/13/2010 CS730: Text Mining for Social Media, F2010 40

hyperplane

• Which points should influence optimality?

– All points

• Linear regression

• Naïve Bayes

– Only “difficult points” close to decision boundary

• Support vector machines

Page 41: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Linear classifier: Example

• Class: “interest” (as in interest rate)

• Example features of a linear classifier

• wi

ti

wi

ti

• 0.70 prime

• 0.67 rate• -0.71 dlrs

• -0.35 world

9/13/2010 CS730: Text Mining for Social Media, F2010 41

• To classify, find dot product of feature vector and weights

• 0.67 rate

• 0.63 interest

• 0.60 rates

• 0.46 discount

• 0.43 bundesbank

• -0.35 world

• -0.33 sees

• -0.25 year

• -0.24 group

• -0.24 dlr

Page 42: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Linear Classifiers

• Many common text classifiers are linear classifiers– Naïve Bayes– Perceptron– Rocchio– Logistic regression– Support vector machines (with linear kernel)– Linear regression– (Simple) perceptron neural networks

9/13/2010 CS730: Text Mining for Social Media, F2010 42

–– (Simple) perceptron neural networks

• Despite this similarity, noticeable performance differences– For separable problems, there is an infinite number of

separating hyperplanes. Which one do you choose?– What to do for non-separable problems?– Different training methods pick different hyperplanes

• Classifiers more powerful than linear often don’t perform better. Why?

Page 43: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Naive Bayes is a linear classifier

• Two-class Naive Bayes. We compute:

• Decide class C if the odds is greater than 1, i.e., if the log odds

( | ) ( ) ( | )log log log

( | ) ( ) ( | )w d

P C d P C P w C

P C d P C P w C∈

= +∑

9/13/2010 CS730: Text Mining for Social Media, F2010 43

• Decide class C if the odds is greater than 1, i.e., if the log odds

is greater than 0.

• So decision boundary is hyperplane:

dw#nCwP

CwP

CP

CPn

ww

wVw w

in of soccurrence of ;)|(

)|(log

;)(

)(log where0

==

==×+ ∑ ∈

β

αβα

Page 44: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

High Dimensional Data

• Pictures like the one at right are absolutely

misleading!

• Documents are zero along almost all axes

• Most document pairs are very far apart

(i.e., not strictly orthogonal, but only share

very common words and a few scattered very common words and a few scattered

others)

• In classification terms: virtually all

document sets are separable, for most any

classification

• This is part of why linear classifiers are

quite successful in this domain

9/13/2010 CS730: Text Mining for Social Media, F2010 44

Page 45: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

More Than Two Classes

• Any-of or multivalue classification

– Classes are independent of each other.

– A document can belong to 0, 1, or >1 classes.

– Decompose into n binary problems

– Quite common for documents

9/13/2010 CS730: Text Mining for Social Media, F2010 45

• One-of or multinomial or polytomous

classification

– Classes are mutually exclusive.

– Each document belongs to exactly one class

– E.g., digit recognition is polytomous classification

• Digits are mutually exclusive

Page 46: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Set of Binary Classifiers: Any of

• Build a separator between each class and its complementary set (docs from all other classes).

• Given test string, evaluate it for membership in each class.

9/13/2010 CS730: Text Mining for Social Media, F2010 46

in each class.

• Apply decision criterion of classifiers independently

• Done

– Though maybe you could do better by considering dependencies between categories

Page 47: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Set of Binary Classifiers: One of

• Build a separator between each class and its complementary set (docs from all other classes).

• Given test doc, evaluate it for membership in each class.

• Assign document to class with:

9/13/2010 CS730: Text Mining for Social Media, F2010 47

• Assign document to class with:

– maximum score

– maximum confidence

– maximum probability

• Why different from multiclass/ any of classification?

?

?

?

Page 48: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Evaluating Categorization

• Evaluation must be done on test data that are independent of the training data (usually a disjoint set of instances).

• Classification accuracy: c/n where n is the total number of test instances and c is the number of test instances

9/13/2010 CS730: Text Mining for Social Media, F2010 48

of test instances and c is the number of test instances correctly classified by the system.

• Results can vary based on sampling error due to different training and test sets.

• Average results over multiple training and test sets (splits of the overall data) for the best results.

Page 49: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Other Evaluation Metrics

• Precision: fraction of identified entities that are correct =

P(correct|selected)

• Recall: fraction of correct entities that are identified =

P(selected|correct)

Correct Not Correct

9/13/2010 CS730: Text Mining for Social Media, F2010 49

• Precision P = tp/(tp + fp)

• Recall R = tp/(tp + fn)

Correct Not Correct

Selected TP FP

Not Selected FN TN

Page 50: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

A combined measure: F

• Combined measure that assesses this tradeoff

is F measure (weighted harmonic mean):

RP

PRF

+

+=

−+

=2

2 )1(

1)1(

1

1

β

β

αα

9/13/2010 CS730: Text Mining for Social Media, F2010 50

• Usually use balanced F1 measure

– i.e., with β = 1 or α = ½: F = 2PR/(P+R)

RP

RP

+−+1

)1(1 βαα

Page 51: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Typical Learning Curve

9/13/2010 CS730: Text Mining for Social Media, F2010 51

Page 52: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

SpamAssassin

• Naïve Bayes has found a home in spam filtering

– Graham’s A Plan for Spam

• And its mutant offspring...

– Naive Bayes-like classifier with weird parameter estimation

– Widely used in spam filters

9/13/2010 CS730: Text Mining for Social Media, F2010 52

– Widely used in spam filters

• Classic Naive Bayes superior when appropriately used

• According to David D. Lewis

• Many email filters use NB classifiers

– But also many other things: black hole lists, etc.

Page 53: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

NB on Spam

9/13/2010 CS730: Text Mining for Social Media, F2010 53

Page 54: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Naive Bayes is Not So Naive

• Naïve Bayes: First and Second place in KDD-CUP 97 competition, among 16 (then) state of the art algorithms

Goal: Financial services industry direct mail response prediction model: Predict if the recipient of mail will actually respond to the

advertisement – 750,000 records.

• Benefits:

– Robust to Irrelevant Features

Irrelevant Features cancel each other without affecting results\

– Very good in domains with many equally important features

Decision Trees suffer from fragmentation in such cases – especially if little data

– A good dependable baseline for text classification (but not the best)!

– Very Fast: Learning with one pass over the data; testing linear in the number of attributes, and document collection size

– Low Storage requirements

• Optimal if the Independence Assumptions hold: If assumed independence is correct, then it is the Bayes Optimal Classifier for problem

9/13/2010 CS730: Text Mining for Social Media, F2010 54

Page 55: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Beyond Naïve Bayes

9/13/2010 CS730: Text Mining for Social Media, F2010 55

Page 56: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Joint vs Conditional Models

9/13/2010 CS730: Text Mining for Social Media, F2010 56

Page 57: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Lecture Plan

• Language Models (conclusion, applications)

• Smoothing

• Text classification review• Text classification review

�Word Sense Disambiguation (WSD)

• Part of Speech Tagging

• If time: chunking

9/13/2010 CS730: Text Mining for Social Media, F2010 57

Page 58: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Motivating Example: WSD

9/13/2010 CS730: Text Mining for Social Media, F2010 58

Page 59: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Word Sense Disambiguation

9/13/2010 CS730: Text Mining for Social Media, F2010 59

Page 60: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Verb WSD

9/13/2010 CS730: Text Mining for Social Media, F2010 60

Page 61: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Modeling the word “serve”

9/13/2010 CS730: Text Mining for Social Media, F2010 61

Page 62: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Weighted Windows with NB

9/13/2010 CS730: Text Mining for Social Media, F2010 62

Page 63: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Complex Features with NB

9/13/2010 CS730: Text Mining for Social Media, F2010 63

Page 64: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Discriminative Approach

9/13/2010 CS730: Text Mining for Social Media, F2010 64

Page 65: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Discriminative Models for WSD

9/13/2010 CS730: Text Mining for Social Media, F2010 65

Page 66: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Feature Representation

9/13/2010 CS730: Text Mining for Social Media, F2010 66

Page 67: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Linear Classification

9/13/2010 CS730: Text Mining for Social Media, F2010 67

Page 68: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Maximum Entropy Classifiers

9/13/2010 CS730: Text Mining for Social Media, F2010 68

Page 69: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Building MaxEnt models

9/13/2010 CS730: Text Mining for Social Media, F2010 69

Page 70: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Fitting Model Parameters

9/13/2010 CS730: Text Mining for Social Media, F2010 70

Page 71: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Parameter Estimation: Brute force vs Hill climbing

• Last lecture: brute force/exhaustive search

• Better (in this case): hill climbing / greedy search to maximize data log likelihood (LL(D))

1. Start with some values for {λ1 λ2 λ3 …}

9/13/2010 CS730: Text Mining for Social Media, F2010 71

1. Start with some values for {λ1 λ2 λ3 …}

2. While LL(D) increases (or max iterations)

1. Foreach x in (λ1 λ2 λ3 …)1. Increase or decrease x by small amount

2. LL’ = LL(D, x, λ1 λ2 λ3 …)

3. delta = LL’(D) – LL(D)

4. Remember parameters with highest delta

2. Update parameters, LL(D)

• Guaranteed to find local maximum

Page 72: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Generalization

• Hypotheses must generalize to correctly

classify instances not in the training data.

• Simply memorizing training examples is a

consistent hypothesis that does not

generalize.

9/13/2010 CS730: Text Mining for Social Media, F2010 72

generalize.

• Occam’s razor:

– Finding a simple hypothesis helps ensure

generalization.

Page 73: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Generalization (continued)

• Design general features

– Design (or infer!) feature classes:

• [0-9.\-]+ � NUM

• [A-Z] � CAP

– Feature selection

• Keep only salient and frequent features

9/13/2010 CS730: Text Mining for Social Media, F2010 73

• Keep only salient and frequent features

• Helps avoid overfitting

• Design algorithms to generalize

– Penalize model complexity

– Smoothing

Page 74: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Feature Generalization [Borkar et al, SIGMOD 2001]

9/13/2010 CS730: Text Mining for Social Media, F2010 74

Use cross-validation to

prune hierarchy

Page 75: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Feature Selection: Why?

• Text collections have a large number of features

– 10,000 – 1,000,000 unique words … and more

• May make using a particular classifier feasible

– Some classifiers can’t deal with 100,000 of features

• Reduces training time

– Training time for some methods is quadratic or worse in

9/13/2010 CS730: Text Mining for Social Media, F2010

– Training time for some methods is quadratic or worse in the number of features

• Can improve generalization (performance)

– Eliminates noise features

– Avoids overfitting

75

Page 76: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Feature selection: how?

• Two ideas:

– Hypothesis testing statistics:

• Are we confident that the value of one categorical variable is

associated with the value of another

• Chi-square test

– Information theory:

9/13/2010 CS730: Text Mining for Social Media, F2010 76

– Information theory:

• How much information does the value of one categorical variable

give you about the value of another

• Mutual information

• They’re similar, but χ2 measures confidence in association, (based on

available statistics), while MI measures extent of association (assuming

perfect knowledge of probabilities)

Page 77: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

χ2 statistic (CHI)

• χ2 computes (fo – fe)2/fe summed over all table entries: is the

observed number what you’d expect?

• The null hypothesis is rejected with confidence .999,

)001.(9.129498/)94989500(502/)502500(

75.4/)75.43(25./)25.2(/)(),(

22

2222

<=−+−+

−+−=−=∑p

EEOajχ

9/13/2010 CS730: Text Mining for Social Media, F2010

• The null hypothesis is rejected with confidence .999,

• since 12.9 > 10.83 (the value for .999 confidence).

9500

500

(4.75)

(0.25)

(9498)3Class ≠ auto

(502)2Class = auto

Term ≠ jaguarTerm = jaguarexpected: fe

observed: fo

77

Page 78: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Mutual Information

• Define Mutual Information as

• When x and y are independent p(xi,yj) = p(xi)p(yj), so I(x,y) is

zero

• When x and y are the same, the mutual information of x,y is the

I(x,y) = ∑ p(xi,yj) log [ p(xi,yj) / p(xi)p(yj) ]i,j

9/13/2010 CS730: Text Mining for Social Media, F2010 78

• When x and y are the same, the mutual information of x,y is the

same as the information conveyed by x (or y) alone, which is

just H(x)

• Mutual information can also be expressed as

I(x,y) = H(x) - H(x|y) = H(y) - H(y|x)

• Mutual information is nonnegative

• Mutual information is symmetric; i.e., I(x,y) = I(y,x)

Page 79: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Feature selection via Mutual Information

• In training set, choose k words which best

discriminate (give most info on) the

categories.

• The Mutual Information between a word,

class is:

9/13/2010 CS730: Text Mining for Social Media, F2010 79

class is:

– For each word w and each category c

∑ ∑∈ ∈

=}1,0{ }1,0{ )()(

),(log),(),(

w ce ecw

cw

cwepep

eepeepcwI

Page 80: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Feature selection via MI (continued)

• For each category we build a list of k most

discriminating terms.

• For example (on 20 Newsgroups):

– sci.electronics: circuit, voltage, amp, ground,

copy, battery, electronics, cooling, …

9/13/2010 CS730: Text Mining for Social Media, F2010 80

copy, battery, electronics, cooling, …

– rec.autos: car, cars, engine, ford, dealer, mustang,

oil, collision, autos, tires, toyota, …

• Greedy: does not account for correlations

between terms

• Why?

Page 81: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Feature Selection: MI vs. Chi^2

• Mutual Information

– Clear information-theoretic interpretation

– May select rare uninformative terms

• Chi-square

– Statistical foundation

9/13/2010 CS730: Text Mining for Social Media, F2010 81

– Statistical foundation

– May select very slightly informative frequent terms that are not very useful for classification

• Just use K most frequent terms?

– No particular foundation

– In practice, this is often 90% as good

Page 82: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Feature selection for NB

• In general feature selection is necessary for binomial NB.

• Otherwise you suffer from noise, multi-counting

• “Feature selection” really means something different for

9/13/2010 CS730: Text Mining for Social Media, F2010 82

• “Feature selection” really means something different for

multinomial NB: dictionary truncation

• This “feature selection” normally isn’t needed for multinomial

NB, but may help a little with quantities that are badly

estimated (e.g., trigrams!)

Page 83: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Hidden Markov Model (HMM)

• HMMs allow you to estimate probabilities of

unobserved events

• Given plain text, which underlying parameters

generated the surface

9/13/2010 CS730: Text Mining for Social Media, F2010 83

generated the surface

• E.g., in speech recognition, the observed data is the

acoustic signal and the words are the hidden

parameters

Page 84: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

HMMs and their Usage

• HMMs are very common in NLP:

– Speech recognition (observed: acoustic signal, hidden: words)

– Handwriting recognition (observed: image, hidden: words)

– Part-of-speech tagging (observed: words, hidden: part-of-speech tags)

– Machine translation (observed: foreign words, hidden: words in target

language)

9/13/2010 CS730: Text Mining for Social Media, F2010 84

language)

Page 85: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

HMM Example (FSNLP, 9.2)

• Crazy soda machine: is turned on, runs for a while… is in unknown state at time when you put in the money

CP PPStart

0.70.3 0.5Machine is

turned on

9/13/2010 CS730: Text Mining for Social Media, F2010 85

• Coke Pepsi Sprite

CP: 0.6 0.1 0.3

PP: 0.1 0.7 0.2

Problem: What is the prob. of seeing (pepsi, sprite)?

Solution: Sum all paths through HMM that result in this observed sequence

CP PPStart

0.5

Page 86: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Part-of-Speech (POS) tagging

Input: the lead paint is unsafe

Output: the/Det lead/N paint/N is/V unsafe/Adj

• Uses:

– text-to-speech (how do we pronounce “lead”?)

9/13/2010 CS730: Text Mining for Social Media, F2010 86

– text-to-speech (how do we pronounce “lead”?)

– can write regexps like (Det) Adj* N+ over the output

– preprocessing to speed up parser (but a little dangerous)

– if you know the tag, you can back off to it in other tasks

Page 87: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Part of Speech (POS) Tagging

9/13/2010 CS730: Text Mining for Social Media, F2010 87

Page 88: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Parts of Speech: English

9/13/2010 CS730: Text Mining for Social Media, F2010 88

Page 89: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Degree of Supervision

• Supervised: Training corpus is tagged by humans

• Unsupervised: Training corpus isn’t tagged

• Partly supervised: Training corpus isn’t tagged, but you

have a dictionary giving possible tags for each word

9/13/2010 CS730: Text Mining for Social Media, F2010 89

have a dictionary giving possible tags for each word

• We’ll start with the supervised case and move to

decreasing levels of supervision.

Page 90: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Current Performance

• How many tags are correct?

Input: the lead paint is unsafe

Output: the/Det lead/N paint/N is/V unsafe/Adj

9/13/2010 CS730: Text Mining for Social Media, F2010 90

– About 97% currently

– But baseline is already 90%

• Baseline is performance of stupidest possible method

• Tag every word with its most frequent tag

• Tag unknown words as nouns

Page 91: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

What Should We Look At?

Bill directed a cortege of autos through the dunes

PN Verb Det Noun Prep Noun Prep Det Noun

correct tags

PN Adj Det Noun Prep Noun Prep Det NounVerb Verb Noun Verb

Adj some possible tags for

9/13/2010 CS730: Text Mining for Social Media, F2010 91

Adj some possible tags forPrep each word (maybe more)…?

Each unknown tag is constrained by its wordand by the tags to its immediate left and right.But those tags are unknown too …

Page 92: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

HMMs (for POS tagging)

9/13/2010 CS730: Text Mining for Social Media, F2010 92

Page 93: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Example (from Grishman, Fall 2004)

• Consider a random pig:

– Observations:

• squeeze it 10 times, and 8 times it goes "oink" and 2 times it goes “wee“

– Model topology:

9/13/2010 CS730: Text Mining for Social Media, F2010 93

– Model topology:

• assume it is a stateless pig (no hidden states)

– Parameter estimation:

• Maximum likelihood estimate (MLE) to model the pig as a random emitter with P("oink") = 0.8 and P('“wee") = 0.2. Simply, P(x) = count(X) / total number of trials

• What you are doing for Project 1.1

Page 94: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Training an HMM (Supervised)

1. Define model topology (states, possible arcs)

2. Obtain labeled/tagged data

3. Estimate HMM parameters:

1. Transition probabilities

9/13/2010 CS730: Text Mining for Social Media, F2010 94

1. Transition probabilities

2. Emission probabilities

4. Validate on hold-out data

5. Done.

Page 95: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Transitions and Emissions

9/13/2010 CS730: Text Mining for Social Media, F2010 95

Page 96: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Transitions

9/13/2010 CS730: Text Mining for Social Media, F2010 96

Page 97: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Estimating Transition Probabilities

9/13/2010 CS730: Text Mining for Social Media, F2010 97

Page 98: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Estimating Emission Probabilities

9/13/2010 CS730: Text Mining for Social Media, F2010 98

Page 99: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Decoding

9/13/2010 CS730: Text Mining for Social Media, F2010 99

Page 100: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Finding the Best Trajectory

9/13/2010 CS730: Text Mining for Social Media, F2010 100

Page 101: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Best Trajectory

9/13/2010 CS730: Text Mining for Social Media, F2010 101

Page 102: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Example

Det

Start Adj Stop

p(word seq, tag seq)

Det

Adj

Det

Adj

Det

AdjAdj:directed…

9/13/2010 CS730: Text Mining for Social Media, F2010 102

Start Adj

Noun

StopAdj

Noun

Adj

Noun

Adj

Noun

The best path:

Start Det Adj Adj Noun Stop = 0.32 * 0.0009 …the cool directed autos

Page 103: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

All paths here are 5 words

The Trellis Shape � Cross-Product Construction

0 1 2 3 4

=

.o.

0 1

2

3

εε

9/13/2010 CS730: Text Mining for Social Media, F2010 103

So all paths here must have 5 words on output side

All paths here are 5 words

0,0

1,1

2,1

3,1

1,2

2,2

3,2

1,3

2,3

3,3

1,4

2,4

3,4

4,4

ε

ε

Page 104: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Actually, Trellis Isn’t Complete

Det

Start Adj Stop

p(word seq, tag seq)

Det

Adj

Det

Adj

Det

AdjAdj:directed…

Trellis has no Det � Det or Det �Stop arcs; why?

9/13/2010 CS730: Text Mining for Social Media, F2010 104

Noun Noun Noun Noun

The best path:

Start Det Adj Adj Noun Stop = 0.32 * 0.0009 …the cool directed autos

Page 105: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Actually, Trellis Isn’t Complete

Det

Start Adj Stop

p(word seq, tag seq)

Det

Adj

Det

Adj

Det

AdjAdj:directed…

Lattice is missing some other arcs; why?

9/13/2010 CS730: Text Mining for Social Media, F2010 105

Noun Noun Noun Noun

The best path:

Start Det Adj Adj Noun Stop = 0.32 * 0.0009 …the cool directed autos

Page 106: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Actually, Trellis Isn’t Complete

Det

Start Stop

p(word seq, tag seq)

Adj AdjAdj:directed…

Lattice is missing some states; why?

9/13/2010 CS730: Text Mining for Social Media, F2010 106

Start StopAdj

Noun

Adj

Noun Noun

The best path:

Start Det Adj Adj Noun Stop = 0.32 * 0.0009 …the cool directed autos

Page 107: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Find best path from Start to Stop

• Use dynamic programming (Viterbi alg)

Det

Start Adj

Noun

Stop

Det

Adj

Noun

Det

Adj

Noun

Det

Adj

Noun

Adj:directed…

9/13/2010 CS730: Text Mining for Social Media, F2010 107

• Use dynamic programming (Viterbi alg)

– What is best path from Start to each node?

– Work from left to right

– Each node stores its best path from Start (as probability plus one backpointer)

• Special acyclic case of Dijkstra’s shortest-path alg.

• Faster if some arcs/states are absent

Page 108: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Viterbi Algorithm

9/13/2010 CS730: Text Mining for Social Media, F2010 108

Page 109: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

In Summary• We are modeling p(word seq, tag seq)

• The tags are hidden, but we see the words

• Is tag sequence X likely with these words?

• Noisy channel model is a “Hidden Markov Model”:

0.4 0.6probs

from tag

9/13/2010 CS730: Text Mining for Social Media, F2010 109

Start PN Verb Det Noun Prep Noun Pre

Bill directed a cortege of autos thro

0.001

� Find X that maximizes probability product

from tag

bigram

model

probs from

unigram

replacement

Page 110: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Partially Supervised Tagging

• Accuracy of tagging degrades outside of domain; Often

make errors on important words (e.g., protein names)

• We assumed that we know the underlying model

• Often these parameters are estimated on annotated

λ = (A,B,π )

9/13/2010 CS730: Text Mining for Social Media, F2010 110

• Often these parameters are estimated on annotated

training data, which has two drawbacks:

– Annotation is difficult and/or expensive

– Training data is different from the current data

• We want to maximize the parameters with respect to the

current data, i.e., we’re looking for a model , such thatλ'λ'= argmax

λ

P(O | λ)

Page 111: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Can we train HMM on un-labeled corpus?

• Goal: select parameters maximizing likelihood of training

corpus (observations)

– aij (transition probability from state i to state j)

– bj(w) (probability of emitting word w from state i)

• Procedure more complicated:

– Estimates for emission probs depend on hidden states (not

9/13/2010 CS730: Text Mining for Social Media, F2010 111

– Estimates for emission probs depend on hidden states (not

explicitly given)

– No closed-form solution to estimate parameters known

– Use particular form of hill climbing:

• Expectation Maximization (EM)

– Baum-Welch of Forward-Backward algorithm (M&S p. 333)

Page 112: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Baum-Welch (1)

• Want to estimate:

– aij (transition probability from state i to state j)

• If we had tagged corpus:

– aij = count(transition from state i to state j) /count(transition from state i to any state)

9/13/2010 CS730: Text Mining for Social Media, F2010 112

count(transition from state i to any state)

• Don’t have one. So:

– Assume some initial values for aij and bj(w)

– Use aij and bj(w) to compute expected counts (E)

– Then use E to re-estimate aij � a’ij

– a’ij = E(transition from state i to state j) /E(transition from state i to any state)

Page 113: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Forward Recurrence• What’s the probability of being in state si at time t and going to

state sj, given the current model and parameters?

9/13/2010 CS730: Text Mining for Social Media, F2010 113

Page 114: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Backward Recurrence

9/13/2010 CS730: Text Mining for Social Media, F2010 114

Page 115: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Notation List

• Forward probability:

The probability of being in state si, given the partial observation o1,…,ot

• Backward probability:

The probability of being in state si, given the partial observation ot+1,…,oT

• Transition probability: aij

α t (i)

βt (i)

9/13/2010 CS730: Text Mining for Social Media, F2010 115

• Transition probability: aijThe probability of going from state si, to state sj, given the complete observation o1,…,oT

• Emission probability: bj(w)

• State probability:

The probability of being in state si, given the complete observation o1,…,oT

γ t (i)

Page 116: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Baum-Welch (2)

• To compute the expected values, we use the values computed by the Viterbi algorithm.– Assume the input is w1, ... wT, and the states are numbered 1 to

N.

– The forward probability αj(t) is the probability of being in state j and generating the first t words of the input.

– The backward probability βi(t) is the mirror image: the

aij = count(transition from state i to state j) /

count(transition from state i to any state)

9/13/2010 CS730: Text Mining for Social Media, F2010 116

– The backward probability βi(t) is the mirror image: the probability, starting in state i, of generating the words from word t through the end of the input.

– Let τt(i,j) be the probability of being in state i for word t and state j for word t+1:

• τt(i,j) = αj(t) aij bj(wt+1) βj(t+1) / αN(T)

– then:• a'ij = Σ(t=1 to T-1) τt(i,j) / Σ(t=1 to T-1) Σ(j=1 to N) τt(i,j)

Page 117: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Baum-Welch (4): Emission Probabilities

• Emission probabilities:– bj(w) = count(emissions w from state j) /

count(all words emitted from state j)

• Emission probabilities are re-estimated as

• Formally:

ˆ b i(k) =expected number of times in state si and observe symbol vk

expected number of times in state si

9/13/2010 CS730: Text Mining for Social Media, F2010 117

• Formally:

Where

* Note that here is the Kronecker delta function

ˆ b i(k) =

δ(ot ,vk )γ t (i)t=1

T

γ t (i)t=1

T

δ(ot ,vk ) =1, if ot = vk, and 0 otherwise

δ

Page 118: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Re-estimating Initial State Probabilities

• Initial state distribution: is the probability that si

is a start state

• Re-estimation is easy:

π i

ˆ π i = expected number of times in state si at time 1

9/13/2010 CS730: Text Mining for Social Media, F2010 118

• Formally:

ˆ π i = expected number of times in state si at time 1

ˆ π i = γ1(i)

Page 119: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

The Updated Model (Summary)

• Starting from we get to

by the following update rules:

λ = (A,B,π )

λ'= ( ˆ A , ˆ B , ˆ π )

T −1

9/13/2010 CS730: Text Mining for Social Media, F2010 119

ˆ b i(k) =

δ(ot ,vk )γ t (i)t=1

T

γ t (i)t=1

T

ˆ a i, j =

ξ t (i, j)t=1

T −1

γ t (i)t=1

T −1

ˆ π i = γ1(i)

Page 120: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Summary – Baum-Welch Algorithm

• Start with initial HMM

• Calculate, using F-B, the likelihood to get our observations given that a certain hidden state was used at time i.

• Re-estimate the HMM parameters

9/13/2010 CS730: Text Mining for Social Media, F2010 120

• Re-estimate the HMM parameters

• Continue until convergence

• Baum showed this to monotonically improve data likelihood (not necessarily accuracy!)

Page 121: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Does It Work for POS tagging?

• Using forward-backward for training a model without a tagged corpus: the Xerox tagger– Doug Cutting; Julian Kupiec; Jan Pedersen; Penelope Sibun. A

Practical Part-of-Speech Tagger. ANLP 1992.

– 96% accuracy on Brown corpus

9/13/2010 CS730: Text Mining for Social Media, F2010 121

Page 122: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Does it work (2)?

9/13/2010 CS730: Text Mining for Social Media, F2010 122

Page 123: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Meriado 94: Results

9/13/2010 CS730: Text Mining for Social Media, F2010 123

Page 124: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Expectation Maximization

• The forward-backward algorithm is an instance of

the more general EM algorithm

– The E Step: Compute the forward and backward

probabilities for a give model

The M Step: Re-estimate the model parameters

9/13/2010 CS730: Text Mining for Social Media, F2010 124

– The M Step: Re-estimate the model parameters

– To be continued next lecture…

Page 125: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

POS-tagging Summary

– The task

– Supervised tagging

• Church 1989: HMM

• MaxEnt:

– Ratnaparki 1999

9/13/2010 CS730: Text Mining for Social Media, F2010 125

• ENCG (rule-based)

– Unsupervised (HMMs with Baum Welch)

– Partially supervised (TBL)

• Brill 1994

Page 126: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

POS Tagging final thoughts (1)

• There is no unique set of part-of-speech tags.

– Words can be grouped in different ways to capture different generalizations

– Coarser or finer categories

– The first large (1 M words) tagged corpus was the Brown Corpus (in the 1960’s); used a set of 87 tags.

– Currently the most widely used tag sets are those for the Penn Tree

9/13/2010 CS730: Text Mining for Social Media, F2010 126

– Currently the most widely used tag sets are those for the Penn Tree Bank (45 tags)

– Having a relatively small tag set makes it somewhat easier for people (and programs) to tag the text, but it loses distinctions which may be grammatically important.

• E.g., Penn Tree Bank does not distinguish between prepositions and subordinating conjunctions, or between auxiliary and main verbs.

Page 127: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

POS tagging final thoughts (2)• Naïve memorization baseline:

– Memorize (and predict) most common tag for each word• Accuracy: 90%

• With good unknown word model: 93.7%

• Rule-based approach (English-specific)– Constraint grammar by Fred Karlsson et al. at University of Helsinki.

– Used tag set avoided some of the ambiguities of other tag sets

9/13/2010 CS730: Text Mining for Social Media, F2010 127

– Used tag set avoided some of the ambiguities of other tag sets

– Tagging procedure:1. Dictionary look-up to assign each word all possible parts of speech

2. Apply set of 'constraint rules' to eliminate a particular part of speech.

– These rules were all written by hand, using the annotated corpus to check the correctness of the rules. The final ENGCG (English constraint grammar) system had 3600 rules!

– Accuracy: 98.5% on their tag set

Page 128: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

POS Tagging Final Thoughts (3)

• Supervised (train on Brown or Penn Tree Bank):– TNT: HMM trigram (2-tags back) tagger

• Careful smoothing

• Suffix trees for emissions

• 96.7% accurate on WSJ

• Note: at least 2% error in annotated data.

– Maximum Entropy tagger: Ratnaparkhi (A Maximum Entropy Model for Part-Of-Speech Tagging, EMNLP 1996)

Baseline: 90% naïve or 93.7% better

9/13/2010 CS730: Text Mining for Social Media, F2010 128

• For a sentence with words w1, ..., wn and tags t1, ..., tn, the features combined with tiwere wi-2, wi-1, wi, wi+1, wi+2, ti-1, and ti-2ti-1.

• Feature selection: frequency >= 10

• Used beam search (not full Viterbi – why?), keeping the N best tag sequences at each word.

• Accuracy: 96.5%.

• Ratnaparkhi points out that MaxEnt has the advantage of allowing specialized features (like TBL) and providing probabilities (like an HMM).

– As an example of specialized features, he tried using conjunctions of features for difficult words, but found very little gain.

– He noted that he could improve performance to 97% by using training and test data from only one of the Treebank annotators.

Page 129: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

POS Tagging Final Thoughts (4)

• TBL (Brill 95): Transformation-Based tagger

– Label training set with most frequent tags

DT MD VBD VBD .

The can was rusted .

– Add transformation rules which reduce training

Baseline: 90% naïve or 93.7% better

9/13/2010 CS730: Text Mining for Social Media, F2010 129

– Add transformation rules which reduce training mistakes

MD → NN : DT __

VBD → VBN : VBD __ .

– Stop when no transformations do sufficient good

– Probably the most widely used tagger

– Accuracy: 96.6% / 82.0 %

Page 130: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

POS Tagging Final Thoughts (6)

• Unsupervised POS taggers– Xerox tagger:

• Start with initial HMM

• Use Baum-Welch form of Expectation-Maximization to iteratively re-estimate parameter values (mazimize likelihood of data).

• Continue until convergence

• Accuracy: 96%

– Meriado:

Baseline: 90% naïve or 93.7% better

9/13/2010 CS730: Text Mining for Social Media, F2010 130

– Meriado:• Showed that unsupervised training (Baum-Welch) only helpful for small amount of training data.

Beyond that, hurts

– Brill: Unsupervised TBL• Words are initially assigned all their possible parts of speech, based on a dictionary.

• Transformations are scored by the formula: incontext(Y, C) - (freq (Y) / freq (X)) * incontext(X, C)

where freq(A) is the number of words in the corpus unambiguously tagged with part-of-speech A, and incontext(A, C) is the number of words unambiguously tagged with part-of-speech A in context C.

• When some tagged data is available, Brill first applies his unsupervised tagger, and then his supervised tagger.

Page 131: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

POS Tagging Final Thoughts (6)

• Penn tag set now the standard for assessing English tagging, but forces annotators to make hard decisions � inter-annotator error of 3%

• There are many supervised learning methods which can get 96-97% accuracy on held-out Wall Street Journal data;

– HMMs (variants), TBL, and MaxEnt. The error in the Penn Treebank probably masks differences between the methods

• Unsupervised methods can do quite well using a dictionary, bootstrapping from those (many) words which have only a single part-of-speech;

9/13/2010 CS730: Text Mining for Social Media, F2010 131

from those (many) words which have only a single part-of-speech;

– unsupervised TBL can do almost as well as supervised methods

– adding a bit of supervised training gets near the performance of supervised training on the entire PTB;

– Baum-Welch (Xerox tagger) can do almost as well, but needs clever grouping of ambiguity classes

• ENGCG tags can be more consistently assigned, and hand-written ENGCG rules can get 98%+ accuracy

Page 132: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Big Picture (1): view 1

• Words: “atomic” units of meaning

– Language modeling: predicting next character, phoneme, word

– Parts of speech, word classes, collocations

– Applications: text classification, IR, …

• Sentence structure

– Context free grammars (CFGs)

– Parsing sentences

9/13/2010 CS730: Text Mining for Social Media, F2010 132

– Parsing sentences

– Partial parsing: chunking

– Full parsing methods

– Applications: IE, Machine Translation, grammar checking

• Putting it all together: Semantics / “meaning”

– Named Entities

– Semantic role labeling

– Co-reference resolution

– Entity disambiguation

– Relation|Fact|Event Extraction

– Applications: IR, question answering, text/data mining, intelligence

Page 133: & Collaboratively Generated Contenteugene/cs730/lectures/0913-nlp1.pdfLecture Plan • Language Models (conclusion, applications) • Smoothing • Text classification review • Word

Readings for Next Week (9/20)

• FSNLP: Chapters 6, 7, 9, 10.

9/13/2010 CS730: Text Mining for Social Media, F2010 133