Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Advanced Deep Learning with R

You're reading from  Advanced Deep Learning with R

Product type Book
Published in Dec 2019
Publisher Packt
ISBN-13 9781789538779
Pages 352 pages
Edition 1st Edition
Languages
Author (1):
Bharatendra Rai Bharatendra Rai
Profile icon Bharatendra Rai

Table of Contents (20) Chapters

Preface 1. Section 1: Revisiting Deep Learning Basics
2. Revisiting Deep Learning Architecture and Techniques 3. Section 2: Deep Learning for Prediction and Classification
4. Deep Neural Networks for Multi-Class Classification 5. Deep Neural Networks for Regression 6. Section 3: Deep Learning for Computer Vision
7. Image Classification and Recognition 8. Image Classification Using Convolutional Neural Networks 9. Applying Autoencoder Neural Networks Using Keras 10. Image Classification for Small Data Using Transfer Learning 11. Creating New Images Using Generative Adversarial Networks 12. Section 4: Deep Learning for Natural Language Processing
13. Deep Networks for Text Classification 14. Text Classification Using Recurrent Neural Networks 15. Text classification Using Long Short-Term Memory Network 16. Text Classification Using Convolutional Recurrent Neural Networks 17. Section 5: The Road Ahead
18. Tips, Tricks, and the Road Ahead 19. Other Books You May Enjoy

Layers in the convolutional neural networks

In this section, we will develop model architecture and then compile the model. We will also carry out calculations to compare the convolutional network with a fully connected network. Let's get started by specifying the model architecture.

Model architecture and related calculations

We start by creating a model using the keras_model_sequential function. The codes used for the model architecture are given as follows:

# Model architecture
model <- keras_model_sequential()
model %>%
layer_conv_2d(filters = 32,
kernel_size = c(3,3),
activation = 'relu',
input_shape = c(28,28,1)) %&gt...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}