February 2020
Intermediate to advanced
328 pages
8h 19m
English
Let's start by declaring a few variables that will be required for the model's configuration:
latent_dim <- 32height <- 32width <- 32channels <- 3
input_generator <- layer_input(shape = c(latent_dim))output_generator <- input_generator %>% # We transform the input data into a 16x16 128-channels feature map initially ...
Read now
Unlock full access