Generative_Adversarial_Networks_PyTorch icon indicating copy to clipboard operation
Generative_Adversarial_Networks_PyTorch copied to clipboard

(PyTorch) Implementations of GAN, Improved GAN, DCGAN, LAPGAN, and InfoGAN in PyTorch

Results 4 Generative_Adversarial_Networks_PyTorch issues
Sort by recently updated
recently updated
newest added

can you add more comments on LAPGAN of class CondiGAN_Discriminator,i could not understand that part according to the paper.

The two for loops in the minibatch discrimination part of the improvedGAN increase the running time by several magnitudes - is there a faster way? Thanks!

hello @AaronYALai in run_InfoGAN.py, I can't figure out the parameter n_discrete 's meaning.I'm looking forward to your reply.Thanks.

hello @AaronYALai , in run_InfoGAN.py, 'D_loss=D_criterion(outputs[:,0],labels)' is the mean of 2*batchSize loss between outputs and labels, but I think D_loss=truth_input_loss+fake_input_loss, that should be the mean of 1*batchSize loss. I'm looking...