StyleGAN_PyTorch
StyleGAN_PyTorch copied to clipboard
The implementation of StyleGAN on PyTorch 1.0.1
Hi~ thank you for converting styleGAN to its pytorch version, which is pretty meaningful. I've noticed that there are some people who can not get resonable training results. Unfortunately, i...
Thanks for the good work. But I can't find where you implemented the progressive growing, which is one of the essential part of StyleGAN. It seems in the G_synthesis module...
Hi, Thanks a lot for your pytorch version code. I am training my own dataset with this model. But, the intermediate file till 80 epoch is still almost blank. since...
Hi, thanks for your reimplementation. It is so elegant. But I found that you have a LeakyReLU layer after `dense1`, which does not exist in the tensorflow implementation. https://github.com/tomguluson92/StyleGAN_PyTorch/blob/92b7a3dc7711f617994dce3c7531177cc9940e04/networks_stylegan.py#L670 https://github.com/NVlabs/stylegan/blob/66813a32aac5045fcde72751522a0c0ba963f6f2/training/networks_stylegan.py#L617...
is these two parameters take the image input from that .pkl file?
Thanks for your reimplementation! 1. In networks_stylegan.py, line 107 `f = f[:, :, ::-1, ::-1]`, I think you should consider use `f = torch.flip(f, [2, 3])` 2. In networks_stylegan.py, line...
What is `normalize` module right after latent z input?
I have a DELL XPS with an nVidia 1080 w 8GB. My hope was to run StyleGAN on this rather than needing to jump to the cloud. Possible? I disable...
Thanks for your code! I run the program with default parameters and images in star folder , but only the noise image is generated after 300 epochs. Is there a...