imageNet Classification with Deep Convolutional Neural Networks: Difference between revisions
m (→Introduction) |
|||
Line 6: | Line 6: | ||
The code of their work is available here<ref> | The code of their work is available here<ref> | ||
http://code.google.com/p/cuda-convnet/ | [http://code.google.com/p/cuda-convnet/ "High-performance C++/CUDA implementation of convolutional neural networks"] | ||
</ref>. | </ref>. | ||
Revision as of 14:59, 11 November 2015
Introduction
In this paper, they trained a large, deep neural network to classify the 1.2 million high-resolution images in the ImageNet LSVRC-2010 contest into the 1000 different classes. To learn about thousands of objects from millions of images, Convolutional Neural Network (CNN) is utilized due to its large learning capacity, fewer connections and parameters and outstanding performance on image classification.
Moreover, current GPU provides a powerful tool to facilitate the training of interestingly-large CNNs. Thus, they trained one of the largest convolutional neural networks to date on the datasets of ILSVRC-2010 and ILSVRC-2012 and achieved the best results ever reported on these datasets by the time this paper was written.
The code of their work is available here<ref> "High-performance C++/CUDA implementation of convolutional neural networks" </ref>.