Jump to content

Kernel perceptron

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Qwertyus (talk | contribs) at 08:48, 16 August 2014 (Algorithm: reference feature maps to explain ''why'' we're applying the kernel function). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

In machine learning, the kernel perceptron is a variant of the popular perceptron learning algorithm that can learn kernel machines, i.e. non-linear classifiers that employ a kernel function to compute the similarity of unseen samples to training samples. The history of the algorithm can be traced to the 1960s.[1]

Preliminaries

The perceptron algorithm

The perceptron algorithm is an old but popular online learning algorithm that operates by a principle called "error-driven learning": it iteratively improves a model by running it on training samples, then updating the model whenever it finds it has made an incorrect classification wrt. a supervised signal. The model learned by the standard perceptron algorithm is a linear binary classifier: a vector of weights w (and optionally an intercept term b, omitted here for simplicity) that is used to classify a sample vector x as class "one" or class "minus one" according to

where a zero is arbitrarily mapped to one or minus one. (The "hat" on ŷ denotes an estimated value.)

In pseudocode, the perceptron algorithm is given by:

Initialize w to an all-zero vector of length p, the number of predictors (features).
For some fixed number of iterations, or until some stopping criterion is met:
For each training example x with ground truth label yᵢ ∈ {-1, 1}:
Let ŷ = sgn(wT x).
If ŷyᵢ, update ww + yᵢ x.

Kernel machines

By contrast with the linear models learned by the perceptron, a kernel machine[2] is a classifier that stores a subset of its training examples x, associates with each a weight αᵢ, and makes decisions for new samples x' by evaluating

.

Here, K is some kernel function. Formally, a kernel function is a non-negative semidefinite kernel (see Mercer's condition), representing an inner product between samples in a high-dimensional space, as if the samples had been expanded to include additional features by a function Φ: K(x, x') = Φ(x) · Φ(x'). Intuitively, it can be thought of as a similarity function between samples, so the kernel machines establishes the class of a new sample by weighted comparison to the training set. Each function x'K(x, x') serves as a basis function in the classification.

Algorithm

To derive a kernelized version of the perceptron algorithm, we must first formulate it in dual form, starting from the observation that the weight vector w can be expressed as a linear combination of the n training samples, formed in the update rule ww + yᵢ x:

where αᵢ is the number of times x was misclassified, forcing an update. Using this result, we can formulate the dual perceptron algorithm, which loops through the samples as before, making predictions, but instead of storing and updating a weight vector w, it updates a "mistake counter" vector α. We can also rewrite the prediction formula as

Finally, we can replace the dot product (linear kernel) in the dual version of the perceptron algorithm by a different kernel function, to get the effect of a feature map Φ without computing Φ(x) explicitly for all samples. Doing this yields the kernel perceptron algorithm:[3]

Initialize α to an all-zeros vector of length n, the number of training samples.
For some fixed number of iterations, or until some stopping criterion is met:
For each training example x, y:
Let
If ŷy, perform an update:
αiαi + 1

Variants and extensions

One problem with the kernel perceptron, as presented above, is that it does not learn sparse kernel machines. Initially, all the αᵢ are zero so that evaluating the decision function to get ŷ requires no kernel evaluations at all, but each update increments a single αᵢ, making the evaluation increasingly more costly. Moreover, when the kernel perceptron is used in an online setting, the number of non-zero αᵢ and thus the evaluation cost grow linearly in the number of examples presented to the algorithm.

The forgetron variant of the kernel perceptron was suggested to deal with this problem. It maintains an active set of examples with non-zero αᵢ, removing ("forgetting") examples from the active set when it exceeds a pre-determined budget and "shrinking" (lowering the weight of) old examples as new ones are promoted to non-zero αᵢ.[4]

Another problem with the kernel perceptron is that it does not regularize, making it vulnerable to overfitting. The NORMA online kernel learning algorithm can be regarded as a generalization of the kernel perceptron algorithm with regularization.[5] The sequential minimal optimization (SMO) algorithm used to learn support vector machines can also be regarded as a generalization of the kernel perceptron.[5]

Notes and references

  1. ^ Aizerman, M. A.; Emmanuel M. Braverman; L. I. Rozoner (1964). "Theoretical foundations of the potential function method in pattern recognition learning". Automation and Remote Control. 25: 821–837. Cited in Guyon, Isabelle; B. Boser; Vladimir Vapnik (1993). Automatic capacity tuning of very large VC-dimension classifiers. Advances in neural information processing systems.
  2. ^ Schölkopf, Bernhard; and Smola, Alexander J.; Learning with Kernels, MIT Press, Cambridge, MA, 2002. ISBN 0-262-19475-9
  3. ^ John Shawe-Taylor; Nello Cristianini (2004). Kernel Methods for Pattern Analysis. Cambridge University Press. pp. 241–242.
  4. ^ Dekel, Ofer; Shai Shalev-Shwartz; Yoram Singer (2008). "The forgetron: A kernel-based perceptron on a budget" (PDF). SIAM Journal on Computing. 37 (5): 1342–1372. doi:10.1137/060666998.
  5. ^ a b Attention: This template ({{cite doi}}) is deprecated. To cite the publication identified by doi:10.1109/TSP.2004.830991, please use {{cite journal}} (if it was published in a bona fide academic journal, otherwise {{cite report}} with |doi=10.1109/TSP.2004.830991 instead.