machine-learning statistics deep-learning
Definition
Gaussian Radial Basis Function
The Gaussian Radial Basis Function (RBF) kernel is a popular stationary kernel that measures the similarity between points based on their Euclidean distance. Formally, for a free parameter :
Alternatively, it is often parameterised using , yielding .
Infinite Dimensionality
The RBF kernel corresponds to a feature map into an infinite-dimensional Hilbert space. It can be viewed as an infinite sum of polynomial kernels of all possible degrees, allowing the SVM to approximate arbitrary non-linear decision boundaries.
Generalisation
Locality: The kernel value decreases exponentially with the squared distance, meaning that only nearby points significantly influence the local prediction. This makes the model highly flexible but sensitive to the selection of the bandwidth parameter ; excessively small values lead to overfitting (memorising individual points), while excessively large values result in underfitting.