info 4300 cs4300 information retrieval slides adapted
play

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

INFO 4300 / CS4300 Information Retrieval slides adapted from Hinrich Sch utzes, linked from http://informationretrieval.org/ IR 24/26: Text Classification and Naive Bayes Paul Ginsparg Cornell University, Ithaca, NY 24 Nov 2009 1 / 44


  1. INFO 4300 / CS4300 Information Retrieval slides adapted from Hinrich Sch¨ utze’s, linked from http://informationretrieval.org/ IR 24/26: Text Classification and Naive Bayes Paul Ginsparg Cornell University, Ithaca, NY 24 Nov 2009 1 / 44

  2. Administrativa Assignment 4 due Fri 4 Dec (extended to Sun 6 Dec). 2 / 44

  3. Overview Recap 1 Naive Bayes 2 Evaluation of TC 3 NB independence assumptions 4 Discussion 5 3 / 44

  4. Outline Recap 1 Naive Bayes 2 Evaluation of TC 3 NB independence assumptions 4 Discussion 5 4 / 44

  5. Formal definition of TC Training Given: A document space X Documents are represented in some high-dimensional space. A fixed set of classes C = { c 1 , c 2 , . . . , c J } human-defined for needs of application (e.g., rel vs. non-rel). A training set D of labeled documents � d , c � ∈ X × C Using a learning method or learning algorithm, we then wish to learn a classifier γ that maps documents to classes: γ : X → C Application/Testing Given: a description d ∈ X of a document Determine: γ ( d ) ∈ C , i.e., the class most appropriate for d 5 / 44

  6. Classification methods 1. Manual (accurate if done by experts, consistent for problem size and team is small difficult and expensive to scale) 2. Rule-based (accuracy very high if a rule has been carefully refined over time by a subject expert, building and maintaining expensive) 3. Statistical/Probabilistic As per our definition of the classification problem – text classification as a learning problem Supervised learning of a the classification function γ and its application to classifying new documents We have looked at a couple of methods for doing this: Rocchio, kNN. Now Naive Bayes No free lunch: requires hand-classified training data But this manual classification can be done by non-experts. 6 / 44

  7. Outline Recap 1 Naive Bayes 2 Evaluation of TC 3 NB independence assumptions 4 Discussion 5 7 / 44

  8. The Naive Bayes classifier The Naive Bayes classifier is a probabilistic classifier. We compute the probability of a document d being in a class c as follows: � P ( c | d ) ∝ P ( c ) P ( t k | c ) 1 ≤ k ≤ n d n d is the length of the document. (number of tokens) P ( t k | c ) is the conditional probability of term t k occurring in a document of class c P ( t k | c ) as a measure of how much evidence t k contributes that c is the correct class. P ( c ) is the prior probability of c . If a document’s terms do not provide clear evidence for one class vs. another, we choose the c with higher P ( c ). 8 / 44

  9. Maximum a posteriori class Our goal is to find the “best” class. The best class in Naive Bayes classification is the most likely or maximum a posteriori (MAP) class c map : ˆ ˆ � ˆ c map = arg max P ( c | d ) = arg max P ( c ) P ( t k | c ) c ∈ C c ∈ C 1 ≤ k ≤ n d We write ˆ P for P since these values are estimates from the training set. 9 / 44

  10. Taking the log Multiplying lots of small probabilities can result in floating point underflow. Since log( xy ) = log( x ) + log( y ), we can sum log probabilities instead of multiplying probabilities. Since log is a monotonic function, the class with the highest score does not change. So what we usually compute in practice is: � � log ˆ � log ˆ c map = arg max P ( c ) + P ( t k | c ) c ∈ C 1 ≤ k ≤ n d 10 / 44

  11. Naive Bayes classifier Classification rule: � � log ˆ � log ˆ c map = arg max P ( c ) + P ( t k | c ) c ∈ C 1 ≤ k ≤ n d Simple interpretation: Each conditional parameter log ˆ P ( t k | c ) is a weight that indicates how good an indicator t k is for c . The prior log ˆ P ( c ) is a weight that indicates the relative frequency of c . The sum of log prior and term weights is then a measure of how much evidence there is for the document being in the class. We select the class with the most evidence. 11 / 44

  12. Parameter estimation How to estimate parameters ˆ P ( c ) and ˆ P ( t k | c ) from training data? Prior: P ( c ) = N c ˆ N N c : number of docs in class c ; N : total number of docs Conditional probabilities: T ct ˆ P ( t | c ) = � t ′ ∈ V T ct ′ T ct is the number of tokens of t in training documents from class c (includes multiple occurrences) We’ve made a Naive Bayes independence assumption here: P ( t k 1 | c ) = ˆ ˆ P ( t k 2 | c ) 12 / 44

  13. The problem with maximum likelihood estimates: Zeros C = China X 1 = Beijing X 2 = and X 3 = Taipei X 4 = join X 5 = WTO P ( China | d ) ∝ P ( China ) · P ( Beijing | China ) · P ( and | China ) · P ( Taipei | China ) · P ( join | China ) · P ( WTO | China ) If WTO never occurs in class China: TChina , WTO ˆ P ( WTO | China ) = = 0 � t ′ ∈ V TChina , t ′ 13 / 44

  14. The problem with maximum likelihood estimates: Zeros (cont’d) If there were no occurrences of WTO in documents in class China, we’d get a zero estimate: TChina , WTO ˆ P ( WTO | China ) = = 0 � t ′ ∈ V TChina , t ′ → We will get P ( China | d ) = 0 for any document that contains WTO! Zero probabilities cannot be conditioned away. 14 / 44

  15. To avoid zeros: Add-one smoothing Add one to each count to avoid zeros: T ct + 1 T ct + 1 ˆ P ( t | c ) = t ′ ∈ V ( T ct ′ + 1) = � ( � t ′ ∈ V T ct ′ ) + B B is the number of different words (in this case the size of the vocabulary: | V | = M ) 15 / 44

  16. Naive Bayes: Summary Estimate parameters from the training corpus using add-one smoothing For a new document, for each class, compute sum of (i) log of prior, and (ii) logs of conditional probabilities of the terms Assign the document to the class with the largest score 16 / 44

  17. Naive Bayes: Training TrainMultinomialNB ( C , D ) 1 V ← ExtractVocabulary ( D ) 2 N ← CountDocs ( D ) 3 for each c ∈ C 4 do N c ← CountDocsInClass ( D , c ) 5 prior [ c ] ← N c / N 6 text c ← ConcatenateTextOfAllDocsInClass ( D , c ) 7 for each t ∈ V 8 do T ct ← CountTokensOfTerm ( text c , t ) 9 for each t ∈ V T ct +1 10 do condprob [ t ][ c ] ← P t ′ ( T ct ′ +1) 11 return V , prior , condprob 17 / 44

  18. Naive Bayes: Testing ApplyMultinomialNB ( C , V , prior , condprob , d ) 1 W ← ExtractTokensFromDoc ( V , d ) 2 for each c ∈ C 3 do score [ c ] ← log prior [ c ] 4 for each t ∈ W 5 do score [ c ]+ = log condprob [ t ][ c ] 6 return arg max c ∈ C score [ c ] 18 / 44

  19. Exercise docID words in document in c = China ? training set 1 Chinese Beijing Chinese yes 2 Chinese Chinese Shanghai yes 3 Chinese Macao yes 4 Tokyo Japan Chinese no test set 5 Chinese Chinese Chinese Tokyo Japan ? Estimate parameters of Naive Bayes classifier Classify test document 19 / 44

  20. Example: Parameter estimates Priors: ˆ P ( c ) = 3 / 4 and ˆ P ( c ) = 1 / 4 Conditional probabilities: ˆ P ( Chinese | c ) = (5 + 1) / (8 + 6) = 6 / 14 = 3 / 7 P ( Tokyo | c ) = ˆ ˆ P ( Japan | c ) = (0 + 1) / (8 + 6) = 1 / 14 ˆ P ( Chinese | c ) = P ( Tokyo | c ) = ˆ ˆ P ( Japan | c ) = (1 + 1) / (3 + 6) = 2 / 9 The denominators are (8 + 6) and (3 + 6) because the lengths of text c and text c are 8 and 3, respectively, and because the constant B is 6 since the vocabulary consists of six terms. 20 / 44

  21. Example: Classification d 5 = ( Chinese Tokyo Japan ) 3 / 4 · (3 / 7) 3 · 1 / 14 · 1 / 14 ≈ 0 . 0003 ˆ P ( c | d 5 ) ∝ 1 / 4 · (2 / 9) 3 · 2 / 9 · 2 / 9 ≈ 0 . 0001 ˆ P ( c | d 5 ) ∝ Thus, the classifier assigns the test document to c = China : the three occurrences of the positive indicator Chinese in d 5 outweigh the occurrences of the two negative indicators Japan and Tokyo . 21 / 44

  22. Time complexity of Naive Bayes mode time complexity training Θ( | D | L ave + | C || V | ) testing Θ( L a + | C | M a ) = Θ( | C | M a ) L ave : the average length of a doc, L a : length of the test doc, M a : number of distinct terms in the test doc Θ( | D | L ave ) is the time it takes to compute all counts. Θ( | C || V | ) is the time it takes to compute the parameters from the counts. Generally: | C || V | < | D | L ave Why? Test time is also linear (in the length of the test document). Thus: Naive Bayes is linear in the size of the training set (training) and the test document (testing). This is optimal. 22 / 44

  23. Naive Bayes: Analysis Now we want to gain a better understanding of the properties of Naive Bayes. We will formally derive the classification rule . . . . . . and state the assumptions we make in that derivation explicitly. 23 / 44

  24. Derivation of Naive Bayes rule We want to find the class that is most likely given the document: = arg max P ( c | d ) c map c ∈ C Apply Bayes rule P ( A | B ) = P ( B | A ) P ( A ) : P ( B ) P ( d | c ) P ( c ) c map = arg max P ( d ) c ∈ C Drop denominator since P ( d ) is the same for all classes: c map = arg max P ( d | c ) P ( c ) c ∈ C 24 / 44

  25. Too many parameters / sparseness = arg max P ( d | c ) P ( c ) c map c ∈ C = arg max P ( � t 1 , . . . , t k , . . . , t n d �| c ) P ( c ) c ∈ C There are too many parameters P ( � t 1 , . . . , t k , . . . , t n d �| c ), one for each unique combination of a class and a sequence of words. We would need a very, very large number of training examples to estimate that many parameters. This is the problem of data sparseness. 25 / 44

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend