PyTorch-StudioGAN
PyTorch-StudioGAN copied to clipboard
StudioGAN is a Pytorch library providing implementations of representative Generative Adversarial Networks (GANs) for conditional/unconditional image generation.
Hi, first of all I would like to thank you tremendously for your work. I'm certain that this repository alone has saved countless hours for researchers and developers all across...
Hi & Good day! In the section "4.3 Backbone networks for GAN evaluation" of your article, you have mentioned that you have used DINO as a metric. Does that mean...
Hi MingKug and team, Thanks for your great work in maintaining the repository. We just released our new work NoisyTwins [CVPR 2023], a regularizer for the latent space of GAN....
Hi & good day! Thanks for the paper, the repo and codes. I was searching through folders to find out the source code for image analysis, but didn't see anything...
set d_cond_mtd to "PD" in stylegan2, there is a bug: 'Discriminator' object has no attribute 'embedding'
My system is linux, and when I use main.py, it calls config.py. When “import utils.misc as misc“ and so on, it will report an error. However, if you add an...
Hi, This is **'cal_grad_penalty'** function in `/src/utils/losses.py` ``` def cal_grad_penalty(real_images, real_labels, fake_images, discriminator, device): batch_size, c, h, w = real_images.shape alpha = torch.rand(batch_size, 1) alpha = alpha.expand(batch_size, real_images.nelement() // batch_size).contiguous().view(batch_size,...
- missing optimizer.zero_grad() - validation accuracy was computed on the training set instead of the validation set - fix log Also, I believe would be better to generate a fake...
Hello, I have found the code for 2c loss. Where is ContraGAN's model in the paper "Contrastive Learning for Conditional Image Generation"
Hello, I wanted to run experiments with the “historical” DCGAN architecture on CIFAR10, noting that, unlike the original paper by Radfort et al. (2015), the discrimination is not bounded to...