Search icon CANCEL
Subscription
0
Cart icon
Cart
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
Deep Learning with R Cookbook
Deep Learning with R Cookbook

Deep Learning with R Cookbook: Over 45 unique recipes to delve into neural network techniques using R 3.5.x

By Swarna Gupta , Rehan Ali Ansari , Dipayan Sarkar
NZ$‎57.99
Book Feb 2020 328 pages 1st Edition
eBook
NZ$‎57.99
Print
NZ$‎71.99
Subscription
Free Trial
eBook
NZ$‎57.99
Print
NZ$‎71.99
Subscription
Free Trial

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Buy Now
Table of content icon View table of contents Preview book icon Preview Book

Deep Learning with R Cookbook

Working with Convolutional Neural Networks

Convolutional Neural Networks (CNNs) are the most popular and widely used deep neural networks for computer vision problems. They are used in a variety of applications including image classification, face recognition, document analysis, medical image analysis, action recognition, and natural language processing. In this chapter, we will focus on learning convolutional operations, and concepts such as padding and strides, to optimize CNNs. The idea behind this chapter is to make you well versed with the functioning of the CNN and learn techniques such as data augmentation and batch normalization to fine-tune your network and prevent overfitting. We will also provide a brief discussion about how we can leverage transfer learning to boost model performance. 

In this chapter, we will cover the following recipes:

    ...

Introduction to convolutional operations

The generic architecture of CNN is comprised of convolutional layers followed by fully connected layers. Like other neural networks, a CNN also contains input, hidden and output layers, but it works by restructuring the data into tensors that consist of the image, and the width and height of the image. In CNN, each volume in one layer is connected only to a spatially relevant region in the next layer to ensure that when the number of layers increases, each neuron has a local influence on its specific location. A CNN may also contain pooling layers along with few fully connected layers.

The following is an example of a simple CNN with convolution and pooling layers. In this recipe, we will work with convolution layers. We will introduce the concept of pooling layers in the Getting familiar with pooling layers recipe of...

Understanding strides and padding

In this recipe, we will learn about two key configuration hyperparameters of CNN, which are strides and padding. Strides are used mainly to reduce the size of the output volume. Padding is another technique that lets us preserve the dimensions of the input volume in the output volume, thus enabling us to extract the low-level features efficiently.

Strides: Stride, in very simple terms, means the step of the convolution operation. Stride specifies the amount by which filters convolve around the input. For example, if we specify the value of stride argument as 1, that means the filter will shift one unit at a time over the input matrix. 

Strides can be used for multiple purposes, primarily the following:

  • To avoid feature overlapping
  • To achieve smaller spatial dimensionality of the output volume

In the following diagram, you...

Getting familiar with pooling layers

CNNs use pooling layers to reduce the size of the representation, to speed up the computation of the network, and to ensure robust feature extraction. The pooling layer is mostly stacked on top of the convolutional layer and this layer heavily downsizes the input dimension to reduce the computation in the network and also reduce overfitting.

There are two most commonly used types of pooling techniques :

  • Max pooling: This type of pooling does downsampling by dividing the input matrix into pooling regions followed by computing the max values of each region.

Here's an example:

  • Average poolingThis type of pooling does downsampling by dividing the input matrix into pooling regions followed by computing the average values of each region. 

Here's an example:

In this recipe, we will learn how...

Implementing transfer learning

Transfer learning helps us solve a new problem using fewer examples by using information gained from solving other related tasks. It is a technique where we reuse a learned model trained on a different dataset to solve a similar but different problem. In transfer learning, we extend the learning of a pre-trained model in our network and build a new model to solve a new learning problem. The keras library in R provides many pre-trained models; we will be using one such model called as VGG16 to train our network.

Getting ready

We will start by importing the keras library into our environment:

library(keras)

In this example, we will work with a subset of the Dogs versus Cats dataset from...

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Understand the intricacies of R deep learning packages to perform a range of deep learning tasks
  • Implement deep learning techniques and algorithms for real-world use cases
  • Explore various state-of-the-art techniques for fine-tuning neural network models

Description

Deep learning (DL) has evolved in recent years with developments such as generative adversarial networks (GANs), variational autoencoders (VAEs), and deep reinforcement learning. This book will get you up and running with R 3.5.x to help you implement DL techniques. The book starts with the various DL techniques that you can implement in your apps. A unique set of recipes will help you solve binomial and multinomial classification problems, and perform regression and hyperparameter optimization. To help you gain hands-on experience of concepts, the book features recipes for implementing convolutional neural networks (CNNs), recurrent neural networks (RNNs), and Long short-term memory (LSTMs) networks, as well as sequence-to-sequence models and reinforcement learning. You’ll then learn about high-performance computation using GPUs, along with learning about parallel computation capabilities in R. Later, you’ll explore libraries, such as MXNet, that are designed for GPU computing and state-of-the-art DL. Finally, you’ll discover how to solve different problems in NLP, object detection, and action identification, before understanding how to use pre-trained models in DL apps. By the end of this book, you’ll have comprehensive knowledge of DL and DL packages, and be able to develop effective solutions for different DL problems.

What you will learn

Work with different datasets for image classification using CNNs Apply transfer learning to solve complex computer vision problems Use RNNs and their variants such as LSTMs and Gated Recurrent Units (GRUs) for sequence data generation and classification Implement autoencoders for DL tasks such as dimensionality reduction, denoising, and image colorization Build deep generative models to create photorealistic images using GANs and VAEs Use MXNet to accelerate the training of DL models through distributed computing

Product Details

Country selected

Publication date : Feb 21, 2020
Length 328 pages
Edition : 1st Edition
Language : English
ISBN-13 : 9781789805673
Category :
Languages :
Concepts :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Buy Now

Product Details


Publication date : Feb 21, 2020
Length 328 pages
Edition : 1st Edition
Language : English
ISBN-13 : 9781789805673
Category :
Languages :
Concepts :

Table of Contents

11 Chapters
Preface Chevron down icon Chevron up icon
1. Understanding Neural Networks and Deep Neural Networks Chevron down icon Chevron up icon
2. Working with Convolutional Neural Networks Chevron down icon Chevron up icon
3. Recurrent Neural Networks in Action Chevron down icon Chevron up icon
4. Implementing Autoencoders with Keras Chevron down icon Chevron up icon
5. Deep Generative Models Chevron down icon Chevron up icon
6. Handling Big Data Using Large-Scale Deep Learning Chevron down icon Chevron up icon
7. Working with Text and Audio for NLP Chevron down icon Chevron up icon
8. Deep Learning for Computer Vision Chevron down icon Chevron up icon
9. Implementing Reinforcement Learning Chevron down icon Chevron up icon
10. Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Empty star icon Empty star icon Empty star icon Empty star icon Empty star icon 0
(0 Ratings)
5 star 0%
4 star 0%
3 star 0%
2 star 0%
1 star 0%
Top Reviews
No reviews found
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.