Kernel Principal Component Analysis

Looking for more research papers to read, I scanned my Hands-On Machine Learning notes for the many papers that were referenced there. This is one of those papers. These papers are mainly on machine learning and deep learning topics.

Reference Kernel Principal Component Analysis Paper

Date Created:
Last Edited:
1 75

Introduction

A new method for performing a nonlinear form of Principal Component Analysis is proposed. By the use of integral operator kernel functions, one can efficiently compute principal components in high-dimensional feature spaces, related to input space by some nonlinear map; for instance the space of all possible d-pixel products in images. This paper gives the derivation of the method of presents experimental results on polynomial feature extraction for pattern recognition.

Assume for the moment that our data mapped into feature space, ϕ(x1),,ϕ(x), is centered, i.e. k=1ϕ(x) = 0. To do PCA for the covariance matrix

C = 1 j=1ϕ(x j)ϕ(xj)T

we have to find Eigenvalues λ 0 and Eigenvectors V F{} satisfying λX = CV. All solutions V lie in the span of ϕ(x1),,ϕ(x). This implies that we may consider the equivalent system

λ(ϕ(xk) V) = (ϕ(xk) CV) for all k = 1,,,

and that there exists equivalent coefficients α1,,α such that

V = i=1α iϕ(xi)

Substituting and defining an × matrix K by

Kij := (ϕ(xi)ϕ(xj))

we arrive at

ℓλKα = K2α

where α denotes the column vector with entries α1,,α. To find solutions to the above, we solve the Eigenvalue problem

ℓλα =

for nonzero Eigenvalues. We normalize the solutions αk belonging to nonzero Eigenvalues by requiring that the corresponding vectors in F be normalized, i.e. (Vk Vk) = 1. This translates to:

1 = i,j=1α ikα jk(ϕ(x i)ϕ(xj)) = (αk Kαk) = λ k(αk αk)

For princupal component extraction, we compute projections of the image of a test point ϕ(x) onto the Eigenvectors Vk in F according to

(Vk ϕ(x) = i=1α i=1k(ϕ(x i) ϕ(x))

Kernels that have been successfully used in support vector machines include polynomial kernels, radial basis functions, and sigmoid kernels.

PIC

You can read more about how comments are sorted in this blog post.

User Comments