big-discriminator-batch-spoofing-gan icon indicating copy to clipboard operation
big-discriminator-batch-spoofing-gan copied to clipboard

BMSG-GAN with more features

Results 3 big-discriminator-batch-spoofing-gan issues
Sort by recently updated
recently updated
newest added

There exists an apparent error in the implementation of LSGAN below. https://github.com/akanimax/BBMSG-GAN/blob/da82aa2e8507d17801bd2134a4ae754335d716f5/sourcecode/MSG_GAN/Losses.py#L145 Right implementation: ```python class LSGAN(GANLoss): def __init__(self, dis): super().__init__(dis) def dis_loss(self, real_samps, fake_samps): real_scores = th.mean((self.dis(real_samps) - 1)...

I run a few hours on 8GPUs wihtout any progress. Each sample is pixelwise copy of each other in all layers. 4x4 ![image](https://user-images.githubusercontent.com/37534415/66875587-88854600-efb7-11e9-8058-d8bca9c0697a.png) 64x64 ![image](https://user-images.githubusercontent.com/37534415/66875607-9a66e900-efb7-11e9-9ce2-5a48b4c02299.png) setup ``` git clone [email protected]:akanimax/BBMSG-GAN.git...

Hi there, I've been trying to get BBMSG-GAN running but haven't been able to get training started. I have two 11 GB 1080 Ti cards on Ubuntu 18.10 with pytorch...