GAN-Tutorial icon indicating copy to clipboard operation
GAN-Tutorial copied to clipboard

Simple Implementation of many GAN models with PyTorch.

Results 3 GAN-Tutorial issues
Sort by recently updated
recently updated
newest added

Hi, thank you for making an amazing notebook that I can practice. I would like to change the size of the image. For example, in R1GAN and BEGAN, `IMAGE_DIM` is...

``` def get_sample_image(G, n_noise): """ save sample 100 images """ z = torch.randn(10, n_noise).to(DEVICE) y_hat = G(z).view(10, 3, 28, 28).permute(0, 2, 3, 1) # (100, 28, 28) result = (y_hat.detach().cpu().numpy()+1)/2....

Hello @Yangyangii! Firstly, thank you for creating this super comprehensive notebook on GANs! I tried executing the DCGAN notebook for the MNIST dataset and noted that the outputs weren't getting...