Low-rank matrix approximations
Low-rank matrix approximations are essential tools in the application of kernel methods to large-scale learning problems.[1]
Kernel methods (for instance, support vector machines or Gaussian processes[2]) project data points into a high-dimensional or infinite-dimensional feature space and find the optimal splitting hyperplane. In the kernel method the data is represented in a kernel matrix (or, Gram matrix). Many algorithms can solve machine learning problems using the kernel matrix. The main problem of kernel method is its high computational cost associated with kernel matrices. The cost is at least quadratic in the number of training data points, but most kernel methods include computation of matrix inversion or eigenvalue decomposition and the cost becomes cubic in the number of training data. Large training sets cause large storage and computational costs. While low rank decomposition methods (Cholesky decomposition) reduce this cost, they still require computing the kernel matrix. One of the approaches to deal with this problem is low-rank matrix approximations. The most popular examples of them are the Nyström approximation and randomized feature maps approximation methods. Both of them have been successfully applied to efficient kernel learning.
Nyström approximation
[edit]Kernel methods become computationally unfeasible when the number of points is so large such that the kernel matrix cannot be stored in memory.
If is the number of training examples, the storage and computational cost required to find the solution of the problem using general kernel method is and respectively. The Nyström approximation can allow a significant speed-up of the computations.[2][3] This speed-up is achieved by using, instead of the kernel matrix, its approximation of rank . An advantage of the method is that it is not necessary to compute or store the whole kernel matrix, but only a submatrix of size .
It reduces the storage and complexity requirements to and respectively.
The method is named "Nyström approximation" because it can be interpreted as a case of the Nyström method from integral equation theory.[3]
Kernel approximation
[edit]Consider a positive-definite kernel function . Given some data points , we can form the kernel matrix such that .
Now, let be an integer, then we can divide the kernel matrix as , where is the top-left corner of it. Also, set to be its first columns.
The Nyström approximation of in this case is where is the Moore–Penrose pseudoinverse of , which must exist since is positive semidefinite.
Properties
[edit]By Mercer's theorem, we can decompose the kernel matrix as a Gram matrix: , where . Let be the left columns of .
Theorem — We have
- The Nyström approximation is the unique matrix that is symmetric, has the same first columns as , and has column space spanned by the first columns of .
- , where is the projection matrix that orthogonally projects to the space spanned by the first columns of .
- is positive semidefinite.
- If , then .
1. The top-left is by the proposition about pseudoinverse: .
Take the SVD , where are full-squares, and has shape . Now evaluate by brute force the top-right corner, which gives Count the diagonal entries, and see that the sigma-cluster evaluates to .
2. From the first two requirements, we know that . From the previous calculation, we know that , so we can write . The third requirement then implies .
3. Evaluate directly in matrix blocks, and get
Take the SVD , where are full-squares, and has shape . Now evaluate where is a matrix of shape . It is diagonal. Its first entries are 1, and the rest are 0.
Thus, is the orthogonal projection to the first columns of .
(4) is a corollary of (3). (5) is a corollary of (2)
Regularized least squares
[edit]In a vector and kernel notation, the problem of regularized least squares can be rewritten as: Computing the gradient and setting in to 0, the minimum can be obtained: The inverse matrix can be computed using Woodbury matrix identity: It has the desired storage and complexity requirements.
Randomized feature maps approximation
[edit]Let – samples of data, – a randomized feature map (maps a single vector to a vector of higher dimensionality) so that the inner product between a pair of transformed points approximates their kernel evaluation:
where is the mapping embedded in the RBF kernel.
Since is low-dimensional, the input can be easily transformed with , after that different linear learning methods to approximate the answer of the corresponding nonlinear kernel can be applied. There are different randomized feature maps to compute the approximations to the RBF kernels. For instance, random Fourier features and random binning features.
Random Fourier features
[edit]The random Fourier features map produces a Monte Carlo approximation to the feature map. The Monte Carlo method is considered to be randomized. These random features consists of sinusoids randomly drawn from Fourier transform of the kernel to be approximated, where and are random variables. The line is randomly chosen, then the data points are projected on it by the mappings. The resulting scalar is passed through a sinusoid. The product of the transformed points will approximate a shift-invariant kernel. Since the map is smooth, random Fourier features work well on interpolation tasks.
Random binning features
[edit]A random binning features map partitions the input space using randomly shifted grids at randomly chosen resolutions and assigns to an input point a binary bit string that corresponds to the bins in which it falls. The grids are constructed so that the probability that two points are assigned to the same bin is proportional to . The inner product between a pair of transformed points is proportional to the number of times the two points are binned together, and is therefore an unbiased estimate of . Since this mapping is not smooth and uses the proximity between input points, Random binning features works well for approximating kernels that depend only on the distance between datapoints.
Comparison of approximation methods
[edit]The approaches for large-scale kernel learning (Nyström method and random features) differs in the fact that the Nyström method uses data dependent basis functions while in random features approach the basis functions are sampled from a distribution independent from the training data. This difference leads to an improved analysis for kernel learning approaches based on the Nyström method. When there is a large gap in the eigen-spectrum of the kernel matrix, approaches based on the Nyström method can achieve better results than the random features based approach.[6]
See also
[edit]External links
[edit]- Andreas Müller (2012). Kernel Approximations for Efficient SVMs (and other feature extraction methods).
References
[edit]- ^ a b Bach, Francis R.; Jordan, Michael I. (7–11 August 2005). Predictive low-rank decomposition for kernel methods. International Conference on Machine Learning. Bonn Germany: ACM Press. pp. 33–40. doi:10.1145/1102351.1102356. ISBN 978-1-59593-180-1.
- ^ a b Williams, C.K.I.; Seeger, M. (2001). "Using the Nyström method to speed up kernel machines". Advances in Neural Information Processing Systems. 13.
- ^ a b Drineas, Petros; Mahoney, Michael W. (2005), Auer, Peter; Meir, Ron (eds.), "Approximating a Gram Matrix for Improved Kernel-Based Learning", Learning Theory, vol. 3559, Berlin, Heidelberg: Springer Berlin Heidelberg, pp. 323–337, doi:10.1007/11503415_22, ISBN 978-3-540-26556-6, retrieved 20 January 2025
- ^ Mohri, Mehryar; Rostamizadeh, Afshin; Talwalkar, Ameet (2018). Foundations of machine learning. Adaptive computation and machine learning (Second ed.). Cambridge, Massachusetts: The MIT Press. ISBN 978-0-262-03940-6.
- ^ Gittens, Alex; Mahoney, Michael W. (3 June 2013), Revisiting the Nystrom Method for Improved Large-Scale Machine Learning, doi:10.48550/arXiv.1303.1849
- ^ Tianbao Yang, Yu-Feng Li, Mehrdad Mahdavi, Rong Jin and Zhi-Hua Zhou (2012). "Nyström Method vs Random Fourier Features: A Theoretical and Empirical Comparison". Advances in Neural Information Processing Systems 25 (NIPS).