Handwritten digit recognition on USPS / MNIST
Computer visionRecognizing handwritten digits (0-9) from scanned images was a benchmark problem where each image is a high-dimensional pixel vector and classes overlap in subtle, nonlinear ways. SVMs with nonlinear kernels became a leading approach in the 1990s, competitive with the best neural networks of the era.
Train a kernel SVM (polynomial or RBF) on the pixel vectors using a one-vs-rest or one-vs-one scheme for the ten digit classes, letting the kernel induce a nonlinear boundary without explicit feature construction.
On the USPS digit benchmark in Cortes & Vapnik (1995), the soft-margin support-vector network achieved a test error of about 4.0% (roughly 96% accuracy), matching or beating contemporary neural-network classifiers and establishing SVMs as state-of-the-art for the task.
Source: Support-Vector Networks — Cortes, C. and Vapnik, V.