Jump to content

Polynomial kernel

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 137.43.85.231 (talk) at 16:05, 9 April 2015. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
Illustration of the mapping . On the left a set of samples in the input space, on the right the same samples in the feature space where the polynomial kernel (for some values of the parameters and ) is the inner product. The hyperplane learned in feature space by an SVM is an ellipse in the input space.

In machine learning, the polynomial kernel is a kernel function commonly used with support vector machines (SVMs) and other kernelized models, that represents the similarity of vectors (training samples) in a feature space over polynomials of the original variables, allowing learning of non-linear models.

Intuitively, the polynomial kernel looks not only at the given features of input samples to determine their similarity, but also combinations of these. In the context of regression analysis, such combinations are known as interaction features. The (implicit) feature space of a polynomial kernel is equivalent to that of polynomial regression, but without the combinatorial blowup in the number of parameters to be learned. When the input features are binary-valued (booleans), then the features correspond to logical conjunctions of input features.[1]

Definition

For degree-d polynomials, the polynomial kernel is defined as[2]

where and are vectors in the input space, i.e. vectors of features computed from training or test samples, is a constant trading off the influence of higher-order versus lower-order terms in the polynomial. When , the kernel is called homogeneous.[3] (A further generalized polykernel divides by a user-specified scalar parameter .[4])

As a kernel, corresponds to an inner product in a feature space based on some mapping :

The nature of can be seen from an example. Let , so we get the special case of the quadratic kernel. After using the multinomial theorem (twice—the outermost application is the binomial theorem) and regrouping,

From this it follows that the feature map is given by:

Practical use

Although the RBF kernel is more popular in SVM classification than the polynomial kernel, the latter is quite popular in natural language processing (NLP).[1][5] The most common degree is d=2, since larger degrees tend to overfit on NLP problems.

Various ways of computing the polynomial kernel (both exact and approximate) have been devised as alternatives to the usual non-linear SVM training algorithms, including:

  • full expansion of the kernel prior to training/testing with a linear SVM,[5] i.e. full computation of the mapping as in polynomial regression;
  • basket mining (using a variant of the apriori algorithm) for the most commonly occurring feature conjunctions in a training set to produce an approximate expansion;[6]
  • inverted indexing of support vectors.[6][1]

One problem with the polynomial kernel is that it may suffer from numerical instability: when , tends to zero as is increased, whereas when , tends to infinity.[4]

References

  1. ^ a b c Yoav Goldberg and Michael Elhadad (2008). splitSVM: Fast, Space-Efficient, non-Heuristic, Polynomial Kernel Computation for NLP Applications. Proc. ACL-08: HLT.
  2. ^ http://www.cs.tufts.edu/~roni/Teaching/CLT/LN/lecture18.pdf
  3. ^ Shashua, Amnon (2009). "Introduction to Machine Learning: Class Notes 67577". v1. arXiv:0904.3664 [cs.LG]. {{cite arXiv}}: |access-date= requires |url= (help); Unknown parameter |accessdate= ignored (help); Unknown parameter |version= ignored (help)
  4. ^ a b Chih-Jen Lin (2012). Machine learning software: design and practical use. Talk at Machine Learning Summer School, Kyoto.
  5. ^ a b Yin-Wen Chang; Cho-Jui Hsieh; Kai-Wei Chang; Michael Ringgaard; Chih-Jen Lin (2010). "Training and testing low-degree polynomial data mappings via linear SVM". Journal of Machine Learning Research. 11: 1471–1490.
  6. ^ a b T. Kudo and Y. Matsumoto (2003). Fast methods for kernel-based text analysis. Proc. ACL 2003.