January 2019
Intermediate to advanced
316 pages
8h 16m
English
Upsampling blocks contain layers that increase the spatial resolution of images and generate a high-resolution image of dimensions 256x256x3.
Let's write the code for the upsampling blocks:
x = UpSampling2D(size=(2, 2))(x)x = Conv2D(512, kernel_size=3, padding="same", strides=1, use_bias=False)(x)x = BatchNormalization()(x)x = ReLU()(x)
Read now
Unlock full access