Skip to Content
Keras Deep Learning Cookbook
book

Keras Deep Learning Cookbook

by Rajdeep Dua, Sujit Pal, Manpreet Singh Ghotra
October 2018
Intermediate to advanced
252 pages
6h 49m
English
Packt Publishing
Content preview from Keras Deep Learning Cookbook

Generator

Creating a generator consists of implementing two layers of convolutional layers with leaky ReLU activations:

  • Dense layer with output of (128*7*7)
  • Reshape it to (7,7,128)
  • Upsample 2D (upsampling refers to a technique that will upsamples an image to a higher resolution; 2D means upsample two 2D images)
  • Convolution 2D with an output of 128 filters
  • Batch normalization
  • RELU activation
  • Upsample 2D
  • Convolution 2D with an output of 64 filters
  • Batch normalization
  • RELU activation
  • Convolution 2D with an output of three filters
  • Last activation of tanh:
def build_generator(self):    model = Sequential()    model.add(Dense(128 * 7 * 7, activation="relu", input_dim=self.latent_dim))    model.add(Reshape((7, 7, 128)))    model.add(UpSampling2D()) model.add(Conv2D( ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Applied Deep Learning with Keras

Applied Deep Learning with Keras

Ritesh Bhagwat, Mahla Abdolahnejad, Matthew Moocarme
Advanced Deep Learning with Keras

Advanced Deep Learning with Keras

Rowel Atienza, Neeraj Verma, Valerio Maggio
The Applied TensorFlow and Keras Workshop

The Applied TensorFlow and Keras Workshop

Harveen Singh Chadha, Luis Capelo, Abhranshu Bagchi, Achint Chaudhary, Vishal Chauhan, Alexis Rutherford, Subhash Sundaravadivelu

Publisher Resources

ISBN: 9781788621755Supplemental Content