January 2019
Intermediate to advanced
316 pages
8h 16m
English
We have already explored the architecture of the generator network in The architecture of the generator network section. Let's start by writing the layers for the generator network in the Keras framework and then create a Keras model, using the functional API of the Keras framework.
Perform the following steps to implement the generator network in Keras:
residual_blocks = 16momentum = 0.8input_shape = (64, 64, 3)
input_layer = Input(shape=input_shape)
Read now
Unlock full access