rinongal/StyleGAN-nada

Unexpexted output when providing randomly sampled latents

lebeli opened this issue · 1 comments

Whenever I try to provide my own randomly sampled latent codes as source latent, I get images like this:

image

The sampling was done with:
torch.randn(1, 512, device=device)

Do you have any idea why the image generation fails?

Kind regards!

I found the mistake: the statement above generates the z-code for the mapping network. I had to set "input_is_latent=false" otherwise it would not be fed to the mapper. The issue can be closed!