odegeasslbc / FastGAN-pytorch

Official implementation of the paper "Towards Faster and Stabilized GAN Training for High-fidelity Few-shot Image Synthesis" in ICLR 2021
GNU General Public License v3.0
600 stars 100 forks source link

Saved Models. #41

Closed vsantjr closed 2 years ago

vsantjr commented 2 years ago

Hello, First of all, congrats for your nice work. Just to know what is the meaning of the saved models. I have trained with 50000 iterations and for each 10000 iterations a model is saved. Hence, we have 50000.pth and all_50000.pth. Whats is the difference between them when generating new fake samples? Best Regards.

odegeasslbc commented 2 years ago

Hi

'50000.pth' only has the generator and discriminator, 'all_50000.pth' contains optimizers which you can use later to resume the trainings. There is no difference between the saved generator and discriminator

vsantjr commented 2 years ago

Hello, Thank you for your response. Regards.