imageNet Classification with Deep Convolutional Neural Networks: Difference between revisions

From statwiki
Jump to navigation Jump to search
(Created page with "== Introduction == == Dataset == == Architecture == == Reducing overfitting == == Details of leaning == == Results == == Discussion ==")
 
Line 1: Line 1:
== Introduction ==
== 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>
http://code.google.com/p/cuda-convnet/
</ref>.


== Dataset ==
== Dataset ==

Revision as of 15:56, 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> http://code.google.com/p/cuda-convnet/ </ref>.

Dataset

Architecture

Reducing overfitting

Details of leaning

Results

Discussion