Lirong Xia
Naïve Bayes Classifiers
Friday, April 8, 2014
Nave Bayes Classifiers Lirong Xia Friday, April 8, 2014 Projects - - PowerPoint PPT Presentation
Nave Bayes Classifiers Lirong Xia Friday, April 8, 2014 Projects Project 3 average: 21.03 Project 4 due on 4/18 1 HMMs for Speech 2 Transitions with Bigrams 3 Decoding Finding the words given the acoustics is an HMM
Friday, April 8, 2014
1
2
3
4
1: 1:
* 1: 1: 1: 1: 1:
T T
T T T x T T x
5
– E.g.: for each outcome x, look at the empirical rate of that value: – This is the estimate that maximizes the likelihood of the data
ML
i i
q
ML
6
– Get a large collection of example emails, each labeled “spam” or “ham” – Note: someone has to hand label all this data! – Want to learn to predict labels of new, future emails
used to make the ham / spam decision
– Words: FREE! – Text patterns: $dd, CAPS – Non-text: senderInContacts – ……
7
– Get a large collection of example images, each labeled with a digit – Note: someone has to hand label all this data! – Want to learn to predict labels of new, future digit images
make the digit decision
– Pixels: (6,8) = ON – Shape patterns: NumComponents, AspectRation, NumLoops – ……
8
– Given inputs x, predict labels (classes) y
– Spam detection. input: documents; classes: spam/ham – OCR. input: images; classes: characters – Medical diagnosis. input: symptoms; classes: diseases – Autograder. input: codes; output: grades
9
10
– Training set – Held out set (we will give examples today) – Test set
– Learn parameters (e.g. model probabilities) on training set – (Tune hyperparameters on held-out set) – Compute accuracy of test set – Very important: never “peek” at the test set!
– Accuracy: fraction of instances predicted correctly
– Want a classifier which does well on test data – Overfitting: fitting the training data very closely, but not generalizing well
11
Y × F
n
parameters
1Fn
i |Y
i
12
– Inference (you know this part)
– Learning: Estimates of local conditional probability tables
the model and denoted by θ
13
– Step 1: get joint probability of causes and evidence – Step 2: get probability of evidence – Step 3: renormalize
p y1
p fi | c1
i
p y2
p fi | c2
i
p yk
p fi | ck
i
" # $ $ $ $ $ $ $ $ % & ' ' ' ' ' ' ' '
1 f n
14
– One feature fi,j for each grid position <i,j> – Possible feature values are on / off, based on whether intensity is more or less than 0.5 in underlying image – Each input maps to a feature vector, e.g.
– Here: lots of features, each is binary valued
Pr # $
%,%, … , $ (,() ∝ Pr(#) ,
Pr($
15
16
1 0.1 2 0.1 3 0.1 4 0.1 5 0.1 6 0.1 7 0.1 8 0.1 9 0.1 0.1 1 0.05 2 0.01 3 0.90 4 0.80 5 0.90 6 0.90 7 0.25 8 0.85 9 0.60 0.80 1 0.01 2 0.05 3 0.05 4 0.30 5 0.80 6 0.90 7 0.05 8 0.60 9 0.50 0.80
Pr($
%,' = 1|+)
Pr($
Pr(+)
17
– Collection of emails labeled spam or ham – Note: some one has to hand label all this data! – Split into training, held-out, test sets
– Learn on the training set – (Tune it on a held-out set) – Test it on new emails
18
– Features: Wi is the word at position i – Predict unknown class label (spam vs. ham) – Each Wi is identically distributed
– Usually, each variable gets its own conditional probability distribution p(F|Y) – In a bag-of-words model
p C,W
1Wn
p Wi |C
i
Word at position i, not ith word in the dictionary!
19
p C,W
1Wn
p Wi |C
i
ham 0.66 spam 0.33
|spam p W
the 0.0156 to 0.0153 and 0.0115
0.0095 you 0.0093 a 0.0086 with 0.0080 from 0.0075 …
| ham p W
the 0.0210 to 0.0133
0.0119 2002 0.0110 with 0.0108 from 0.0107 and 0.0105 a 0.0100 …
Word p(w|spam) p(w|ham) Σ log p(w|spam) Σ log p(w|ham) (prior) 0.33333 0.66666
Gary 0.00002 0.00021
would 0.00069 0.00084
you 0.00881 0.00304
like 0.00086 0.00083
to 0.01517 0.01339
lose 0.00008 0.00002
weight 0.00016 0.00002
while 0.00027 0.00027
you 0.00881 0.00304
sleep 0.00006 0.00001
20
21
Pr(feature, Y=2) Pr(Y=2)=0.1 Pr(f1,6=1|Y=2)=0.8 )=0.1 .01 Pr(feature, Y=3) Pr(Y=3)=0.1 p( p( p( Pr(f1,6=1|Y=3)=0.8 Pr(f3,4=1|Y=2)=0.1 Pr(f2,2=1|Y=2)=0.1 Pr(f7,0=1|Y=2)=0.01 Pr(f3,4=1|Y=3)=0.9 Pr(f2,2=1|Y=3)=0.7 Pr(f7,0=1|Y=3)=0.0
22
| ham | spam p W p W
south-west inf nation inf morally inf nicely inf extent inf seriously inf …
| am | am p W sp p W h
screens inf minute inf guaranteed inf $205.00 inf delivery inf signature inf …
23
– Just because we never saw a 3 with pixel (15,15) on during training doesn’t mean we won’t see it at test time – Unlikely that every occurrence of “minute” is 100% spam – Unlikely that every occurrence of “seriously” is 100% spam – What about all the words that don’t occur in the training set at all? – In general, we can’t go around giving unseen events zero probability
– Would get the training data perfect (if deterministic labeling) – Wouldn’t generalize at all – Just making the bag-of-words assumption gives us some generalization, but isn’t enough
estimates
24
– If I flip a coin once, and it’s heads, what’s the estimate for p(heads)? – What if I flip 10 times with 8 heads? – What if I flip 10M times with 8M heads?
– We have some prior expectation about parameters (here, the probability of heads) – Given little evidence, we should skew towards our prior – Given a lot of evidence, we should listen to the data
ML
ML
25
– Pretend you saw every outcome k extra times – What’s Laplace with k=0? – k is the strength of the prior
– Smooth each condition independently:
,0 ,1 ,100 LAP LAP LAP
,
LAP k
26
– When |X| is very large – When |Y| is very large
– Also get p(X) from the data – Make sure the estimate of p(X|Y) isn’t too different from p(X) – What if α is 0? 1?
x | y
x
27
| ham | spam p W p W
helvetica 11.4 seems 10.8 group 10.2 ago 8.4 area 8.3 …
| am | am p W sp p W h
verdana 28.8 Credit 28.4 ORDER 27.2 <FONT> 26.9 money 26.5 …
28
unknowns
– Parameters: the probabilities p(Y|X), p(Y) – Hyperparameters, like the amount of smoothing to do: k,α
– Learn parameters from training data – Must tune hyperparameters on different data
– For each value of the hyperparameters, train and test on the held-out data – Choose the best value and do a final test
29
30
– Have you emailed the sender before? – Have 1K other people just gotten the same email? – Is the sending information consistent? – Is the email in ALL CAPS? – Do inline URLs point where they say they point? – Does the email address you by (your) name?