kwotsin / mimicry

[CVPR 2020 Workshop] A PyTorch GAN library that reproduces research results for popular GANs.
MIT License
601 stars 62 forks source link

Generate visual results #10

Closed florian-hoenicke closed 4 years ago

florian-hoenicke commented 4 years ago

Hi, will it be possible to generate some images to make some visual checks of the network performances?

kwotsin commented 4 years ago

Hi @hoenickf, yes it's possible, there are several options:

  1. You can visualise the tensorboard outputs using tensorboard --logdir=/path/to/your/log, and it should be under the image tab.

  2. By default, when training, the generated images will be saved every 500 steps to the log directory at /path/to/your/log/images.

Hope it helps!