Skip to contentScholarGate
LibraryBookshelfDeskReview StudioAssistant
Sign in
On this page
IntuitionHow it worksWhen to use itStrengths & limitationsCommon pitfallsApplicationsFrequently asked🔒 Read the full methodSourcesRelated methods
Cite this pageSpotted an issue on this page? Report or suggest a fix →
Home›Deep learning›AlexNet
Machine learning

AlexNet

AlexNet (Krizhevsky–Sutskever–Hinton Deep Convolutional Neural Network) · Also known as: AlexNet, Krizhevsky net, SuperVision CNN, ImageNet CNN 2012, deep convolutional neural network (AlexNet)

AlexNet is a deep convolutional neural network (CNN) introduced by Alex Krizhevsky, Ilya Sutskever, and Geoffrey Hinton in 2012. It won the ImageNet Large Scale Visual Recognition Challenge (ILSVRC 2012) with a top-5 error rate of 15.3%, outstripping the runner-up by more than 10 percentage points and reigniting broad interest in deep learning. The architecture introduced or popularised several techniques — ReLU activations, dropout regularisation, and multi-GPU training — that became standard practice across the field.

ScholarGate
  1. Machine learning
  2. v1
  3. 3 Sources
  4. PUBLISHED
Cite this page →
Tools & resources
Download slides
Learn & explore

Read the full method

Members only

Sign in with a free account to read this section.

Sign in

Method map

The neighbourhood of related methods — select a node to explore.

AlexNet
Batch NormalizationDropoutResNetVGGNet

When to use it

AlexNet is appropriate when the task involves visual recognition (image classification, feature extraction) and sufficient labelled image data are available. As a historical architecture it is now largely superseded for production use by deeper and more efficient networks such as ResNet, VGG, and EfficientNet. However, AlexNet remains valuable as a teaching model and as a lightweight feature extractor when computational resources are very constrained. The core design principles it established — deep stacked convolutions, ReLU, dropout, large-scale GPU training — apply to virtually all modern CNN design. A dataset of at least several thousand labelled images is needed for training from scratch; transfer learning can mitigate data requirements substantially.

Strengths & limitations

Strengths
  • Demonstrated definitively that deep CNNs trained end-to-end on raw pixels can outperform hand-crafted feature pipelines by a large margin on a large-scale benchmark.
  • ReLU activation enables training of deep networks without the vanishing-gradient problem, dramatically accelerating convergence.
  • Dropout regularisation provides an effective, low-overhead technique to reduce overfitting in large fully connected layers.
  • Multi-GPU training strategy introduced a practical parallelism scheme that influenced the design of subsequent large models.
  • Architecture is simple enough to serve as a clear teaching model and a baseline for understanding deeper architectures.
Limitations
  • Computationally expensive to train from scratch; requires a GPU and large labelled datasets.
  • Superseded in accuracy by deeper architectures (VGGNet, GoogLeNet, ResNet, EfficientNet) on most modern benchmarks.
  • Local Response Normalisation is less effective than batch normalisation, which was introduced later and is now standard.
  • The fully connected layers contain the vast majority of the model's ~60 million parameters, making it memory-heavy and prone to overfitting on small datasets.
  • Fixed input size (224×224) and no built-in mechanisms for multi-scale recognition.

Frequently asked

Why did AlexNet have such a large impact in 2012?

The gap between AlexNet's error rate (15.3%) and the runner-up (26.2%) on ILSVRC 2012 was unprecedented. It demonstrated conclusively that deep neural networks trained on raw pixels with large datasets and GPU compute could dramatically outperform the best hand-crafted feature pipelines, overturning a decade of assumptions in computer vision.

What is the difference between AlexNet and a standard CNN?

AlexNet was, at its time, an unusually deep CNN (8 learnable layers). Its distinctive contributions were using ReLU activations throughout (instead of sigmoid/tanh), applying dropout in the fully connected layers to combat overfitting, using local response normalisation, and distributing computation across two GPUs. These design choices together — not the convolutional structure per se — produced its gains.

Should I use AlexNet for a new image classification task today?

For most practical tasks, no. Modern architectures such as ResNet-50, EfficientNetV2, or Vision Transformers achieve higher accuracy with fewer parameters. AlexNet is best used as a teaching tool or as a lightweight baseline when hardware resources are very limited. Transfer learning from pre-trained ResNet or EfficientNet weights will almost always outperform a from-scratch AlexNet.

How does dropout in AlexNet prevent overfitting?

During each forward pass in training, each neuron in the large fully connected layers is independently set to zero with probability 0.5. This prevents neurons from co-adapting in ways that only work on the training data, effectively training an exponential number of different thinned network architectures simultaneously. At test time all neurons are active, with their weights halved to maintain the same expected output.

Sources

  1. Krizhevsky, A., Sutskever, I., & Hinton, G. E. (2012). ImageNet Classification with Deep Convolutional Neural Networks. Advances in Neural Information Processing Systems, 25, 1097–1105. (Republished: Communications of the ACM, 60(6), 84–90, 2017.) DOI: 10.1145/3065386 ↗
  2. Goodfellow, I., Bengio, Y., & Courville, A. (2016). Deep Learning (Ch. 9: Convolutional Networks). MIT Press. ISBN: 978-0-262-03561-3
  3. LeCun, Y., Bengio, Y., & Hinton, G. E. (2015). Deep Learning. Nature, 521, 436–444. DOI: 10.1038/nature14539 ↗

How to cite this page

ScholarGate. (2026, June 3). AlexNet (Krizhevsky–Sutskever–Hinton Deep Convolutional Neural Network). ScholarGate. https://scholargate.app/en/deep-learning/alexnet

Related methods

Batch NormalizationDropoutResNet

Which method?

Set this method beside its closest kin and read them side by side — the library lays the books on the table; the choice is yours.

  • Batch NormalizationDeep learning↔ compare
  • DropoutDeep learning↔ compare
  • ResNetDeep learning↔ compare
Compare side by side →

Referenced by

ResNetVGGNet

Similar methods

Image ClassificationVGGNetCNN Image ClassificationConvolutional Neural NetworkResNetInception NetworkFine-Tuned Convolutional Neural NetworkDropout

Related reference concepts

Deep LearningObject Recognition and DetectionNeural Network ArchitecturesBackpropagation and OptimizationConvolutional and Sequence ModelsRegularization and Model Complexity

Spotted an issue on this page? Report or suggest a fix →

ScholarGate — AlexNet (AlexNet (Krizhevsky–Sutskever–Hinton Deep Convolutional Neural Network)). Retrieved 2026-07-21 from https://scholargate.app/en/deep-learning/alexnet · Dataset: https://doi.org/10.5281/zenodo.20539026
Quick facts
Originator
Krizhevsky, A.; Sutskever, I.; Hinton, G. E.
Year
2012
Type
Deep Convolutional Neural Network (CNN)
Task
Image classification (and general visual recognition)
Layers
8
TrainableParams
~60 million
DatasetUsed
ImageNet LSVRC-2012 (1.2 million images, 1000 classes)
Top5ErrorRate
15.3% (vs. 26.2% runner-up at ILSVRC 2012)
KeyInnovations
ReLU activation, dropout regularisation, GPU-accelerated training, data augmentation, local response normalisation
Related methods
Batch NormalizationDropoutResNet
ScholarGate

A content-first reference library for research methods — what each one is, how it works, and where it comes from.

Open data (CC-BY)

Explore

  • Library
  • Search the library…
  • Browse by field
  • Fields
  • Journey
  • Compare
  • Which method?

Reference

  • Subjects
  • Atlas
  • Glossary
  • Methodology
  • Philosophy

Your tools

  • Bookshelf
  • Desk
  • Chat

Company

  • About
  • Pricing
  • Contact
  • Suggest a method

Entries are compiled from published sources for reference. Verifying the accuracy and suitability of any information for your own use remains your responsibility.

© 2026 ScholarGate · A research-method reference library
  • Privacy
  • Cookies
  • Terms
  • Delete account