AlexNet and the 2012 ImageNet breakthrough
Computer vision / image classificationThe ImageNet Large Scale Visual Recognition Challenge (ILSVRC) 2012 required classifying images into 1,000 categories across roughly 1.2 million training images. Prior winning approaches relied on hand-engineered features (e.g. SIFT) combined with classical classifiers, and progress had plateaued.
Krizhevsky, Sutskever, and Hinton trained “AlexNet,” an 8-layer CNN (5 convolutional layers plus 3 fully connected layers) with ReLU activations, dropout regularization, and data augmentation, trained on GPUs using stacked small-stride convolutions and max pooling to progressively build hierarchical features from raw pixels.
AlexNet achieved a top-5 test error of 15.3%, compared to 26.2% for the second-place entry that used traditional hand-engineered features — a dramatic margin that is widely credited with triggering the deep learning boom in computer vision over the following decade.
Source: ImageNet Classification with Deep Convolutional Neural Networks — Krizhevsky, A., Sutskever, I. and Hinton, G. E.