- Deep Learning with R for Beginners
- Mark Hodnett Joshua F. Wiley Yuxi (Hayden) Liu Pablo Maldonado
- 252字
- 2021-06-24 14:30:46
CNNs
CNNs are the cornerstone of image classification in deep learning. This section gives an introduction to them, explains the history of CNNs, and will explain why they are so powerful.
Before we begin, we will look at a simple deep learning architecture. Deep learning models are difficult to train, so using an existing architecture is often the best place to start. An architecture is an existing deep learning model that was state-of-the-art when initially released. Some examples are AlexNet, VGGNet, GoogleNet, and so on. The architecture we will look at is the original LeNet architecture for digit classification from Yann LeCun and others from the mid 1990s. This architecture was used for the MNIST dataset. This dataset is comprised of grayscale images of 28 x 28 size that contain the digits 0 to 9. The following diagram shows the LeNet architecture:

The original images are 28 x 28 in size. We have a series of hidden layers which are convolution and pooling layers (here, they are labeled subsampling). Each convolutional layer changes structure; for example, when we apply the convolutions in the first hidden layer, our output size is three dimensional. Our final layer is of size 10 x 1, which is the same size as the number of categories. We can apply a softmax function here to convert the values in this layer to probabilities for each category. The category with the highest probability would be the category prediction for each image.
- Python數(shù)據(jù)挖掘:入門、進階與實用案例分析
- 數(shù)據(jù)之巔:數(shù)據(jù)的本質(zhì)與未來
- 工業(yè)大數(shù)據(jù)分析算法實戰(zhàn)
- 文本挖掘:基于R語言的整潔工具
- 醫(yī)療大數(shù)據(jù)挖掘與可視化
- Mastering Machine Learning with R(Second Edition)
- Hadoop大數(shù)據(jù)實戰(zhàn)權(quán)威指南(第2版)
- 圖數(shù)據(jù)實戰(zhàn):用圖思維和圖技術(shù)解決復(fù)雜問題
- IPython Interactive Computing and Visualization Cookbook(Second Edition)
- Visual FoxPro數(shù)據(jù)庫技術(shù)基礎(chǔ)
- 利用Python進行數(shù)據(jù)分析(原書第2版)
- AndEngine for Android Game Development Cookbook
- 數(shù)據(jù)庫基礎(chǔ)與應(yīng)用
- 大數(shù)據(jù)原理與技術(shù)
- Getting Started with Review Board