WisconsinAIVision/few-shot-gan-adaptation

What should I do if I want to generate 512X256 resolution images

yxsysu opened this issue · 2 comments

I found that there is only one parameter: --size, but I want to generate 512x256 resolution images...
This is my first time using stylegan2. Could you tell me which part of the code needs to be changed?
Thanks a lot!

The generator's architecture proposed in StyleGAN is symmetric, i.e. it will only be able to generate square images. People have tried experimenting with the trying to generate rectangular images, you can find one of the posts here.

I modifide ''class ConstantInput(nn.Module)`` in model.py and it works.
Thanks !