Zubnet AI学习Wiki › AlexNet
Models

AlexNet

以巨大优势赢得 2012 年 ImageNet 竞赛、触发深度学习革命的卷积神经网络。由 Alex Krizhevsky、Ilya Sutskever、Geoffrey Hinton 创造,AlexNet 把图像分类错误率从 26% 降到 16% — 差距大到让计算机视觉社区相信深度学习从根本上优于手工设计的特征。

为什么重要

AlexNet 是 AI 历史上的“之前和之后”时刻。2012 年之前,大多数 AI 研究者在做特征工程和非神经方法。AlexNet 之后,深度学习成为主导范式。每个现代 AI 系统 — GPT、Claude、Stable Diffusion — 都把自己的血统追溯到 AlexNet 触发的范式转移。它是现代 AI 的大爆炸。

Deep Dive

AlexNet's architecture was relatively simple by modern standards: 5 convolutional layers, 3 fully connected layers, ReLU activation, max pooling, and dropout. The total parameter count was ~60 million. What made it special was training on GPUs (two GTX 580s with 3GB VRAM each — tiny by today's standards), using data augmentation, and being applied to ImageNet's 1.2 million training images — a scale that previous neural approaches hadn't attempted.

The Three Key Ingredients

AlexNet's success came from three things that are now obvious but were revolutionary in 2012: (1) large dataset (ImageNet, 1.2M images), (2) GPU training (making the computation feasible), and (3) deep architecture with ReLU (avoiding the vanishing gradient problem that had limited earlier networks). These three ingredients — data, compute, and architectural innovation — remain the recipe for AI breakthroughs today, just at a much larger scale.

The Aftermath

AlexNet's impact was immediate and permanent. Within a year, every competitive ImageNet entry was a deep CNN. Within three years, VGGNet and GoogLeNet pushed deeper. ResNet (2015) reached 152 layers. The computer vision community pivoted almost entirely to deep learning, and the approach spread to NLP (word embeddings, then RNNs, then Transformers), speech, and eventually every AI domain. The co-author Ilya Sutskever went on to co-found OpenAI.

相关概念

← 所有术语
← AI21 Labs Alibaba Cloud →