-
Book Overview & Buying
-
Table Of Contents
R Deep Learning Cookbook
By :
The current recipe will cover Transfer Learning using the CIFAR-10 dataset. The previous recipe presented how to use a pretrained model. The current recipe will demonstrate how to use a pretrained model for different problem statements.
We will use another very good deep learning package, MXNET, to demonstrate the concept with another architecture, Inception. To simplify the computation, we will reduce the problem complexity from 10 classes to two classes: aeroplane and automobile. The recipe focuses on data preparation for Transfer Learning using Inception-BN.
The section prepares for the upcoming section for setting-up Transfer Learning model.
download.cifar.datafunction from Chapter 3,Convolution Neural Networks, can be used to download the dataset.imager package:install.packages("imager")The current part of the recipe will provide...