naïve bayes for text classification: spam detection cis 391 – introduction to artificial...

29
Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were adapted from slides by Chris Manning)

Upload: rudolf-singleton

Post on 25-Dec-2015

237 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

Naïve Bayes for Text Classification:Spam Detection

CIS 391 – Introduction to Artificial Intelligence

(adapted from slides by Massimo Poesio which were adapted from slides by Chris Manning)

Page 2: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 2

Is this spam?From: "" <[email protected]>

Subject: real estate is the only way... gem oalvgkay

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

=================================================

Page 3: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 3

Categorization/Classification

Given:• A description of an instance, xX, where X is the instance

language or instance space.—Issue: how to represent text documents.

• A fixed set of categories:

C = {c1, c2,…, cn}

Determine:• The category of x: c(x)C, where c(x) is a categorization

function whose domain is X and whose range is C.—We want to know how to build categorization functions

(“classifiers”).

Page 4: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 4

Multimedia GUIGarb.Coll.SemanticsML Planning

planningtemporalreasoningplanlanguage...

programmingsemanticslanguageproof...

learningintelligencealgorithmreinforcementnetwork...

garbagecollectionmemoryoptimizationregion...

“planning language proof intelligence”

TrainingData:

TestData:

Classes:(AI)

Document Classification

(Programming) (HCI)

... ...

Page 5: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 5

A Graphical View of Text Classification

NLP

Graphics

AI

Theory

Arch.

Page 6: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 6

EXAMPLES OF TEXT CATEGORIZATION

LABELS=BINARY• “spam” / “not spam”

LABELS=TOPICS• “finance” / “sports” / “asia”

LABELS=OPINION• “like” / “hate” / “neutral”

LABELS=AUTHOR• “Shakespeare” / “Marlowe” / “Ben Jonson”

• The Federalist papers

Page 7: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 7

Methods (1)

Manual classification• Used by Yahoo!, Looksmart, about.com, ODP, Medline• very accurate when job is done by experts• consistent when the problem size and team is small• difficult and expensive to scale

Automatic document classification• Hand-coded rule-based systems

— Reuters, CIA, Verity, …—E.g., assign category if document contains a given boolean combination of

words—Commercial systems have complex query languages (everything in IR

query languages + accumulators)—Accuracy is often very high if a rule has been carefully refined over time by

a subject expert—Building and maintaining these rules is expensive

Page 8: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 8

Classification Methods (2)

Supervised learning of a document-label assignment function• Many systems partly rely on machine learning (Autonomy,

MSN, Verity, Enkata, Yahoo!, …)—k-Nearest Neighbors (simple, powerful)

—Naive Bayes (simple, common method)

—Support-vector machines (new, more powerful)

—… plus many other methods

—No free lunch: requires hand-classified training data

—But data can be built up (and refined) by amateurs

Note that many commercial systems use a mixture of methods

Page 9: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 9

Bayesian Methods

Learning and classification methods based on probability theory

Bayes theorem plays a critical role Build a generative model that approximates how

data is produced Uses prior probability of each category given no

information about an item. Categorization produces a posterior probability

distribution over the possible categories given a description of an item.

Page 10: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 10

Bayes’ Rule once more

)()|()()|(),( CPCDPDPDCPDCP

)(

)()|()|(

DP

CPCDPDCP

Page 11: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 11

Maximum a posteriori Hypothesis

)|(argmax DcPcCc

MAP

)(

)()|(argmax

DP

cPcDP

Cc

)()|(argmax cPcDPCc

As P(D) isconstant

Page 12: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 12

Maximum likelihood Hypothesis

If all hypotheses are a priori equally likely, we only

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

)|(argmax cDPcCc

ML

Page 13: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 13

Naive Bayes Classifiers

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

values into one of the classes cj C

nxxxD ,,, 21

),,,|(argmax 21 nCc

MAP xxxcPc

),,,(

)()|,,,(argmax

21

21

n

n

Cc xxxP

cPcxxxP

)()|,,,(argmax 21 cPcxxxP nCc

Page 14: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 14

Naïve Bayes Classifier: Assumption

P(cj)

• Can be estimated from the frequency of classes in the training examples.

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

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

• Could only be estimated if a very, very large number of training examples was available.

Naïve Bayes Conditional Independence Assumption:

Assume that the probability of observing the conjunction of attributes is equal to the product of the individual probabilities P(xi|cj).

Page 15: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 15

Flu

X1 X2 X5X3 X4

feversinus coughrunnynose muscle-ache

The Naïve Bayes Classifier

Conditional Independence Assumption: features are independent of each other given the class:

This model is appropriate for binary variables

)|()|()|()|,,( 52151 CXPCXPCXPCXXP

Page 16: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 16

Learning the Model

First attempt: maximum likelihood estimates• simply use the frequencies in the data (+ “smoothing”)

)(

),()|(ˆ

j

jiiji cCN

cCxXNcxP

C

X1 X2 X5X3 X4 X6

N

cCNcP j

j

)()(ˆ

Page 17: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 17

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!

Problem with Max Likelihood

0)(

),()|(ˆ 5

5

nfCN

nfCtXNnfCtXP

i ic cxPcP )|(ˆ)(ˆmaxarg

Flu

X1 X2 X5X3 X4

feversinus coughrunnynose muscle-ache

)|()|()|()|,,( 52151 CXPCXPCXPCXXP

Page 18: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 18

Smoothing to Avoid Overfitting

kcCN

cCxXNcxP

j

jiiji

)(

1),()|(ˆ

Somewhat more subtle version

# of values of Xi

mcCN

mpcCxXNcxP

j

kijkiijki

)(

),()|(ˆ ,,

,

overall fraction in data where Xi=xi,k

extent of“smoothing”

Page 19: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 19

Using Naive Bayes Classifiers to Classify Text: Basic method

Attributes are text positions, values are words.

Still too many possibilities Assume that classification is independent of the

positions of the words• Use same parameters for each position• Result is bag of words model

)|text""()|our""()(argmax

)|()(argmax

1j

j

jnjjCc

ijij

CcNB

cxPcxPcP

cxPcPc

Page 20: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 20

• For each word xk in Vocabularynk number of occurrences of xk in all docsj

Naïve Bayes: Learning

From training corpus, extract Vocabulary

Calculate required P(cj) and P(xk | cj) terms• For each cj in C do

docsj subset of documents for which the target class is cj

||||

1)|(

Vocabularydocs

ncxP

j

kjk

|documents # total|

||)( j

j

docscP

Page 21: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 21

Naïve Bayes: Classifying

positions all word positions in current document which contain tokens found in Vocabulary

Return cNB, where

positionsi

jijCc

NB cxPcPc )|()(argmaxj

Page 22: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 22

PANTEL AND LIN: SPAMCOP Uses a Naïve Bayes classifier M is spam if P(Spam|M) > P(NonSpam|M) Method

• Tokenize message using Porter Stemmer• Estimate P(W|C) using m-estimate (a form of smoothing) • Remove words that do not satisfy certain conditions• Train: 160 spams, 466 non-spams• Test: 277 spams, 346 non-spams

Results: ERROR RATE of 4.33%• Worse results using trigrams

Page 23: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 23

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 algorithmsGoal: Financial services industry direct mail response prediction model: Predict if the recipient of mail will actually respond to the advertisement – 750,000 records.

A good dependable baseline for text classification • But not the best!

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

Classifier for problem

Very Fast: • Learning with one pass over the data;

• Testing linear in the number of attributes, and document collection size

Low Storage requirements

Page 24: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 24

REFERENCES Mosteller, F., & Wallace, D. L. (1984). Applied Bayesian and

Classical Inference: the Case of the Federalist Papers (2nd ed.). New York: Springer-Verlag.

P. Pantel and D. Lin, 1998. “SPAMCOP: A Spam classification and organization program”, In Proc. Of the 1998 workshop on learning for text categorization, AAAI

Sebastiani, F., 2002, “Machine Learning in Automated Text Categorization”, ACM Computing Surveys, 34(1), 1-47

Page 25: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

Some additional practical details that we won’t get to in class….

Page 26: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 26

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 probabilities rather than multiplying probabilities.

Class with highest final un-normalized log probability score is still the most probable.

positionsi

jijCc

NB cxPcPc )|(log)(logargmaxj

Page 27: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 27

Feature selection via Mutual Information

We might not want to use all words, but just reliable, good discriminating terms

In training set, choose k words which best discriminate the categories.

One way is using terms with maximal Mutual Information with the classes:

For each word w and each category c

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

),(log),(),(

w ce e cw

cwcw epep

eepeepcwI

Page 28: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 28

Feature selection via MI (contd.)

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, …• rec.autos: car, cars, engine, ford, dealer, mustang, oil, collision,

autos, tires, toyota, … Greedy: does not account for correlations between

terms

Page 29: Naïve Bayes for Text Classification: Spam Detection CIS 391 – Introduction to Artificial Intelligence (adapted from slides by Massimo Poesio which were

CIS 391- Intro to AI 29

Feature Selection Mutual Information

• Clear information-theoretic interpretation• May select rare uninformative terms

Commonest terms:• No particular foundation• In practice often is 90% as good

Other methods: Chi-square, etc….