1 / 38

CS 4100 Artificial Intelligence

CS 4100 Artificial Intelligence. Prof. C. Hafner Class Notes April 3, 2012. Term Project Presentations. Thursday, April 12 Groups: 1. 2. 3. 4. Tuesday, April 17 Groups: 5. 6. 7. 8. 9. Naive Bayes Classifiers: Our next example of machine learning. A supervised learning method

jblanchette
Download Presentation

CS 4100 Artificial Intelligence

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. CS 4100 Artificial Intelligence Prof. C. Hafner Class Notes April 3, 2012

  2. Term Project Presentations Thursday, April 12 Groups: 1. 2. 3. 4. Tuesday, April 17 Groups: 5. 6. 7. 8. 9.

  3. Naive Bayes Classifiers: Our next example of machine learning • A supervised learning method • Making independence assumption, we can explore a simple subset of Bayesian nets, such that: • It is easy to estimate the CPT’s from sample data • Uses a technique called “maximum likelihood estimation” • Given a set of correctly classified representative examples • Q: What estimates of conditional probabilities maximize the likelihood of the data that was observed? • A: The estimates that reflect the sample proportions

  4. # Juniors were Juniors and # Juniors were Non-Juniors # Non-Juniors

  5. Class Exercise: Naive Bayes Classifier with multi-valued variables Major: Science, Arts, Social Science Student characteristics: Gender (M,F), Race/Ethnicity (W, B, H, A) International (T/F) What do the conditional probability tables look like??

  6. Perceptron Leaning Algorithm and BackProp

  7. Perceptron Learning (Supervised) • Assign random weights (or set all to 0) • Cycle through input data until change < target • Let α be the “learning coefficient” • For each input: • If perceptron gives correct answer, do nothing • If perceptron says yes when answer should be no, decrease the weights on all units that “fired” by α • If perceptron says no when answer should be yes, increase the weights on all units that “fired” by α

More Related