Linear vs Non-linear classifier. CS789: Machine Learning and Neural Network. Introduction

Similar documents
CS798: Selected topics in Machine Learning

Support Vector Machine (SVM) and Kernel Methods

Support Vector Machine (SVM) & Kernel CE-717: Machine Learning Sharif University of Technology. M. Soleymani Fall 2012

Support Vector Machine (SVM) and Kernel Methods

Support Vector Machine (continued)

Support Vector Machine (SVM) and Kernel Methods

Linear & nonlinear classifiers

Introduction to Support Vector Machines

Data Mining. Linear & nonlinear classifiers. Hamid Beigy. Sharif University of Technology. Fall 1396

Cheng Soon Ong & Christian Walder. Canberra February June 2018

Linear classifiers selecting hyperplane maximizing separation margin between classes (large margin classifiers)

Support Vector Machine

Machine Learning. Support Vector Machines. Manfred Huber

Linear & nonlinear classifiers

Statistical Machine Learning from Data

Non-Bayesian Classifiers Part II: Linear Discriminants and Support Vector Machines

Lecture Notes on Support Vector Machine

Review: Support vector machines. Machine learning techniques and image analysis

Support Vector Machines.

Support Vector Machines

Machine Learning. Lecture 6: Support Vector Machine. Feng Li.

Max Margin-Classifier

Kernel Methods and Support Vector Machines

Linear classifiers selecting hyperplane maximizing separation margin between classes (large margin classifiers)

Support Vector Machines. Introduction to Data Mining, 2 nd Edition by Tan, Steinbach, Karpatne, Kumar

Machine Learning and Data Mining. Support Vector Machines. Kalev Kask

10/05/2016. Computational Methods for Data Analysis. Massimo Poesio SUPPORT VECTOR MACHINES. Support Vector Machines Linear classifiers

ICS-E4030 Kernel Methods in Machine Learning

Learning with kernels and SVM

Lecture 9: Large Margin Classifiers. Linear Support Vector Machines

ML (cont.): SUPPORT VECTOR MACHINES

Support Vector Machines and Kernel Methods

Perceptron Revisited: Linear Separators. Support Vector Machines

(Kernels +) Support Vector Machines

Support Vector Machines

Support Vector Machines

L5 Support Vector Classification

Kernel Machines. Pradeep Ravikumar Co-instructor: Manuela Veloso. Machine Learning

Linear classifiers selecting hyperplane maximizing separation margin between classes (large margin classifiers)

Pattern Recognition 2018 Support Vector Machines

Kernel Methods. Machine Learning A W VO

Support Vector Machines for Regression

Jeff Howbert Introduction to Machine Learning Winter

Support Vector Machines: Maximum Margin Classifiers

Support Vector Machines for Classification and Regression. 1 Linearly Separable Data: Hard Margin SVMs

CS-E4830 Kernel Methods in Machine Learning

Support'Vector'Machines. Machine(Learning(Spring(2018 March(5(2018 Kasthuri Kannan

Lecture 10: A brief introduction to Support Vector Machine

Linear Support Vector Machine. Classification. Linear SVM. Huiping Cao. Huiping Cao, Slide 1/26

Support Vector Machines Explained

Support Vector Machines

Support Vector Machines, Kernel SVM

Support Vector Machine

Support Vector Machines

Support Vector Machines (SVM) in bioinformatics. Day 1: Introduction to SVM

Outline. Basic concepts: SVM and kernels SVM primal/dual problems. Chih-Jen Lin (National Taiwan Univ.) 1 / 22

Lecture Support Vector Machine (SVM) Classifiers

Linear, threshold units. Linear Discriminant Functions and Support Vector Machines. Biometrics CSE 190 Lecture 11. X i : inputs W i : weights

Machine Learning Support Vector Machines. Prof. Matteo Matteucci

Support Vector Machines

Support Vector Machines

EE613 Machine Learning for Engineers. Kernel methods Support Vector Machines. jean-marc odobez 2015

Outline. Motivation. Mapping the input space to the feature space Calculating the dot product in the feature space

Support Vector Machines for Classification and Regression

Support Vector Machines for Classification: A Statistical Portrait

Chapter 9. Support Vector Machine. Yongdai Kim Seoul National University

Support Vector Machines. CSE 6363 Machine Learning Vassilis Athitsos Computer Science and Engineering Department University of Texas at Arlington

Support Vector Machines and Kernel Methods

LINEAR CLASSIFICATION, PERCEPTRON, LOGISTIC REGRESSION, SVC, NAÏVE BAYES. Supervised Learning

Support Vector Machine & Its Applications

Support Vector Machines

LECTURE 7 Support vector machines

Convex Optimization and Support Vector Machine

CS145: INTRODUCTION TO DATA MINING

Applied inductive learning - Lecture 7

CS6375: Machine Learning Gautam Kunapuli. Support Vector Machines

Foundation of Intelligent Systems, Part I. SVM s & Kernel Methods

Incorporating detractors into SVM classification

Kernel Methods. Foundations of Data Analysis. Torsten Möller. Möller/Mori 1

Introduction to Support Vector Machines

An introduction to Support Vector Machines

Lecture 10: Support Vector Machine and Large Margin Classifier

Non-linear Support Vector Machines

Statistical Pattern Recognition

Indirect Rule Learning: Support Vector Machines. Donglin Zeng, Department of Biostatistics, University of North Carolina

Kernel Methods & Support Vector Machines

CS4495/6495 Introduction to Computer Vision. 8C-L3 Support Vector Machines

CSC 411 Lecture 17: Support Vector Machine

Linear Classification and SVM. Dr. Xin Zhang

Cheng Soon Ong & Christian Walder. Canberra February June 2018

Constrained Optimization and Support Vector Machines

Neural Networks. Prof. Dr. Rudolf Kruse. Computational Intelligence Group Faculty for Computer Science

Support Vector Machine II

Machine Learning : Support Vector Machines

SUPPORT VECTOR MACHINE

Classifier Complexity and Support Vector Classifiers

Deviations from linear separability. Kernel methods. Basis expansion for quadratic boundaries. Adding new features Systematic deviation

Learning From Data Lecture 25 The Kernel Trick

COMP 652: Machine Learning. Lecture 12. COMP Lecture 12 1 / 37

LMS Algorithm Summary

Transcription:

Linear vs Non-linear classifier CS789: Machine Learning and Neural Network Support Vector Machine Jakramate Bootkrajang Department of Computer Science Chiang Mai University Linear classifier is in the form w T x + b In words, x is a linear combination of w. b is the bias term. Can be thought of as a line separating classes. Non-linear Can be thought of as a curve separating classes. Jakramate Bootkrajang CS789: Machine Learning and Neural Network / 40 Introduction Jakramate Bootkrajang CS789: Machine Learning and Neural Network 3 / 40 Linear vs Non-linear classifier One of the most widely used out-of-the-box discriminative classifier. Gives state-of-the-art classification performance. Extends naturally to support non-linear classification tasks. Jakramate Bootkrajang CS789: Machine Learning and Neural Network 2 / 40 Jakramate Bootkrajang CS789: Machine Learning and Neural Network 4 / 40

The problem with linear machine Support Vector Machines (SVM) It cannot solve linearly non-separable classification task such as the XOR problem Two key ideas Assuming linearly separable classes, learn separating hyperplane with maximum margin. Expand input into high-dimensional space to deal with linearly non-separable cases (such as the XOR). Jakramate Bootkrajang CS789: Machine Learning and Neural Network 5 / 40 But wait! See what happen if we embedded the four points of XOR problem in higher dimensional space (i.e. 3D space) Jakramate Bootkrajang CS789: Machine Learning and Neural Network 7 / 40 Visualising the decision hyperplane Recall a linear classifier w T x + b, or more compactly For classification purpose, we want w T x < 0 for negative class w T x > 0 for positive class. [ ] 2 For example, w = 2 So, w T x violet > 0 and w T x orange < 0 w = [ ] 2 2 [ w ] T [ x b ]. Jakramate Bootkrajang CS789: Machine Learning and Neural Network 6 / 40 Jakramate Bootkrajang CS789: Machine Learning and Neural Network 8 / 40

Visualising the decision hyperplane Many choices of separating hyperplane Moreover, observe that w T x green = 0. A set of points where w T x = 0 defines the decision boundary. Geometrically, they are the points(vectors) which are perpendicular to w. (dot product is zero) w Jakramate Bootkrajang CS789: Machine Learning and Neural Network 9 / 40 Distance of a point x from the decision hyperplane Jakramate Bootkrajang CS789: Machine Learning and Neural Network / 40 SVM s goal = maximum margin x p r x w According to a theorem from learning theory, from all possible linear decision functions the one that maximises the margin of the training set will minimise the generalisation error. Represent x = x p + r w (r unit vector) Since w T x p = 0, we then have w T x = w T x p + w T r w In other words, r = wt x, (note that r is invariant to scaling of w.) margin Jakramate Bootkrajang CS789: Machine Learning and Neural Network 0 / 40 Jakramate Bootkrajang CS789: Machine Learning and Neural Network 2 / 40

Two types of margins Maximum (geometric) margin Functional margin: w T x Can be increased without bound by multiplying a constant to w. Geometric margin: r = wt x The one that we want to maximise. Subject to the constraint that training examples are classified correctly. We then compute the geometric margin from functional margin constraints margin = 2 (wt x + wt x ) = 2 (wt x + w T x ) = Jakramate Bootkrajang CS789: Machine Learning and Neural Network 3 / 40 Maximum margin (/2) Since we can scale the functional margin, we can demand the functional margin for the nearest points to be + and on the two side of the decision boundary. Denoting a nearest positive example by x + and a nearest negative example by x, we have w T x + = + w T x = x x + margin Jakramate Bootkrajang CS789: Machine Learning and Neural Network 4 / 40 Jakramate Bootkrajang CS789: Machine Learning and Neural Network 5 / 40 Maximum margin: summing up Given a linearly separable training set S = {x i, y i } m. We need to find w which maximise. Maximising is equivalent to minimising 2 The objective of SVM is then the following quadratic programming minimise: subject to: 2 2 w T x i + for y i = + w T x i for y i = Or equivalently: y i w T x i for all i Jakramate Bootkrajang CS789: Machine Learning and Neural Network 6 / 40

Support vectors Solving the quadratic programming The training points that are nearest to the decision boundary are called support vectors. Quiz: what is the output of our decision function for these points? Karush-Kuhn-Tucker (KKT) condition for optimality requires that α i (yw T x i ) = 0 sv sv The Lagrange multipliers α i are called dual variables Each training point has an associated dual variable. The condition implies that only support vectors will have non-zero α i. as its functional output is required to be exactly + or. Jakramate Bootkrajang CS789: Machine Learning and Neural Network 7 / 40 Solving the quadratic programming with inequality constraints Jakramate Bootkrajang CS789: Machine Learning and Neural Network 9 / 40 Solving the quadratic programming Construct & minimise the Lagrangian L(w, α) = 2 2 α i (yw T x i ) () s.t. α i 0, for all i The optimal w is found by taking derivatives of L w.r.t w L(w, α) w = w α i yx i = 0 (2) It is possible to find the dual of the objective function (eq.). Dual problem: the new objective having dual variables as its parameters Plugging eq.2 into eq. to obtain, D(α) = 2 α i α j y i y j x T i x j + i,j= s.t. α i 0, for all i Note that data enteres only in the form of dot products. α i Note that w are expressed as a linear combination of training points. Jakramate Bootkrajang CS789: Machine Learning and Neural Network 8 / 40 Jakramate Bootkrajang CS789: Machine Learning and Neural Network 20 / 40

Solving the quadratic programming We can use optimation package to solve the above dual problem for α. Classifying new data points Once the parameter α (or w if primal is used) is found by solving the quadratic optimisation on the training set of points, we can use it to classify new unseen point. Given new test point x q, its class membership is sign(w T x q ) = αi y i x T i x q = αi y i x T i x q i SV Jakramate Bootkrajang CS789: Machine Learning and Neural Network 2 / 40 The learned SVM Jakramate Bootkrajang CS789: Machine Learning and Neural Network 23 / 40 Important properties of SVMs Sparse Only support vectors are important. Data enters in the form of dot products. Ready for kernel trick. Dual objective is convex. However, SVM is quite sensitive to noisy data (mislabelled data) One such noisy data can dramatically change the decision boundary Jakramate Bootkrajang CS789: Machine Learning and Neural Network 22 / 40 Jakramate Bootkrajang CS789: Machine Learning and Neural Network 24 / 40

Non linearly separable data? Regularised SVM (2/3) This is an L -regularisation We can not hope for every data being linearly separable Indeed, many of the real-world datasets are linearly inseparable This includes naturally overlapping classes (no way to be completely separated) Parameter C controls the trade-off between fitting the data well and allowing some slackness Predictive performance of SVM is known to depend on C paramater Picking C usually done via cross-validation And also datasets which are quite noisy Originally linearly separable but due to some noise the observed data is not. What to do? minimise: subject to: 2 2 + C N ξ i y i w T x i ξ i for all i ξ i 0 for all i Jakramate Bootkrajang CS789: Machine Learning and Neural Network 25 / 40 Regularised SVM (/3) Jakramate Bootkrajang CS789: Machine Learning and Neural Network 27 / 40 Regularised SVM (3/3) We will relax constraint, y i w T x i by allowing it to be less than This is accomplished by using slack variables ξ i for each x i and write y i w T x i ξ i Our new objective is then minimise: subject to: 2 2 + C N ξ i y i w T x i ξ i for all i ξ i 0 for all i Of course, we can also derive its dual form D(α) = 2 α i α j y i y j x T i x j + i,j= s.t. 0 α i C, for all i α i Jakramate Bootkrajang CS789: Machine Learning and Neural Network 26 / 40 Jakramate Bootkrajang CS789: Machine Learning and Neural Network 28 / 40

Non-linear classifiers Non-linear SVMs Recall that the linear SVMs depends only on x T x. What to do when data is not linearly separable? First approach Use non-linear model, e.g., neuron-network, NDA with full covariance (problems: many parameters, local minima, experiences needed to train) Second approach Transform data into a richer feature space (including high dimensioal/non-linear features), then use a linear classifier. D(α) = 2 α i α j y i y j x T i x j + i,j= s.t. α i 0, for all i After the mapping, the non-linear algorithm will depend only on ϕ(x i ) T ϕ(x j ) D(α) = 2 α i α j y i y j ϕ(x i ) T ϕ(x j ) + i,j= s.t. α i 0, for all i α i α i The dot product ϕ(x i ) T ϕ(x j ) is known as kernel function. Jakramate Bootkrajang CS789: Machine Learning and Neural Network 29 / 40 Learning in the feature space Jakramate Bootkrajang CS789: Machine Learning and Neural Network 3 / 40 Kernels Map data into a feature space where they are linearly separable A function that gives the dot product between the vectors in feature space induced by the mapping ϕ. K(x i, x j ) = ϕ(x i ) T ϕ(x j ) In a matrix form, over all data, the matrix is also called Gram matrix. K(x, x )... K(x, x j )... K(x, x m )...... K = K(x i, x )... K(x i, x j )... K(x, x m )...... K(x m, x )... K(x m, x j )... K(x m, x m ) Gram matrix, K, is positive semi-definite, i.e. αkα 0 for all α R m. Jakramate Bootkrajang CS789: Machine Learning and Neural Network 30 / 40 Jakramate Bootkrajang CS789: Machine Learning and Neural Network 32 / 40

Kernels: Polynomial kernel Making kernels Example: mapping x, y points in 2D input to 3D feature space. [ ] [ ] x y x = y = The corresponding mapping ϕ is x 2 y 2 ϕ(x) = 2x x 2 ϕ(y) = 2y y 2 So we get a kernel K(x, y) = ϕ(x) T ϕ(y) = (x T y) 2 A polynomial kernel of degree 2. x 2 2 x 2 y 2 y 2 2 New kernels can be made from valid kernels as long as the resulting Gram matrix is positive definite. The following operations are allowed K(x, y) = K (x, y) + K 2 (x, y) (addition) K(x, y) = λk (x, y) (scaling) K(x, y) = K (x, y) K 2 (x, y) (multiplication) There is a theorem called Mercer s theorem that characterises valid kernels. Using kernel trick, we may not even need to know the mapping ϕ. Jakramate Bootkrajang CS789: Machine Learning and Neural Network 33 / 40 Kernels: Gaussian kernel Jakramate Bootkrajang CS789: Machine Learning and Neural Network 35 / 40 Many other kernels Defined as This comes from writing e a = + a + + k! ak K(x, y) = e x y 2 /σ Taylor s expansion Let a = x T y, one can see that e xt y is a kernel with infinite dimension. Normalising e xt y with σ and dividing the term by e x and e y to get the Gaussian kernel. Linear kernel K(x, y) = x T y + c Exponential kernel K(x, y) = exp( x y 2σ 2 ) Sigmoid kernel K(x, y) = tanh(αx T y + c) Histogram intersection kernel K(x, y) = n min(x i, y i ) Cauchy kernel K(x, y) = + x+y 2 σ 2 Discrete structure kernel: string kernel, tree kernel, graph kernel. And many more... Jakramate Bootkrajang CS789: Machine Learning and Neural Network 34 / 40 Jakramate Bootkrajang CS789: Machine Learning and Neural Network 36 / 40

Bad kernel Applications Gram matrix encodes similarities between input data points. A bad kernel would be a kernel function which gives near diagonal Gram matrix 0 0... 0 0 0... 0 No clusters, no structure................ 0 0 0... Handwritten digits recognition Dataset: US Postal service 4% error was obtained about only 4% of the training data were SVs. Text categorisation Face detection DNA analysis And many more... Jakramate Bootkrajang CS789: Machine Learning and Neural Network 37 / 40 SVMs and Kernels Jakramate Bootkrajang CS789: Machine Learning and Neural Network 39 / 40 Summary Prepare the data matrix. Select the kernel function to use, compute Gram matrix. Execute the training algorithm using a QP solver to obtain the α i values Unseen data can be classified using the α i values and the support vectors SV f(x) = sign( α i y i K(x i, x)) SVMs learn linear decision boundaries. (discriminative approach) They pick the hyperplane that maximises the (geometric) margin. The optimal hyperplane turns out to be a linear combination of support vectors. Transform nonlinear problems to higher dimensional space using kernel functions. In hope for linearly-separable classes in the transformed space. Jakramate Bootkrajang CS789: Machine Learning and Neural Network 38 / 40 Jakramate Bootkrajang CS789: Machine Learning and Neural Network 40 / 40