Nearest Neighbors Methods for Support Vector Machines

Size: px
Start display at page:

Download "Nearest Neighbors Methods for Support Vector Machines"

Transcription

1

2 Nearest Neighbors Methods for Support Vector Machines A. J. Quiroz, Dpto. de Matemáticas. Universidad de Los Andes joint work with María González-Lima, Universidad Simón Boĺıvar and Sergio A. Camelo, Universidad de Los Andes September 15, 2015

3 Background on Pattern Recognition Supervised Learning An important part of Pattern Recognition deals with the problem of classification of data into a finite number of categories. In the usual setting of supervised learning, examples are given that consists of pairs, (X i, Y i ), i n, where X i is the d-dimensional covariate vector and y i is the corresponding category in some finite set C. In the examples, y i is known! Based on these examples ( training data ) an algorithm must be produced that will be able to predict the category, given a new value of the covariate.

4 Background on Pattern Recognition Supervised Learning: applications Examples of applications of Supervised Learning algorithms cover a wide area: 1 Credit Scoring: Deciding if a bank client will be a good payer of the loan he/she receives. 2 Support in medical diagnostics (for instance classification of tumor cells) 3 Face identification in pictures. 4 Text classification algorithms. 5 Music genre identification. 6 many others...

5 Background on Pattern Recognition interdisciplinarity Pattern Recognition is an interdisciplinary field, drawing ideas and methods from Probability, Statistics, Optimization and Computer Science. Probabilistic methods (in particular related to VC dimension and Uniform Laws of Large Numbers) are used to prove convergence of the classifiers to the best possible classifier in its class (not necessarily the Bayes Classifier) as the size of the training sample grows. The problem of finding the best classifier within a class very often reduces to solving a quadratic optimization problem. Computer Science has provided an important input to the field in the form of efficient algorithms.

6 Background on Pattern Recognition Linear/Non-linear methods Methods can be divided into two broad categories: linear and non-linear. Among the linear procedures, should mention Linear Discriminant Analysis, Rosenblatt s Perceptron, Logistic Regression. In these methods the covariate space is divided into halves by a classification hyperplane.

7 Background on Pattern Recognition Non-linear methods In the last decades there have been lots of developments in non-linear procedures: Neural Networks, CART (Classification and Regression Trees) and its general version, Random Forests, Nearest Neighbors Classifiers, Bagging, Boosting and Support Vector Machines. The superiority (in complex problems) of the non-linear methods has been reported in the literature. In particular, SVM has a great performance in many important problems.

8 Support Vector Machines Separating Hyperplane in the original covariate space As usual, will assume the context of binary classification, in which y i = ±1 and the problem of finding an optimal classification hyperplane can be stated as 1 minimize w,b 2 w 2 subject to y i (w t X i + b) 1 i = 1,..., n, (1) This problem can be solved when the data are linearly separable (ls), that is, there exists a hyperplane that leaves in one side all the covariate vectors of examples in one category and the covariate vectors for the other category in the other half space.

9 Support Vector Machines Support Vectors In a linearly separable problem, the support vectors are the covariate points from the training dataset that are closer to the separating hyperplane. This is, the points X i where the constraints are satisfied with equality, i.e. (w ) t X i + b = 1, with w and b the solution to the optimization problem. The solution of problem (1) is the same if only the support vectors are provided as training data. This points out to the importance of these vectors.

10 Support Vector Machines Example of non linearly separable data

11 Support Vector Machines Use of kernels and slack variables In order to deal with non-ls data two changes are introduced in the problem: (i) A transformation of the d-dimensional covariates φ(x) = (φ 1 (x), φ 2 (x),...) t is used, where {φ m } m r are some real functions and r > d may be. Thus, the covariate vectors X i are substituted with the new feature vectors φ(x i ). (ii) The dot product in the image r-dimensional space defines a kernel function, K, in the original feature space, given by K(x, x ) = φ(x), φ(x ). (iii) Slack variables are introduced to allow for a margin of error in the classification.

12 Support Vector Machines The primal problem with the kernel and slack With the changes introduced, problem (1) becomes 1 minimize w,b,ξ 2 w 2 + C n i=1 ξ i subject to y i (w t φ(x i ) + b) 1 ξ i, i = 1,..., n, (2) where C is a positive constant that expresses the cost of loosing separation margin or misclassification. The ξ i are the slack variables and ξ = (ξ 1,..., ξ n ).

13 Support Vector Machines In the dual problem only K appears The dual problem corresponding to (2) can be written as maximize n α i=1 α i 1 n 2 i,j=1 y iy j α i α j K(X i, X j ) subject to i y iα i = 0, 0 α i C for i = 1,..., n. (3) The corresponding classifier is ( ) class(x) = sgn y i αi K(X i, x) + b i

14 Support Vector Machines Kernel functions The fact that the transformation φ to a higher dimensional space, appears only through the kernel function K, in the solution of the problem, allows shifting the attention to 1 Conditions for a symmetric function to be a valid kernel, that is, to correspond to the inner product in some higher dimensional space (Mercer s Theorem). 2 Properties of kernels (how to build more sophisticated kernels from simple ones) 3 Which kernels are preferable for a certain application problem. A fairly successful one is the Gaussian (or radial ) kernel, given by K(x, x ) = exp ( γ x x 2), for γ > 0.

15 Support Vector Machines The support vectors in the 1-norm soft margin problem - From the dual problem solution we have that only those covariate vectors with α i > 0, matter for the solution of the 1-norm soft margin problem. These are the support vectors for the problem. - From the Karush-Kuhn-Tucker conditions, the support vectors will be those for which the margin in problem (2) is 1 or less, that is, those points closer to the separating surface. - The number of support vectors gives a rough upper estimate of the classification error by the SVM solution, namely, the bound is #support vectors n

16 Support Vector Machines The dual problem is usually very large The dual problem obtained for (2), although easier than the primal, can still be quite large since the number of variables subject to optimization is O(n) and the matrix K(X i, X j ) is an n n matrix, not necessarily sparse. In the optimization literature, decomposition methods that divide the dual problem into a sequence of smaller problems of the same type, have been developed in order to make the calculation feasible for problems in the order of tens of thousand data points. Many of the existing procedures are variations of the ideas proposed by Osuna, Girosi, and Freund (1997).

17 A sampling and nearest neighbors approach to SVM Sampling and k-nearest-neighbors A fundamental principle in statistics is that a large enough sample will be, with very high probability, representative of the behavior of the data population from which it is sampled. On the other hand, k-nearest-neighbors methods have found many applications in different statistical contexts, from the two-sample-problem, to clustering and even in dimensionality reduction. Given a data set S = {X 1,..., X n } and a vector x, all in R d, the k-nearest-neighbors of x in S is the set N N k (x), formed by those k points that attain the k smallest values of X i x among the data set. When x is one of the X i, N N k (X i ) is formed by the k points from the data set, different from X i and closest to it.

18 A sampling and nearest neighbors approach to SVM basic idea of proposal Procedure Nearest Neighbors SVM (i) Select a large enough random subsample, T, of the data set. (ii) For the subsample, solve the SVM problem. (iii) Identify the support vector set, V T, corresponding to the subsample T. (iv) For a previously chosen value of k (k << n), find the k-nearest-neighbors of each support vector in V T in the (complete) sample S. Denote N N (V) this set of nearest neighbors.

19 A sampling and nearest neighbors approach to SVM basic idea of proposal Procedure Nearest Neighbors SVM, continued (v) Redefine the subsample T as T = V T N N (V). (vi) Solve the SVM problem for the new subsample T. If there is not significant improvement in terms of classification error with respect to the previous definition of T, or if the maximum number of iterations has been reached, end the procedure and return the current support vector set V T, the weights vector w and the estimated classification error. Else, go to step (iii).

20 A sampling and nearest neighbors approach to SVM rationale of proposal The rationale of this procedure is as follows: Let V S be the (unknown) support vectors for the SVM solution corresponding to the whole sample, S. If the subsample T is large enough, we are guaranteed to have, with large probability, a sub-sample point in a small neighborhood of radio ρ n for every vector in V S (as we will see below). These neighbors are likely to be support vectors for the solution of the SVM on problem T. Then, if k is large enough, we will probably find a large percentage of the support vectors in V S by looking at neighbors of points in V T.

21 A sampling and nearest neighbors approach to SVM Finding k-nearest-neighbors The univariate projection method of Friedman, Basquett and Shustek (1975) continues to be a very good compromise in terms of ease of implementation and low complexity when looking for the k-nearest-neighbors of a point in a sample. The number of operations performed to find the k-nearest neighbors of a set of m points with respect to a sample of size n in dimension d is O(mdk 1/d n 1 1/d ). We only need to look for neighbors in the original feature space R d.

22 Some covering properties of k-nearest-neighbors of subsamples A sample will have points near a distinguished subset We prove a couple of results that serve as motivation for the methods proposed here. If a sample of size n is taken from a distribution with compact support S in R d, we have a distinguished subset of the sample and a random subsample of size δn for some positive δ. Then, very likely, the subsample will contain points at distance less than ρ from every point in the distinguished set, for any ρ such that ρ d is significantly larger than ln n/n.

23 Some covering properties of k-nearest-neighbors of subsamples A sample will have points near a distinguished subset Proposition Suppose the covariates X i, for i n form an i.i.d. sample from a probability distribution P on R d with totally bounded support set S. Furthermore, let us suppose that the probability law P is bounded away from zero, in the sense that there exists a positive constant a 1, such that, for every x S, and r > 0 small enough, if X P, then Pr( X x r) a 1 ν d r d, where ν d is the volume of the unit ball in R d. Let us also assume that the kernel K is a Lipschitz function, with Lipschitz constant C. Then, for every φ(x) φ(s), X P, and r > 0 small enough, we have ( ) r 2 d Pr( φ(x ) φ(x) r) p := a 1 ν d. 2C

24 Some covering properties of k-nearest-neighbors of subsamples Theorem Under the assumptions of Proposition 1, let A = {x 1, x 2,..., x m } be a subset of the covariate sample {X 1,..., X n } and A = {x 1, x 2,..., x m} a subset of the transformed covariate sample, {φ(x 1 ),..., φ(x n )} where m = αn, for some α (0, 1). Suppose we take a random subsample M of the covariate sample of size n = δn, where δ is a small positive number. Let M = φ(m). If the radii ρ = ρ(n) and r = r(n) satisfy ρ d >> ln(αn) δ n a 1 ν d and ( r 2 2C ) d >> ln(αn) δ n a 1 ν d (4) then, with high probability, for every x i A and every x j A there are a X i M and a φ(x j ) φ(m), such that x i X i ρ and x j φ(x j ) r. (5)

25 Some covering properties of k-nearest-neighbors of subsamples Covering by nearest neighbors To connect Theorem 1 with the procedures we propose here, we would like to know how large must be the number of neighbors, k, in order for all the k-nearest-neighbors balls of the points in the subsample M to have radius larger or equal than the ρ of inequality (4). To give a result in that direction, we will add some assumptions to those of the previous Theorem. For a positive integer k, (k < n) and x S, let N N k (x) be the set of k-nearest-neighbors of x in the covariate sample S. Let τ k (x) denote the largest distance from x to an element of N N k (x).

26 Some covering properties of k-nearest-neighbors of subsamples Covering by nearest neighbors Theorem In the same setting of Theorem 1, add the following assumption: Suppose the distribution P of the training covariate data {X 1,..., X n } is bounded above, in the sense that there exists a positive constant a 2, such that, for every x S, and ɛ > 0 small enough, if X P, then Pr( X x ɛ) a 2 ν d ɛ d. Then, for ρ d = ln2 (α n) δna 1 ν d and k = 2a 2 ln 2 (α n) δa 1, (6) with high probability, τ k (x) > ρ for every x in the subsample M.

27 Implementation issues and performance evaluation Using small values of k iteratively The value of k in the statement of Theorem 2 could in principle be approximated: The constants a 1 and a 2 are estimable by non-parametric density estimation methods, for instance, while δ is given by our choice of subsample size and α, although unknown, could be guessed from solutions obtained previously for similar problems, or estimated from solutions for subsamples or some other method. Still, the value of k thus obtained, being an upper bound, could be too large in terms of computation time savings. It will be preferable to use relatively small values of k and work iteratively, augmenting in relatively small steps the size of the subsample considered, until the classification error on the test data set ceases to improve significantly.

28 Implementation issues and performance evaluation Modification of the basic algorithm Procedure Nearest Neighbors SVM, modified (i) Select a large enough random subsample, T, of the data set. (ii) For the subsample, solve the SVM problem. (iii) Identify the support vector set, V T, corresponding to the subsample T. (iv) For a previously chosen value of k (k << n), find the k-nearest-neighbors of each support vector in V T in the (complete) sample S. Denote N N (V) this set of nearest neighbors.

29 Implementation issues and performance evaluation Modification of the basic algorithm Procedure Nearest Neighbors SVM, continued (v) Redefine the subsample T as T = V T N N (V) R (j), where R (j) is a new random subsample of size ɛn. (vi) Solve the SVM problem for the new subsample T. If there is not significant improvement in terms of classification error with respect to the previous definition of T, or if the maximum number of iterations has been reached, end the procedure and return the current support vector set V T, the weights vector w and the estimated classification error. Else, go to step (iii).

30 Implementation issues and performance evaluation Parameter choice In preliminary evaluations, we found that δ = 0.01 (that is, subsamples of 1% of the training data set) is a small initial subsample size for most data sets considered in our experiments, while δ = 0.1 (subsamples of 10% of the training data) is a medium-to-large value in the sense that with this choice of δ, the procedures are able to find a significant part of the support vectors of the full training data and achieve a better testing classification error. In the evaluations presented below, we used these two values, 1% and 10% for the parameter δ. When δ = 0.01 we used k = 5 as the number of neighbors, while a smaller value, k = 3 was used when δ was 10%. For the parameter ɛ in Algorithm 2, we used always 10%. Thus, in what follows, the performance of four procedures is considered: Algorithms 1 and 2 with small sized (δ = 1%) and medium sized (δ = 10%) starting subsamples.

31 Implementation issues and performance evaluation Kernels considered Kernels used in our evaluation were the linear, radial and polynomial of degree two. These are given by the formulas K l (x, y) = x t y K r (x, y) = exp( γ x y 2 ) K p (x, y) = (x t y + a) 2 Parameters corresponding to the kernels and other algorithm parameters, such as the constant C, were chosen by cross-validation in subsamples.

32 Implementation issues and performance evaluation Information on the datasets used We test the performance of Algorithms 1 and 2 on six datasets from the LIBSVM library using the LIBSVM code 1. We compile with R using the e1071 package 2 on a personal computer, MacBook 2.4 GHz and Intel Core 2 Duo processor with 4 GB 1067 MHz DDR3 memory. In the selection of the datasets for our evaluation, we have tried to include problems with widely varying numbers of features, to appreciate the effect of dimensionality on the methods studied and also to consider datasets with different fractions of support vectors. 1 For more information on the LIBSVM library and the datasets go to cjlin/libsvm/ 2 For more information on the e1071 package go to cran.r-project.org/web/packages/e1071/.

33 Implementation issues and performance evaluation Information on the datasets used DATASET TrainSize TestSize Features A9A COD-RNA IJCNN SVMGUIDE W7A COVTYPE Table : Datasets Description

34 Implementation issues and performance evaluation Some results COD-RNA - Radial IJCNN1 - Polynomial Iter Error Rate Supports RSupports Time (s) Iter Error Rate Supports RSupports Time (s) % (0.12%) 9.18% 9.18% % (0.19%) 6.75% 6.75% % (0.05%) 31.78% 22.49% % (0.19%) 22.09% 16.50% % (0.11%) 50.04% 35.20% % (0.2%) 35.82% 27.28% % (0.07%) 64.74% 48.03% % (0.22%) 47.97% 38.58% % (0.07%) 76.34% 60.15% % (0.21%) 57.93% 49.82% Total 3.48% Total 2.07% W7A - Linear SVMGUIDE1 - Polynomial Iter Error Rate Supports RSupports Time (s) Iter Error Rate Supports RSupports Time (s) % (0.38%) 5.71% 5.71% % (0.91%) 7.59% 7.59% % (0.23%) 17.15% 12.62% % (0.49%) 26.72% 19.34% % (0.15%) 27.94% 19.56% % (0.48%) 43.43% 29.78% % (0.11%) 35.50% 28.41% % (0.29%) 57.37% 43.21% % (0.04%) 41.09% 37.18% % (0.13%) 68.10% 54.38% Total 0.98% Total 3.60% 0.33 COVTYPE - Radial A9A - Linear Iter Error Rate Supports RSupports Time (s) Iter Error Rate Supports RSupports Time (s) % (1.27%) 8.74% 8.74% % (0.17%) 8.99% 8.99% % (1.45%) 35.33% 29.11% % (0.19%) 34.01% 26.99% % (0.55%) 57.69% 47.96% % (0.18%) 54.65% 44.23% Total 33.43% Total 15.33%

Introduction to Support Vector Machines

Introduction to Support Vector Machines Introduction to Support Vector Machines Shivani Agarwal Support Vector Machines (SVMs) Algorithm for learning linear classifiers Motivated by idea of maximizing margin Efficient extension to non-linear

More information

Introduction to Support Vector Machines

Introduction to Support Vector Machines Introduction to Support Vector Machines Andreas Maletti Technische Universität Dresden Fakultät Informatik June 15, 2006 1 The Problem 2 The Basics 3 The Proposed Solution Learning by Machines Learning

More information

Perceptron Revisited: Linear Separators. Support Vector Machines

Perceptron Revisited: Linear Separators. Support Vector Machines Support Vector Machines Perceptron Revisited: Linear Separators Binary classification can be viewed as the task of separating classes in feature space: w T x + b > 0 w T x + b = 0 w T x + b < 0 Department

More information

Support Vector Machines: Maximum Margin Classifiers

Support Vector Machines: Maximum Margin Classifiers Support Vector Machines: Maximum Margin Classifiers Machine Learning and Pattern Recognition: September 16, 2008 Piotr Mirowski Based on slides by Sumit Chopra and Fu-Jie Huang 1 Outline What is behind

More information

Support Vector Machine (SVM) and Kernel Methods

Support Vector Machine (SVM) and Kernel Methods Support Vector Machine (SVM) and Kernel Methods CE-717: Machine Learning Sharif University of Technology Fall 2014 Soleymani Outline Margin concept Hard-Margin SVM Soft-Margin SVM Dual Problems of Hard-Margin

More information

Linear & nonlinear classifiers

Linear & nonlinear classifiers Linear & nonlinear classifiers Machine Learning Hamid Beigy Sharif University of Technology Fall 1394 Hamid Beigy (Sharif University of Technology) Linear & nonlinear classifiers Fall 1394 1 / 34 Table

More information

Support Vector Machine (SVM) and Kernel Methods

Support Vector Machine (SVM) and Kernel Methods Support Vector Machine (SVM) and Kernel Methods CE-717: Machine Learning Sharif University of Technology Fall 2015 Soleymani Outline Margin concept Hard-Margin SVM Soft-Margin SVM Dual Problems of Hard-Margin

More information

Learning with kernels and SVM

Learning with kernels and SVM Learning with kernels and SVM Šámalova chata, 23. května, 2006 Petra Kudová Outline Introduction Binary classification Learning with Kernels Support Vector Machines Demo Conclusion Learning from data find

More information

Statistical Machine Learning from Data

Statistical Machine Learning from Data Samy Bengio Statistical Machine Learning from Data 1 Statistical Machine Learning from Data Support Vector Machines Samy Bengio IDIAP Research Institute, Martigny, Switzerland, and Ecole Polytechnique

More information

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

Chapter 9. Support Vector Machine. Yongdai Kim Seoul National University Chapter 9. Support Vector Machine Yongdai Kim Seoul National University 1. Introduction Support Vector Machine (SVM) is a classification method developed by Vapnik (1996). It is thought that SVM improved

More information

Support Vector Machines

Support Vector Machines Support Vector Machines Reading: Ben-Hur & Weston, A User s Guide to Support Vector Machines (linked from class web page) Notation Assume a binary classification problem. Instances are represented by vector

More information

Support Vector Machine (SVM) and Kernel Methods

Support Vector Machine (SVM) and Kernel Methods Support Vector Machine (SVM) and Kernel Methods CE-717: Machine Learning Sharif University of Technology Fall 2016 Soleymani Outline Margin concept Hard-Margin SVM Soft-Margin SVM Dual Problems of Hard-Margin

More information

Linear & nonlinear classifiers

Linear & nonlinear classifiers Linear & nonlinear classifiers Machine Learning Hamid Beigy Sharif University of Technology Fall 1396 Hamid Beigy (Sharif University of Technology) Linear & nonlinear classifiers Fall 1396 1 / 44 Table

More information

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

EE613 Machine Learning for Engineers. Kernel methods Support Vector Machines. jean-marc odobez 2015 EE613 Machine Learning for Engineers Kernel methods Support Vector Machines jean-marc odobez 2015 overview Kernel methods introductions and main elements defining kernels Kernelization of k-nn, K-Means,

More information

Jeff Howbert Introduction to Machine Learning Winter

Jeff Howbert Introduction to Machine Learning Winter Classification / Regression Support Vector Machines Jeff Howbert Introduction to Machine Learning Winter 2012 1 Topics SVM classifiers for linearly separable classes SVM classifiers for non-linearly separable

More information

A short introduction to supervised learning, with applications to cancer pathway analysis Dr. Christina Leslie

A short introduction to supervised learning, with applications to cancer pathway analysis Dr. Christina Leslie A short introduction to supervised learning, with applications to cancer pathway analysis Dr. Christina Leslie Computational Biology Program Memorial Sloan-Kettering Cancer Center http://cbio.mskcc.org/leslielab

More information

Support Vector Machines for Classification: A Statistical Portrait

Support Vector Machines for Classification: A Statistical Portrait Support Vector Machines for Classification: A Statistical Portrait Yoonkyung Lee Department of Statistics The Ohio State University May 27, 2011 The Spring Conference of Korean Statistical Society KAIST,

More information

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

Linear vs Non-linear classifier. CS789: Machine Learning and Neural Network. Introduction 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

More information

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

Indirect Rule Learning: Support Vector Machines. Donglin Zeng, Department of Biostatistics, University of North Carolina Indirect Rule Learning: Support Vector Machines Indirect learning: loss optimization It doesn t estimate the prediction rule f (x) directly, since most loss functions do not have explicit optimizers. Indirection

More information

Machine Learning. Support Vector Machines. Manfred Huber

Machine Learning. Support Vector Machines. Manfred Huber Machine Learning Support Vector Machines Manfred Huber 2015 1 Support Vector Machines Both logistic regression and linear discriminant analysis learn a linear discriminant function to separate the data

More information

CS145: INTRODUCTION TO DATA MINING

CS145: INTRODUCTION TO DATA MINING CS145: INTRODUCTION TO DATA MINING 5: Vector Data: Support Vector Machine Instructor: Yizhou Sun yzsun@cs.ucla.edu October 18, 2017 Homework 1 Announcements Due end of the day of this Thursday (11:59pm)

More information

Support Vector Machines

Support Vector Machines Wien, June, 2010 Paul Hofmarcher, Stefan Theussl, WU Wien Hofmarcher/Theussl SVM 1/21 Linear Separable Separating Hyperplanes Non-Linear Separable Soft-Margin Hyperplanes Hofmarcher/Theussl SVM 2/21 (SVM)

More information

CS6375: Machine Learning Gautam Kunapuli. Support Vector Machines

CS6375: Machine Learning Gautam Kunapuli. Support Vector Machines Gautam Kunapuli Example: Text Categorization Example: Develop a model to classify news stories into various categories based on their content. sports politics Use the bag-of-words representation for this

More information

Brief Introduction to Machine Learning

Brief Introduction to Machine Learning Brief Introduction to Machine Learning Yuh-Jye Lee Lab of Data Science and Machine Intelligence Dept. of Applied Math. at NCTU August 29, 2016 1 / 49 1 Introduction 2 Binary Classification 3 Support Vector

More information

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

Support Vector Machines (SVM) in bioinformatics. Day 1: Introduction to SVM 1 Support Vector Machines (SVM) in bioinformatics Day 1: Introduction to SVM Jean-Philippe Vert Bioinformatics Center, Kyoto University, Japan Jean-Philippe.Vert@mines.org Human Genome Center, University

More information

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

Support Vector Machine (SVM) & Kernel CE-717: Machine Learning Sharif University of Technology. M. Soleymani Fall 2012 Support Vector Machine (SVM) & Kernel CE-717: Machine Learning Sharif University of Technology M. Soleymani Fall 2012 Linear classifier Which classifier? x 2 x 1 2 Linear classifier Margin concept x 2

More information

Kernel Methods and Support Vector Machines

Kernel Methods and Support Vector Machines Kernel Methods and Support Vector Machines Oliver Schulte - CMPT 726 Bishop PRML Ch. 6 Support Vector Machines Defining Characteristics Like logistic regression, good for continuous input features, discrete

More information

Pattern Recognition and Machine Learning. Perceptrons and Support Vector machines

Pattern Recognition and Machine Learning. Perceptrons and Support Vector machines Pattern Recognition and Machine Learning James L. Crowley ENSIMAG 3 - MMIS Fall Semester 2016 Lessons 6 10 Jan 2017 Outline Perceptrons and Support Vector machines Notation... 2 Perceptrons... 3 History...3

More information

Machine Learning Support Vector Machines. Prof. Matteo Matteucci

Machine Learning Support Vector Machines. Prof. Matteo Matteucci Machine Learning Support Vector Machines Prof. Matteo Matteucci Discriminative vs. Generative Approaches 2 o Generative approach: we derived the classifier from some generative hypothesis about the way

More information

LINEAR CLASSIFIERS. J. Elder CSE 4404/5327 Introduction to Machine Learning and Pattern Recognition

LINEAR CLASSIFIERS. J. Elder CSE 4404/5327 Introduction to Machine Learning and Pattern Recognition LINEAR CLASSIFIERS Classification: Problem Statement 2 In regression, we are modeling the relationship between a continuous input variable x and a continuous target variable t. In classification, the input

More information

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

Linear, threshold units. Linear Discriminant Functions and Support Vector Machines. Biometrics CSE 190 Lecture 11. X i : inputs W i : weights Linear Discriminant Functions and Support Vector Machines Linear, threshold units CSE19, Winter 11 Biometrics CSE 19 Lecture 11 1 X i : inputs W i : weights θ : threshold 3 4 5 1 6 7 Courtesy of University

More information

Final Overview. Introduction to ML. Marek Petrik 4/25/2017

Final Overview. Introduction to ML. Marek Petrik 4/25/2017 Final Overview Introduction to ML Marek Petrik 4/25/2017 This Course: Introduction to Machine Learning Build a foundation for practice and research in ML Basic machine learning concepts: max likelihood,

More information

A Tutorial on Support Vector Machine

A Tutorial on Support Vector Machine A Tutorial on School of Computing National University of Singapore Contents Theory on Using with Other s Contents Transforming Theory on Using with Other s What is a classifier? A function that maps instances

More information

Lecture Notes on Support Vector Machine

Lecture Notes on Support Vector Machine Lecture Notes on Support Vector Machine Feng Li fli@sdu.edu.cn Shandong University, China 1 Hyperplane and Margin In a n-dimensional space, a hyper plane is defined by ω T x + b = 0 (1) where ω R n is

More information

Support Vector Machines Explained

Support Vector Machines Explained December 23, 2008 Support Vector Machines Explained Tristan Fletcher www.cs.ucl.ac.uk/staff/t.fletcher/ Introduction This document has been written in an attempt to make the Support Vector Machines (SVM),

More information

CS798: Selected topics in Machine Learning

CS798: Selected topics in Machine Learning CS798: Selected topics in Machine Learning Support Vector Machine Jakramate Bootkrajang Department of Computer Science Chiang Mai University Jakramate Bootkrajang CS798: Selected topics in Machine Learning

More information

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

LINEAR CLASSIFICATION, PERCEPTRON, LOGISTIC REGRESSION, SVC, NAÏVE BAYES. Supervised Learning LINEAR CLASSIFICATION, PERCEPTRON, LOGISTIC REGRESSION, SVC, NAÏVE BAYES Supervised Learning Linear vs non linear classifiers In K-NN we saw an example of a non-linear classifier: the decision boundary

More information

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

Support'Vector'Machines. Machine(Learning(Spring(2018 March(5(2018 Kasthuri Kannan Support'Vector'Machines Machine(Learning(Spring(2018 March(5(2018 Kasthuri Kannan kasthuri.kannan@nyumc.org Overview Support Vector Machines for Classification Linear Discrimination Nonlinear Discrimination

More information

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

Linear classifiers selecting hyperplane maximizing separation margin between classes (large margin classifiers) Support vector machines In a nutshell Linear classifiers selecting hyperplane maximizing separation margin between classes (large margin classifiers) Solution only depends on a small subset of training

More information

(Kernels +) Support Vector Machines

(Kernels +) Support Vector Machines (Kernels +) Support Vector Machines Machine Learning Torsten Möller Reading Chapter 5 of Machine Learning An Algorithmic Perspective by Marsland Chapter 6+7 of Pattern Recognition and Machine Learning

More information

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

Machine Learning. Lecture 6: Support Vector Machine. Feng Li. Machine Learning Lecture 6: Support Vector Machine Feng Li fli@sdu.edu.cn https://funglee.github.io School of Computer Science and Technology Shandong University Fall 2018 Warm Up 2 / 80 Warm Up (Contd.)

More information

Cheng Soon Ong & Christian Walder. Canberra February June 2018

Cheng Soon Ong & Christian Walder. Canberra February June 2018 Cheng Soon Ong & Christian Walder Research Group and College of Engineering and Computer Science Canberra February June 2018 Outlines Overview Introduction Linear Algebra Probability Linear Regression

More information

CSC 411 Lecture 17: Support Vector Machine

CSC 411 Lecture 17: Support Vector Machine CSC 411 Lecture 17: Support Vector Machine Ethan Fetaya, James Lucas and Emad Andrews University of Toronto CSC411 Lec17 1 / 1 Today Max-margin classification SVM Hard SVM Duality Soft SVM CSC411 Lec17

More information

Modelli Lineari (Generalizzati) e SVM

Modelli Lineari (Generalizzati) e SVM Modelli Lineari (Generalizzati) e SVM Corso di AA, anno 2018/19, Padova Fabio Aiolli 19/26 Novembre 2018 Fabio Aiolli Modelli Lineari (Generalizzati) e SVM 19/26 Novembre 2018 1 / 36 Outline Linear methods

More information

Support Vector and Kernel Methods

Support Vector and Kernel Methods SIGIR 2003 Tutorial Support Vector and Kernel Methods Thorsten Joachims Cornell University Computer Science Department tj@cs.cornell.edu http://www.joachims.org 0 Linear Classifiers Rules of the Form:

More information

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

Non-Bayesian Classifiers Part II: Linear Discriminants and Support Vector Machines Non-Bayesian Classifiers Part II: Linear Discriminants and Support Vector Machines Selim Aksoy Department of Computer Engineering Bilkent University saksoy@cs.bilkent.edu.tr CS 551, Fall 2018 CS 551, Fall

More information

Support Vector Machines

Support Vector Machines Support Vector Machines Ryan M. Rifkin Google, Inc. 2008 Plan Regularization derivation of SVMs Geometric derivation of SVMs Optimality, Duality and Large Scale SVMs The Regularization Setting (Again)

More information

Machine Learning. Support Vector Machines. Fabio Vandin November 20, 2017

Machine Learning. Support Vector Machines. Fabio Vandin November 20, 2017 Machine Learning Support Vector Machines Fabio Vandin November 20, 2017 1 Classification and Margin Consider a classification problem with two classes: instance set X = R d label set Y = { 1, 1}. Training

More information

Introduction to Machine Learning Midterm Exam

Introduction to Machine Learning Midterm Exam 10-701 Introduction to Machine Learning Midterm Exam Instructors: Eric Xing, Ziv Bar-Joseph 17 November, 2015 There are 11 questions, for a total of 100 points. This exam is open book, open notes, but

More information

Pattern Recognition 2018 Support Vector Machines

Pattern Recognition 2018 Support Vector Machines Pattern Recognition 2018 Support Vector Machines Ad Feelders Universiteit Utrecht Ad Feelders ( Universiteit Utrecht ) Pattern Recognition 1 / 48 Support Vector Machines Ad Feelders ( Universiteit Utrecht

More information

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

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

More information

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

Support Vector Machines for Classification and Regression. 1 Linearly Separable Data: Hard Margin SVMs E0 270 Machine Learning Lecture 5 (Jan 22, 203) Support Vector Machines for Classification and Regression Lecturer: Shivani Agarwal Disclaimer: These notes are a brief summary of the topics covered in

More information

Non-linear Support Vector Machines

Non-linear Support Vector Machines Non-linear Support Vector Machines Andrea Passerini passerini@disi.unitn.it Machine Learning Non-linear Support Vector Machines Non-linearly separable problems Hard-margin SVM can address linearly separable

More information

Support Vector Machines.

Support Vector Machines. Support Vector Machines www.cs.wisc.edu/~dpage 1 Goals for the lecture you should understand the following concepts the margin slack variables the linear support vector machine nonlinear SVMs the kernel

More information

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

Linear classifiers selecting hyperplane maximizing separation margin between classes (large margin classifiers) Support vector machines In a nutshell Linear classifiers selecting hyperplane maximizing separation margin between classes (large margin classifiers) Solution only depends on a small subset of training

More information

L5 Support Vector Classification

L5 Support Vector Classification L5 Support Vector Classification Support Vector Machine Problem definition Geometrical picture Optimization problem Optimization Problem Hard margin Convexity Dual problem Soft margin problem Alexander

More information

Support Vector Machines and Kernel Methods

Support Vector Machines and Kernel Methods 2018 CS420 Machine Learning, Lecture 3 Hangout from Prof. Andrew Ng. http://cs229.stanford.edu/notes/cs229-notes3.pdf Support Vector Machines and Kernel Methods Weinan Zhang Shanghai Jiao Tong University

More information

Support Vector Machines for Classification and Regression

Support Vector Machines for Classification and Regression CIS 520: Machine Learning Oct 04, 207 Support Vector Machines for Classification and Regression Lecturer: Shivani Agarwal Disclaimer: These notes are designed to be a supplement to the lecture. They may

More information

Support Vector Machine

Support Vector Machine Andrea Passerini passerini@disi.unitn.it Machine Learning Support vector machines In a nutshell Linear classifiers selecting hyperplane maximizing separation margin between classes (large margin classifiers)

More information

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

Neural Networks. Prof. Dr. Rudolf Kruse. Computational Intelligence Group Faculty for Computer Science Neural Networks Prof. Dr. Rudolf Kruse Computational Intelligence Group Faculty for Computer Science kruse@iws.cs.uni-magdeburg.de Rudolf Kruse Neural Networks 1 Supervised Learning / Support Vector Machines

More information

Support Vector Machines

Support Vector Machines Support Vector Machines INFO-4604, Applied Machine Learning University of Colorado Boulder September 28, 2017 Prof. Michael Paul Today Two important concepts: Margins Kernels Large Margin Classification

More information

Support Vector Machines

Support Vector Machines EE 17/7AT: Optimization Models in Engineering Section 11/1 - April 014 Support Vector Machines Lecturer: Arturo Fernandez Scribe: Arturo Fernandez 1 Support Vector Machines Revisited 1.1 Strictly) Separable

More information

Applied inductive learning - Lecture 7

Applied inductive learning - Lecture 7 Applied inductive learning - Lecture 7 Louis Wehenkel & Pierre Geurts Department of Electrical Engineering and Computer Science University of Liège Montefiore - Liège - November 5, 2012 Find slides: http://montefiore.ulg.ac.be/

More information

Introduction to SVM and RVM

Introduction to SVM and RVM Introduction to SVM and RVM Machine Learning Seminar HUS HVL UIB Yushu Li, UIB Overview Support vector machine SVM First introduced by Vapnik, et al. 1992 Several literature and wide applications Relevance

More information

Support Vector Machines

Support Vector Machines Support Vector Machines Le Song Machine Learning I CSE 6740, Fall 2013 Naïve Bayes classifier Still use Bayes decision rule for classification P y x = P x y P y P x But assume p x y = 1 is fully factorized

More information

Lecture 9: Large Margin Classifiers. Linear Support Vector Machines

Lecture 9: Large Margin Classifiers. Linear Support Vector Machines Lecture 9: Large Margin Classifiers. Linear Support Vector Machines Perceptrons Definition Perceptron learning rule Convergence Margin & max margin classifiers (Linear) support vector machines Formulation

More information

Machine Learning Practice Page 2 of 2 10/28/13

Machine Learning Practice Page 2 of 2 10/28/13 Machine Learning 10-701 Practice Page 2 of 2 10/28/13 1. True or False Please give an explanation for your answer, this is worth 1 pt/question. (a) (2 points) No classifier can do better than a naive Bayes

More information

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

CS4495/6495 Introduction to Computer Vision. 8C-L3 Support Vector Machines CS4495/6495 Introduction to Computer Vision 8C-L3 Support Vector Machines Discriminative classifiers Discriminative classifiers find a division (surface) in feature space that separates the classes Several

More information

Support vector machines

Support vector machines Support vector machines Guillaume Obozinski Ecole des Ponts - ParisTech SOCN course 2014 SVM, kernel methods and multiclass 1/23 Outline 1 Constrained optimization, Lagrangian duality and KKT 2 Support

More information

Mehryar Mohri Foundations of Machine Learning Courant Institute of Mathematical Sciences Homework assignment 3 April 5, 2013 Due: April 19, 2013

Mehryar Mohri Foundations of Machine Learning Courant Institute of Mathematical Sciences Homework assignment 3 April 5, 2013 Due: April 19, 2013 Mehryar Mohri Foundations of Machine Learning Courant Institute of Mathematical Sciences Homework assignment 3 April 5, 2013 Due: April 19, 2013 A. Kernels 1. Let X be a finite set. Show that the kernel

More information

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

Linear classifiers selecting hyperplane maximizing separation margin between classes (large margin classifiers) Support vector machines In a nutshell Linear classifiers selecting hyperplane maximizing separation margin between classes (large margin classifiers) Solution only depends on a small subset of training

More information

Introduction to Support Vector Machines

Introduction to Support Vector Machines Introduction to Support Vector Machines Hsuan-Tien Lin Learning Systems Group, California Institute of Technology Talk in NTU EE/CS Speech Lab, November 16, 2005 H.-T. Lin (Learning Systems Group) Introduction

More information

SUPPORT VECTOR MACHINE

SUPPORT VECTOR MACHINE SUPPORT VECTOR MACHINE Mainly based on https://nlp.stanford.edu/ir-book/pdf/15svm.pdf 1 Overview SVM is a huge topic Integration of MMDS, IIR, and Andrew Moore s slides here Our foci: Geometric intuition

More information

Midterm Review CS 7301: Advanced Machine Learning. Vibhav Gogate The University of Texas at Dallas

Midterm Review CS 7301: Advanced Machine Learning. Vibhav Gogate The University of Texas at Dallas Midterm Review CS 7301: Advanced Machine Learning Vibhav Gogate The University of Texas at Dallas Supervised Learning Issues in supervised learning What makes learning hard Point Estimation: MLE vs Bayesian

More information

Soft-margin SVM can address linearly separable problems with outliers

Soft-margin SVM can address linearly separable problems with outliers Non-linear Support Vector Machines Non-linearly separable problems Hard-margin SVM can address linearly separable problems Soft-margin SVM can address linearly separable problems with outliers Non-linearly

More information

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

10/05/2016. Computational Methods for Data Analysis. Massimo Poesio SUPPORT VECTOR MACHINES. Support Vector Machines Linear classifiers Computational Methods for Data Analysis Massimo Poesio SUPPORT VECTOR MACHINES Support Vector Machines Linear classifiers 1 Linear Classifiers denotes +1 denotes -1 w x + b>0 f(x,w,b) = sign(w x + b) How

More information

10-701/ Machine Learning - Midterm Exam, Fall 2010

10-701/ Machine Learning - Midterm Exam, Fall 2010 10-701/15-781 Machine Learning - Midterm Exam, Fall 2010 Aarti Singh Carnegie Mellon University 1. Personal info: Name: Andrew account: E-mail address: 2. There should be 15 numbered pages in this exam

More information

Linear Classification and SVM. Dr. Xin Zhang

Linear Classification and SVM. Dr. Xin Zhang Linear Classification and SVM Dr. Xin Zhang Email: eexinzhang@scut.edu.cn What is linear classification? Classification is intrinsically non-linear It puts non-identical things in the same class, so a

More information

Sequential Minimal Optimization (SMO)

Sequential Minimal Optimization (SMO) Data Science and Machine Intelligence Lab National Chiao Tung University May, 07 The SMO algorithm was proposed by John C. Platt in 998 and became the fastest quadratic programming optimization algorithm,

More information

Max Margin-Classifier

Max Margin-Classifier Max Margin-Classifier Oliver Schulte - CMPT 726 Bishop PRML Ch. 7 Outline Maximum Margin Criterion Math Maximizing the Margin Non-Separable Data Kernels and Non-linear Mappings Where does the maximization

More information

ICS-E4030 Kernel Methods in Machine Learning

ICS-E4030 Kernel Methods in Machine Learning ICS-E4030 Kernel Methods in Machine Learning Lecture 3: Convex optimization and duality Juho Rousu 28. September, 2016 Juho Rousu 28. September, 2016 1 / 38 Convex optimization Convex optimisation This

More information

Mark your answers ON THE EXAM ITSELF. If you are not sure of your answer you may wish to provide a brief explanation.

Mark your answers ON THE EXAM ITSELF. If you are not sure of your answer you may wish to provide a brief explanation. CS 189 Spring 2015 Introduction to Machine Learning Midterm You have 80 minutes for the exam. The exam is closed book, closed notes except your one-page crib sheet. No calculators or electronic items.

More information

Support Vector Machines, Kernel SVM

Support Vector Machines, Kernel SVM Support Vector Machines, Kernel SVM Professor Ameet Talwalkar Professor Ameet Talwalkar CS260 Machine Learning Algorithms February 27, 2017 1 / 40 Outline 1 Administration 2 Review of last lecture 3 SVM

More information

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

Review: Support vector machines. Machine learning techniques and image analysis Review: Support vector machines Review: Support vector machines Margin optimization min (w,w 0 ) 1 2 w 2 subject to y i (w 0 + w T x i ) 1 0, i = 1,..., n. Review: Support vector machines Margin optimization

More information

Support Vector Machines. Maximizing the Margin

Support Vector Machines. Maximizing the Margin Support Vector Machines Support vector achines (SVMs) learn a hypothesis: h(x) = b + Σ i= y i α i k(x, x i ) (x, y ),..., (x, y ) are the training exs., y i {, } b is the bias weight. α,..., α are the

More information

Support Vector Machines and Speaker Verification

Support Vector Machines and Speaker Verification 1 Support Vector Machines and Speaker Verification David Cinciruk March 6, 2013 2 Table of Contents Review of Speaker Verification Introduction to Support Vector Machines Derivation of SVM Equations Soft

More information

An introduction to Support Vector Machines

An introduction to Support Vector Machines 1 An introduction to Support Vector Machines Giorgio Valentini DSI - Dipartimento di Scienze dell Informazione Università degli Studi di Milano e-mail: valenti@dsi.unimi.it 2 Outline Linear classifiers

More information

Lecture 10: A brief introduction to Support Vector Machine

Lecture 10: A brief introduction to Support Vector Machine Lecture 10: A brief introduction to Support Vector Machine Advanced Applied Multivariate Analysis STAT 2221, Fall 2013 Sungkyu Jung Department of Statistics, University of Pittsburgh Xingye Qiao Department

More information

Classifier Complexity and Support Vector Classifiers

Classifier Complexity and Support Vector Classifiers Classifier Complexity and Support Vector Classifiers Feature 2 6 4 2 0 2 4 6 8 RBF kernel 10 10 8 6 4 2 0 2 4 6 Feature 1 David M.J. Tax Pattern Recognition Laboratory Delft University of Technology D.M.J.Tax@tudelft.nl

More information

Statistical Pattern Recognition

Statistical Pattern Recognition Statistical Pattern Recognition Support Vector Machine (SVM) Hamid R. Rabiee Hadi Asheri, Jafar Muhammadi, Nima Pourdamghani Spring 2013 http://ce.sharif.edu/courses/91-92/2/ce725-1/ Agenda Introduction

More information

COMP 875 Announcements

COMP 875 Announcements Announcements Tentative presentation order is out Announcements Tentative presentation order is out Remember: Monday before the week of the presentation you must send me the final paper list (for posting

More information

Statistical learning theory, Support vector machines, and Bioinformatics

Statistical learning theory, Support vector machines, and Bioinformatics 1 Statistical learning theory, Support vector machines, and Bioinformatics Jean-Philippe.Vert@mines.org Ecole des Mines de Paris Computational Biology group ENS Paris, november 25, 2003. 2 Overview 1.

More information

Support Vector Machine for Classification and Regression

Support Vector Machine for Classification and Regression Support Vector Machine for Classification and Regression Ahlame Douzal AMA-LIG, Université Joseph Fourier Master 2R - MOSIG (2013) November 25, 2013 Loss function, Separating Hyperplanes, Canonical Hyperplan

More information

The definitions and notation are those introduced in the lectures slides. R Ex D [h

The definitions and notation are those introduced in the lectures slides. R Ex D [h Mehryar Mohri Foundations of Machine Learning Courant Institute of Mathematical Sciences Homework assignment 2 October 04, 2016 Due: October 18, 2016 A. Rademacher complexity The definitions and notation

More information

Incorporating detractors into SVM classification

Incorporating detractors into SVM classification Incorporating detractors into SVM classification AGH University of Science and Technology 1 2 3 4 5 (SVM) SVM - are a set of supervised learning methods used for classification and regression SVM maximal

More information

Announcements - Homework

Announcements - Homework Announcements - Homework Homework 1 is graded, please collect at end of lecture Homework 2 due today Homework 3 out soon (watch email) Ques 1 midterm review HW1 score distribution 40 HW1 total score 35

More information

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

Machine Learning and Data Mining. Support Vector Machines. Kalev Kask Machine Learning and Data Mining Support Vector Machines Kalev Kask Linear classifiers Which decision boundary is better? Both have zero training error (perfect training accuracy) But, one of them seems

More information

Introduction to Machine Learning Midterm Exam Solutions

Introduction to Machine Learning Midterm Exam Solutions 10-701 Introduction to Machine Learning Midterm Exam Solutions Instructors: Eric Xing, Ziv Bar-Joseph 17 November, 2015 There are 11 questions, for a total of 100 points. This exam is open book, open notes,

More information

Natural Language Processing. Classification. Features. Some Definitions. Classification. Feature Vectors. Classification I. Dan Klein UC Berkeley

Natural Language Processing. Classification. Features. Some Definitions. Classification. Feature Vectors. Classification I. Dan Klein UC Berkeley Natural Language Processing Classification Classification I Dan Klein UC Berkeley Classification Automatically make a decision about inputs Example: document category Example: image of digit digit Example:

More information

c 4, < y 2, 1 0, otherwise,

c 4, < y 2, 1 0, otherwise, Fundamentals of Big Data Analytics Univ.-Prof. Dr. rer. nat. Rudolf Mathar Problem. Probability theory: The outcome of an experiment is described by three events A, B and C. The probabilities Pr(A) =,

More information