CoMoGAN_Modified / options /train_options.py
datnguyentien204's picture
Upload 38 files
3894c45 verified
raw
history blame contribute delete
341 Bytes
import munch
def TrainOptions():
to = munch.Munch()
# Iterations
to.total_iterations = 30000000
# Save checkpoint every x iters
to.save_latest_freq = 35000
# Save checkpoint every x epochs
to.save_epoch_freq = 5
# Adam settings
to.beta1 = 0.5
# gan type
to.gan_mode = 'lsgan'
return to