Why do SVMs use kernels?
medium- Kernels let SVMs learn nonlinear boundaries without explicitly computing high-dimensional features — the kernel trick evaluates inner products in an implicit feature space.
- Common kernels: linear (baseline), polynomial, RBF (default nonlinear choice), sigmoid.
- RBF works well when the boundary is smooth but nonlinear; tune C and gamma.