January 2019
Intermediate to advanced
316 pages
8h 16m
English
We have already covered the training objective function in the An Introduction to CycleGANs section. We have also created the respective Keras models for both networks. Training the CycleGAN is a multi-step process. We will perform the following steps to train the network:
Let's define the essential variables before starting to train the network, as follows:
data_dir = "/Path/to/dataset/directory/*.*"batch_size = 1epochs = 500
Read now
Unlock full access