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

Learns generalizable World Action Models for robotic manipulation by scaling causal egocentric video pretraining and grounding learned dynamics with heterogeneous robot trajectories. Key features: a three-stage curriculum (video pretraining, video-action mid-training with a unified action representation, and target-robot specialization) and a Slow–Fast dual-system for 30 Hz real-time action prediction.

Develops a vision-language foundation model for autonomous driving that unifies 3D BEV perception, visual question answering, and motion planning without changing the pretrained VLM architecture. Key elements include an external BEV perception head for 3D detection and occupancy, a Planning Expert using flow-matching for trajectory prediction, and a staged training recipe combining driving and general VLM data.

Converts posed indoor RGB(-D) video into editable, simulation-ready 3D scene graphs by parsing multi-view evidence into per-object bundles, generating complete object assets from that evidence, and placing them with GizmoAct, a VLM policy that refines 9-DoF poses through closed-loop GUI actions.