1 / 19

Naïve Bayes Classifier

Naïve Bayes Classifier. April 25 th , 2006. Classification Methods (1). Manual classification Used by Yahoo!, Looksmart, about.com, ODP Very accurate when job is done by experts Consistent when the problem size and team is small Difficult and expensive to scale. Classification Methods (2).

aneko
Télécharger la présentation

Naïve Bayes Classifier

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Naïve Bayes Classifier April 25th, 2006

  2. Classification Methods (1) • Manual classification • Used by Yahoo!, Looksmart, about.com, ODP • Very accurate when job is done by experts • Consistent when the problem size and team is small • Difficult and expensive to scale

  3. Classification Methods (2) • Automatic classification • Hand-coded rule-based systems • One technique used by CS dept’s spam filter, Reuters, Snort IDS … • E.g., assign category if the instance matches the rules • 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

  4. Classification Methods (3) • Supervised learning of a document-label assignment function • Many systems partly rely on machine learning (Google, MSN, Yahoo!, …) • Naive Bayes (simple, common method) • k-Nearest Neighbors (simple, powerful) • 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

  5. Decision Tree • Strength • Decision trees are able to generate understandable rules. • Decision trees perform classification without requiring much computation. • Decision trees are able to handle both continuous and categorical variables. • Decision trees provide a clear indication of which fields are most important for prediction or classification • Weakness • Error-prone with many classes • Computationally expensive to train, hard to update • Simple true/false decision, nothing in between

  6. Does patient have cancer or not? • A patient takes a lab test and the result comes back positive. It is known that the test returns a correct positive result in only 99% of the cases and a correct negative result in only 95% of the cases. Furthermore, only 0.03 of the entire population has this disease. How likely that this patient has cancer?

  7. Bayesian Methods • Our focus this lecture • Learning and classification methods based on probability theory. • Bayes theorem plays a critical role in probabilistic learning and classification. • 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.

  8. Basic Probability Formulas • Product rule • Sum rule • Bayes theorem • Theorem of total probability, if event Ai is mutually exclusive and probability sum to 1

  9. Bayes Theorem • Given a hypothesis h and data D which bears on the hypothesis: • P(h): independent probability of h: prior probability • P(D): independent probability of D • P(D|h): conditional probability of D given h: likelihood • P(h|D): conditional probability of h given D: posterior probability

  10. Does patient have cancer or not? • A patient takes a lab test and the result comes back positive. It is known that the test returns a correct positive result in only 99% of the cases and a correct negative result in only 95% of the cases. Furthermore, only 0.03 of the entire population has this disease. 1. What is the probability that this patient has cancer? 2. What is the probability that he does not have cancer? 3. What is the diagnosis?

  11. Maximum A Posterior • Based on Bayes Theorem, we can compute the Maximum A Posterior (MAP) hypothesis for the data • We are interested in the best hypothesis for some space H given observed training data D. H: set of all hypothesis. Note that we can drop P(D) as the probability of the data is constant (and independent of the hypothesis).

  12. Maximum Likelihood • Now assume that all hypotheses are equally probable a priori, i.e., P(hi ) = P(hj ) for all hi, hj belong to H. • This is called assuming a uniform prior. It simplifies computing the posterior: • This hypothesis is called the maximum likelihood hypothesis.

  13. Desirable Properties of Bayes Classifier • Incrementality: with each training example, the prior and the likelihood can be updated dynamically: flexible and robust to errors. • Combines prior knowledge and observed data: prior probability of a hypothesis multiplied with probability of the hypothesis given the training data • Probabilistic hypothesis: outputs not only a classification, but a probability distribution over all classes

  14. Bayes Classifiers Assumption: training set consists of instances of different classes described cjas conjunctions of attributes values Task:Classify a new instance d based on a tuple of attribute values into one of the classes cj C Key idea: assign the most probable class using Bayes Theorem.

  15. Parameters estimation • 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. • Independence Assumption: attribute values are conditionally independent given the target value: naïveBayes.

  16. Properties • Estimating instead of greatly reduces the number of parameters (and the data sparseness). • The learning step in Naïve Bayes consists of estimating and based on the frequencies in the training data • An unseen instance is classified by computing the class that maximizes the posterior • When conditioned independence is satisfied, Naïve Bayes corresponds to MAP classification.

  17. Question: For the day <sunny, cool, high, strong>, what’s the play prediction?

  18. 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.

  19. Smoothing to Avoid Overfitting # of values ofXi overall fraction in data where Xi=xi,k • Somewhat more subtle version extent of “smoothing”

More Related