Which of the following is not a kernel method in SVM?

linear kernel
polynomial kernel
rbf kernel
nonlinear kernel

The correct answer is D. nonlinear kernel.

A kernel method is a machine learning algorithm that uses a kernel function to map data points into a higher dimensional space, where a linear decision boundary can be found. The most common kernel methods are the linear kernel, the polynomial kernel, and the radial basis function (RBF) kernel.

The linear kernel is the simplest kernel method. It maps data points into a higher dimensional space by simply taking the dot product of the original data points. This means that the decision boundary in the higher dimensional space is a linear line.

The polynomial kernel is a more complex kernel method. It maps data points into a higher dimensional space by taking the dot product of the original data points raised to a power. This means that the decision boundary in the higher dimensional space is a polynomial curve.

The RBF kernel is the most complex kernel method. It maps data points into a higher dimensional space by taking the Gaussian function of the distance between the original data points. This means that the decision boundary in the higher dimensional space is a Gaussian curve.

A nonlinear kernel is a kernel method that is not one of the three kernel methods described above. There are many different nonlinear kernels, but they are all more complex than the linear, polynomial, and RBF kernels.

In conclusion, the correct answer is D. nonlinear kernel.