Polynomial Kernel Function
Polynomial Kernel FunctionRefers to a kernel function expressed in polynomial form. It is a non-standard kernel function suitable for orthogonal normalized data. Its specific form is shown in the figure.
$latex K(\chi_i,\chi_j)=( \gamma X_i^TX_j + r)^d,\gamma > 0$
In machine learning, a polynomial kernel is a kernel function commonly used in support vector machines (SVMs) and other kernelized models that represents the similarity between vectors (training samples) in feature space and a polynomial of the original variables, allowing the learning of nonlinear models.
Common kernel functions are:
- Linear kernel function;
- Polynomial kernel function;
- Gaussian (RBF) kernel function;
- sigmoid kernel function;
- Custom kernel function.