DCGAN-tensorflow
DCGAN-tensorflow copied to clipboard
Does not save checkpoints during training
Hello, after training the mode, the checkpoint folder as well as the samples folder remain empty. Does anyone know why this could be the case? Thanks!
Same
By default, the checkpoint is saved every 200 epochs. If you train during less epochs, no checkpoint will be saved!
You can control the checkpoint frequency with --ckpt_freq
, the sample frequency with --sample_freq
and the number of iterations with --epoch
.
Hope it helps!