January 2019
Intermediate to advanced
316 pages
8h 16m
English
This block takes a low-resolution image of the dimensions 64x64x3 from the generator of Stage-I and downsamples it to generate a tensor with a shape of 16x16x512. The image goes through a series of 2D convolution blocks.
In this section, we will write the implementation for the downsampling blocks.
x = ZeroPadding2D(padding=(1, 1))(input_lr_images)x = Conv2D( ...
Read now
Unlock full access