AIAny

ImageNet Classification with Deep Convolutional Neural Networks

The result that kicked off the deep learning era: in 2012 a deep CNN cut ImageNet top-5 error from 26% to 15%, showing that GPU-trained networks with ReLU and dropout could beat decades of hand-engineered computer vision features.

Introduction

Before 2012, computer vision meant hand-crafted features and incremental gains. This paper ended that era almost overnight: AlexNet won the ImageNet competition by a margin so large — 15.3% vs 26.2% top-5 error — that the whole field reorganized around deep learning within a year. The lasting lesson isn't the specific architecture; it's that scale (more data, more compute, more parameters) plus a few enabling tricks could outrun decades of feature engineering.

Key Findings
  • Depth and scale win. A 60M-parameter, 8-layer CNN trained on 1.2M images beat every hand-engineered system, establishing the "bigger network + more data" recipe that still drives the field today.
  • ReLU made depth trainable. Non-saturating ReLU units trained several times faster than tanh/sigmoid, turning previously impractical deep nets into something that converges in days rather than weeks.
  • Dropout tamed overfitting. Randomly dropping units in the fully-connected layers acted as cheap ensembling — a regularizer that became standard practice for years.
  • GPUs made it feasible. A custom two-GPU convolution implementation turned an intractable training run into a practical one, the moment GPU compute became inseparable from deep learning.
Why It Still Matters / When to Skip

Great fit if you want to understand the inflection point of modern AI, or you're tracing where conventions like ReLU, dropout, and GPU training came from. Look elsewhere if you need current state-of-the-art vision methods — the architecture is long superseded by ResNets, EfficientNets, and vision transformers. Read this for the ideas and the historical pivot, not for techniques to deploy today.

Information

  • Websiteproceedings.neurips.cc
  • OrganizationsUniversity of Toronto
  • AuthorsAlex Krizhevsky, Ilya Sutskever, Geoffrey E. Hinton
  • Published date2012/09/30

More Items

Uses pretrained multimodal LLMs as zero-shot, training-free reward models for text-to-image RL by scoring how well the original text prompt can be recovered from a generated image via image-conditioned prompt log-likelihood; includes a Self-SpectraReward closed-loop variant.

GitHub
AI Model2023

Estimates and tracks 6D poses of novel objects without per-object fine-tuning — supports both model-based (CAD) and model-free (few reference images) setups. Trained on large-scale synthetic data with a transformer-based architecture and contrastive learning; CVPR 2024 highlight with demos and pretrained weights.

Continuously records egocentric visual and audio streams into a lightweight streaming memory that organizes experiences into current, short-term, and long-term tiers and retrieves multimodal evidence to answer queries about past events. Built for on-device use (smartphones/AI glasses) with dynamic retrieval routing.