使用深度卷积神经网络的 ImageNet 分类

ImageNet Classification with Deep Convolutional Neural Networks

伊利亚·苏茨克维尔 Ilya Sutskever · NeurIPS (2012) · 2012-12-01 · NeurIPS 2012 ↗

打开互动全文版(逐段中英对照 + 图/公式 + 论文问答)→

摘要 · Abstract

我们训练了一个大型深度卷积神经网络,将 ImageNet LSVRC-2010 竞赛中的 120 万张高分辨率图像分类为 1000 个不同的类别。在测试数据上,我们取得了 top-1 和 top-5 错误率分别为 37.5% 和 17.0%,这显著优于之前的最优结果。该神经网络拥有 6000 万个参数和 65 万个神经元,由五个卷积层(其中一些后接最大池化层)和三个全连接层组成,最后是一个 1000 路的 softmax。为了加快训练速度,我们使用了非饱和神经元以及非常高效的 GPU 卷积运算实现。为了减少全连接层中的过拟合,我们采用了一种最近开发的称为“dropout”的正则化方法,该方法被证明非常有效。我们还将该模型的一个变体参加了 ILSVRC-2012 竞赛,并取得了获胜的 top-5 测试错误率 15.3%,而第二名参赛者的错误率为 26.2%。

We trained a large, deep convolutional neural network to classify the 1.2 million high-resolution images in the ImageNet LSVRC-2010 contest into the 1000 different classes. On the test data, we achieved top-1 and top-5 error rates of 37.5% and 17.0% which is considerably better than the previous state-of-the-art. The neural network, which has 60 million parameters and 650,000 neurons, consists of five convolutional layers, some of which are followed by max-pooling layers, and three fully-connected layers with a final 1000-way softmax. To make training faster, we used non-saturating neurons and a very efficient GPU implementation of the convolution operation. To reduce overfitting in the fully-connected layers we employed a recently-developed regularization method called “dropout” that proved to be very effective. We also entered a variant of this model in the ILSVRC-2012 competition and achieved a winning top-5 test error rate of 15.3%, compared to 26.2% achieved by the second-best entry.

核心贡献 · Key contributions

局限 · Limitations

论文章节 · Sections(共 8)

阅读逐段中英对照全文 →