Added Gradient penalty and feedback to the Generator from Discriminator
- Added feedback from the discriminator in the form of attention 2.Added Gradient penalty from WGAN_GP implementation (Note that simply adding Gradient penalty to enforce the Lipschitz constraint does not drastically improve results in the original WGAN implementation. You can see this by removing batch normalization in WGAN implementation with added Gradient Penalty)
python main_grad.py --dataset lsun --dataroot /workspace/lsun --cuda --fdback --noBN --save_dir samples_gp_noBN_fd
Need the lsun data. Follow the instruction in original implementation link
WGAN Model based on original paper link. WGAN_GP for added loss for gradient penalty link.
Cross Attention/ Feedback is my own implementation
Rerun and recheck the results