style-based-gan-pytorch icon indicating copy to clipboard operation
style-based-gan-pytorch copied to clipboard

Implementation A Style-Based Generator Architecture for Generative Adversarial Networks in PyTorch

Results 76 style-based-gan-pytorch issues
Sort by recently updated
recently updated
newest added

Thank you for your work, I am a newcomer who wants to know about the work. I noticed that you only provide the command to train the model in the...

Hi, it looks like n_gpu setting isn't used anywhere.

Before I start, Huge thank you for the pre trained models; but generating is problematic. Each time I try to run the code this happens:[output](https://pastebin.com/keRn13KQ) Surprisingly enough, training works perfectly...

Hi, I try to use your environment to train the generator and discriminator with grayscale inputs, but I don't figure it which are the values that need to be change...

thanks for this work! But i still have two question: 1. the number of styledconvblock is 6, so the output image size is no more than 128, am i right?...

if mixing and random.random() < 0.9: gen_in11, gen_in12, gen_in21, gen_in22 = torch.randn(4, b_size, code_size, device='cuda').chunk(4, 0) gen_in1 = [gen_in11.squeeze(0), gen_in12.squeeze(0)] gen_in2 = [gen_in21.squeeze(0), gen_in22.squeeze(0)] else: gen_in1, gen_in2 = torch.randn(2, b_size,...