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

Proposes VLAct, a representation-centric continued pre-training method for Vision-Language-Action models that preserves VLM priors and enforces cross-embodiment action semantics to turn limited robot trajectories into transferable visual-action representations; shows strong gains and sample efficiency on multiple VLA benchmarks using modest compute.

Performs causal, bounded‑memory streaming 3D reconstruction by caching KV features from only the preceding 11 frames, predicting a per‑frame point map and adjacent relative pose, and composing these local predictions into a global trajectory; includes a lightweight rotation refiner and composition‑aware loss to limit drift.

Rewrites physical scenes as executable world programs (e.g., MuJoCo scene descriptions) and uses an agentic abductive loop to propose, execute, render, verify, and iteratively refine those programs from videos or text. Verified executable worlds supply scalable physical supervision for training vision–language models.