CS 188: Artificial Intelligence Fall 2008

Slides:



Advertisements
Similar presentations
Generative Models Thus far we have essentially considered techniques that perform classification indirectly by modeling the training data, optimizing.
Advertisements

Classification Classification Examples
Linear Classifiers (perceptrons)
Data Mining Classification: Alternative Techniques
Ai in game programming it university of copenhagen Statistical Learning Methods Marco Loog.
CS 188: Artificial Intelligence Spring 2007 Lecture 19: Perceptrons 4/2/2007 Srini Narayanan – ICSI and UC Berkeley.
CS 188: Artificial Intelligence Fall 2009
CS 188: Artificial Intelligence Fall 2009 Lecture 23: Perceptrons 11/17/2009 Dan Klein – UC Berkeley TexPoint fonts used in EMF. Read the TexPoint manual.
Review Rong Jin. Comparison of Different Classification Models  The goal of all classifiers Predicating class label y for an input x Estimate p(y|x)
CS Bayesian Learning1 Bayesian Learning. CS Bayesian Learning2 States, causes, hypotheses. Observations, effect, data. We need to reconcile.
Crash Course on Machine Learning
Advanced Multimedia Text Classification Tamara Berg.
Made by: Maor Levy, Temple University  Up until now: how to reason in a give model  Machine learning: how to acquire a model on the basis of.
CS 188: Artificial Intelligence Spring 2007 Lecture 18: Classification: Part I Naïve Bayes 03/22/2007 Srini Narayanan – ICSI and UC Berkeley.
CSE 446 Perceptron Learning Winter 2012 Dan Weld Some slides from Carlos Guestrin, Luke Zettlemoyer.
Classification: Feature Vectors
LOGISTIC REGRESSION David Kauchak CS451 – Fall 2013.
CS 188: Artificial Intelligence Spring 2006 Lecture 9: Naïve Bayes 2/14/2006 Dan Klein – UC Berkeley Many slides from either Stuart Russell or Andrew Moore.
Classification: Feature Vectors Hello, Do you want free printr cartriges? Why pay more when you can get them ABSOLUTELY FREE! Just # free : 2 YOUR_NAME.
CSE 473: Artificial Intelligence Spring 2012 Bayesian Networks - Learning Dan Weld Slides adapted from Jack Breese, Dan Klein, Daphne Koller, Stuart Russell,
Machine Learning  Up until now: how to reason in a model and how to make optimal decisions  Machine learning: how to acquire a model on the basis of.
CHAPTER 6 Naive Bayes Models for Classification. QUESTION????
CSE 473: Artificial Intelligence Autumn 2010 Machine Learning: Naive Bayes and Perceptron Luke Zettlemoyer Many slides over the course adapted from Dan.
Announcements  Project 5  Due Friday 4/10 at 5pm  Homework 9  Released soon, due Monday 4/13 at 11:59pm.
Classification (slides adapted from Rob Schapire) Eran Segal Weizmann Institute.
Recap: General Naïve Bayes  A general naïve Bayes model:  Y: label to be predicted  F 1, …, F n : features of each instance Y F1F1 FnFn F2F2 This slide.
CS 188: Artificial Intelligence Fall 2007 Lecture 25: Kernels 11/27/2007 Dan Klein – UC Berkeley.
CS 188: Artificial Intelligence Fall 2008 Lecture 24: Perceptrons II 11/24/2008 Dan Klein – UC Berkeley 1.
CMPS 142/242 Review Section Fall 2011 Adapted from Lecture Slides.
Naïve Bayes Classification Recitation, 1/25/07 Jonathan Huang.
Naive Bayes (Generative Classifier) vs. Logistic Regression (Discriminative Classifier) Minkyoung Kim.
PATTERN RECOGNITION AND MACHINE LEARNING CHAPTER 1: INTRODUCTION.
LEARNING FROM EXAMPLES AIMA CHAPTER 18 (4-5) CSE 537 Spring 2014 Instructor: Sael Lee Slides are mostly made from AIMA resources, Andrew W. Moore’s tutorials:
Support Vector Machines
PREDICT 422: Practical Machine Learning
CAP 5636 – Advanced Artificial Intelligence
Fun with Hyperplanes: Perceptrons, SVMs, and Friends
Large Margin classifiers
Artificial Intelligence
Naïve Bayes Classifiers
CSC321: Neural Networks Lecture 22 Learning features one layer at a time Geoffrey Hinton.
MIRA, SVM, k-NN Lirong Xia. MIRA, SVM, k-NN Lirong Xia.
CS 188: Artificial Intelligence Fall 2006
Artificial Intelligence
Perceptrons Lirong Xia.
CS 188: Artificial Intelligence Fall 2008
Data Mining Lecture 11.
CS 4/527: Artificial Intelligence
A special case of calibration
CS 188: Artificial Intelligence
CS 188: Artificial Intelligence Spring 2007
CHAPTER 7 BAYESIAN NETWORK INDEPENDENCE BAYESIAN NETWORK INFERENCE MACHINE LEARNING ISSUES.
Where did we stop? The Bayes decision rule guarantees an optimal classification… … But it requires the knowledge of P(ci|x) (or p(x|ci) and P(ci)) We.
Large Scale Support Vector Machines
CS 188: Artificial Intelligence Fall 2008
COSC 4335: Other Classification Techniques
Support Vector Machines
CS 188: Artificial Intelligence Spring 2006
CS 188: Artificial Intelligence Fall 2008
Speech recognition, machine learning
CS 188: Artificial Intelligence
CS 188: Artificial Intelligence Spring 2006
CS 188: Artificial Intelligence Fall 2007
Naïve Bayes Classifiers
Calibration and homographies
MIRA, SVM, k-NN Lirong Xia. MIRA, SVM, k-NN Lirong Xia.
Perceptrons Lirong Xia.
Support Vector Machines 2
Speech recognition, machine learning
Evaluation David Kauchak CS 158 – Fall 2019.
Presentation transcript:

CS 188: Artificial Intelligence Fall 2008 Lecture 23: Perceptrons 11/20/2008 Dan Klein – UC Berkeley

General Naïve Bayes A general naive Bayes model: We only specify how each feature depends on the class Total number of parameters is linear in n C E1 E2 En

Example: OCR 1 0.1 2 3 4 5 6 7 8 9 1 0.01 2 0.05 3 4 0.30 5 0.80 6 0.90 7 8 0.60 9 0.50 1 0.05 2 0.01 3 0.90 4 0.80 5 6 7 0.25 8 0.85 9 0.60

Example: Overfitting 2 wins!!

Example: Spam Filtering Model: Parameters: ham : 0.66 spam: 0.33 the : 0.016 to : 0.015 and : 0.012 ... free : 0.005 click : 0.004 screens : 0.001 minute : 0.001 the : 0.021 to : 0.013 and : 0.011 ... free : 0.001 click : 0.001 screens : 0.000 minute : 0.000

Example: Spam Filtering Raw probabilities alone don’t affect the posteriors; relative probabilities (odds ratios) do: south-west : inf nation : inf morally : inf nicely : inf extent : inf seriously : inf ... screens : inf minute : inf guaranteed : inf $205.00 : inf delivery : inf signature : inf ... What went wrong here?

Generalization and Overfitting Relative frequency parameters will overfit the training data! Unlikely that every occurrence of “minute” is 100% spam Unlikely that every occurrence of “seriously” is 100% ham What about all the words that don’t occur in the training set? In general, we can’t go around giving unseen events zero probability As an extreme case, imagine using the entire email as the only feature 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 To generalize better: we need to smooth or regularize the estimates

Estimation: Smoothing Problems with maximum likelihood estimates: 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? Basic idea: 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

Estimation: Smoothing Relative frequencies are the maximum likelihood estimates In Bayesian statistics, we think of the parameters as just another random variable, with its own distribution ????

Estimation: Laplace Smoothing Laplace’s estimate: Pretend you saw every outcome once more than you actually did Can derive this as a MAP estimate with Dirichlet priors (see cs281a) H H T

Estimation: Laplace Smoothing Laplace’s estimate (extended): Pretend you saw every outcome k extra times What’s Laplace with k = 0? k is the strength of the prior Laplace for conditionals: Smooth each condition independently: H H T

Estimation: Linear Interpolation In practice, Laplace often performs poorly for P(X|Y): When |X| is very large When |Y| is very large Another option: linear interpolation 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? For even better ways to estimate parameters, as well as details of the math see cs281a, cs294

Real NB: Smoothing For real classification problems, smoothing is critical New odds ratios: helvetica : 11.4 seems : 10.8 group : 10.2 ago : 8.4 areas : 8.3 ... verdana : 28.8 Credit : 28.4 ORDER : 27.2 <FONT> : 26.9 money : 26.5 ... Do these make more sense?

Tuning on Held-Out Data Now we’ve got two kinds of unknowns Parameters: the probabilities P(Y|X), P(Y) Hyperparameters, like the amount of smoothing to do: k,  Where to learn? Learn parameters from training data Must tune hyperparameters on different data Why? For each value of the hyperparameters, train and test on the held-out data Choose the best value and do a final test on the test data

Baselines First task: get a baseline Baselines are very simple “straw man” procedures Help determine how hard the task is Help know what a “good” accuracy is Weak baseline: most frequent label classifier Gives all test instances whatever label was most common in the training set E.g. for spam filtering, might label everything as ham Accuracy might be very high if the problem is skewed For real research, usually use previous work as a (strong) baseline

Confidences from a Classifier The confidence of a probabilistic classifier: Posterior over the top label Represents how sure the classifier is of the classification Any probabilistic model will have confidences No guarantee confidence is “correct” Calibration Weak calibration: higher confidences mean higher accuracy Strong calibration: confidence predicts accuracy rate What’s the use of calibration?

Generative vs. Discriminative Generative classifiers: E.g. naïve Bayes We build a causal model of the variables We then query that model for causes, given evidence Discriminative classifiers: E.g. perceptron (next) No causal model, no Bayes rule, often no probabilities Try to predict output directly Loosely: mistake driven rather than model driven

Errors, and What to Do Examples of errors Dear GlobalSCAPE Customer, GlobalSCAPE has partnered with ScanSoft to offer you the latest version of OmniPage Pro, for just $99.99* - the regular list price is $499! The most common question we've received about this offer is - Is this genuine? We would like to assure you that this offer is authorized by ScanSoft, is genuine and valid. You can get the . . . . . . To receive your $30 Amazon.com promotional certificate, click through to http://www.amazon.com/apparel and see the prominent link for the $30 offer. All details are there. We hope you enjoyed receiving this message. However, if you'd rather not receive future e-mails announcing new store launches, please click . . .

What to Do About Errors? Need more features– words aren’t enough! 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? Naïve Bayes models can incorporate a variety of features, but tend to do best in homogeneous cases (e.g. all features are word occurrences)

Features A feature is a function which signals a property of the input Examples: ALL_CAPS: value is 1 iff email in all caps HAS_URL: value is 1 iff email has a URL NUM_URLS: number of URLs in email VERY_LONG: 1 iff email is longer than 1K SUSPICIOUS_SENDER: 1 iff reply-to domain doesn’t match originating server Features are anything you can think of code to evaluate on an input Some cheap, some very very expensive to calculate Can even be the output of another classifier Domain knowledge goes here! In naïve Bayes, how did we encode features?

Feature Extractors A feature extractor maps inputs to feature vectors Many classifiers take feature vectors as inputs Feature vectors usually very sparse, use sparse encodings (i.e. only represent non-zero keys) Dear Sir. First, I must solicit your confidence in this transaction, this is by virture of its nature as being utterly confidencial and top secret. … W=dear : 1 W=sir : 1 W=this : 2 ... W=wish : 0 MISSPELLED : 2 NAMELESS : 1 ALL_CAPS : 0 NUM_URLS : 0

Some (Vague) Biology Very loose inspiration: human neurons

The Binary Perceptron  Inputs are feature values Each feature has a weight Sum is the activation If the activation is: Positive, output 1 Negative, output 0 w1  f1 w2 >0? f2 w3 f3

Example: Spam Imagine 4 features: Free (number of occurrences of “free”) Money (occurrences of “money”) BIAS (always has value 1) BIAS : 1 free : 1 money : 1 the : 0 ... BIAS : -3 free : 4 money : 2 the : 0 ... “free money”

Binary Decision Rule In the space of feature vectors Any weight vector is a hyperplane One side will be class 1 Other will be class -1 money 2 1 = SPAM 1 BIAS : -3 free : 4 money : 2 the : 0 ... -1 = HAM 1 free

Multiclass Decision Rule If we have more than two classes: Have a weight vector for each class Calculate an activation for each class Highest activation wins

Example “win the vote” BIAS : 1 win : 1 game : 0 vote : 1 the : 1 ...

The Perceptron Update Rule Start with zero weights Pick up training instances one by one Try to classify If correct, no change! If wrong: lower score of wrong answer, raise score of right answer

Example “win the vote” “win the election” “win the game” BIAS : win : ... BIAS : win : game : vote : the : ... BIAS : win : game : vote : the : ...

Examples: Perceptron Separable Case

Mistake-Driven Classification In naïve Bayes, parameters: From data statistics Have a causal interpretation One pass through the data For the perceptron parameters: From reactions to mistakes Have a discriminative interpretation Go through the data until held-out accuracy maxes out Training Data Held-Out Data Test Data

Properties of Perceptrons Separable Separability: some parameters get the training set perfectly correct Convergence: if the training is separable, perceptron will eventually converge (binary case) Mistake Bound: the maximum number of mistakes (binary case) related to the margin or degree of separability Non-Separable

Examples: Perceptron Non-Separable Case

Issues with Perceptrons Overtraining: test / held-out accuracy usually rises, then falls Overtraining isn’t quite as bad as overfitting, but is similar Regularization: if the data isn’t separable, weights might thrash around Averaging weight vectors over time can help (averaged perceptron) Mediocre generalization: finds a “barely” separating solution

Fixing the Perceptron Main problem with perceptron: Update size  is uncontrolled Sometimes update way too much Sometimes update way too little Solution: choose an update size which fixes the current mistake (by 1)… … but, choose the minimum change

Minimum Correcting Update min not =0, or would not have made an error, so min will be where equality holds

MIRA In practice, it’s bad to make updates that are too large Example may be labeled incorrectly Solution: cap the maximum possible value of  This gives an algorithm called MIRA Usually converges faster than perceptron Usually performs better, especially on noisy data

Linear Separators Which of these linear separators is optimal?

Support Vector Machines Maximizing the margin: good according to intuition and theory. Only support vectors matter; other training examples are ignorable. Support vector machines (SVMs) find the separator with max margin Basically, SVMs are MIRA where you optimize over all examples at once MIRA SVM

Summary Naïve Bayes Perceptrons / MIRA: Build classifiers using model of training data Smoothing estimates is important in real systems Classifier confidences are useful, when you can get them Perceptrons / MIRA: Make less assumptions about data Mistake-driven learning Multiple passes through data

Similarity Functions Similarity functions are very important in machine learning Topic for next class: kernels Similarity functions with special properties The basis for a lot of advance machine learning (e.g. SVMs)

Case-Based Reasoning Similarity for classification Predict an instance’s label using similar instances Nearest-neighbor classification 1-NN: copy the label of the most similar data point K-NN: let the k nearest neighbors vote (have to devise a weighting scheme) Key issue: how to define similarity Trade-off: Small k gives relevant neighbors Large k gives smoother functions Sound familiar? [DEMO] http://www.cs.cmu.edu/~zhuxj/courseproject/knndemo/KNN.html

Parametric / Non-parametric Parametric models: Fixed set of parameters More data means better settings Non-parametric models: Complexity of the classifier increases with data Better in the limit, often worse in the non-limit (K)NN is non-parametric Truth 2 Examples 10 Examples 100 Examples 10000 Examples

Nearest-Neighbor Classification Nearest neighbor for digits: Take new image Compare to all training images Assign based on closest example Encoding: image is vector of intensities: What’s the similarity function? Dot product of two images vectors? Usually normalize vectors so ||x|| = 1 min = 0 (when?), max = 1 (when?)

Basic Similarity Many similarities based on feature dot products: If features are just the pixels: Note: not all similarities are of this form

Invariant Metrics Better distances use knowledge about vision Similarities are invariant under certain transformations Rotation, scaling, translation, stroke-thickness… E.g: 16 x 16 = 256 pixels; a point in 256-dim space Small similarity in R256 (why?) How to incorporate invariance into similarities? This and next few slides adapted from Xiao Hu, UIUC

Rotation Invariant Metrics Each example is now a curve in R256 Rotation invariant similarity: s’=max s( r( ), r( )) E.g. highest similarity between images’ rotation lines

Tangent Families Problems with s’: Tangent distance: Hard to compute Allows large transformations (6  9) Tangent distance: 1st order approximation at original points. Easy to compute Models small rotations

Template Deformation Deformable templates: An “ideal” version of each category Best-fit to image using min variance Cost for high distortion of template Cost for image points being far from distorted template Used in many commercial digit recognizers Examples from [Hastie 94]