-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
About noise optimize in image2styleGAN++ #1
Comments
Thanks for your questions. As you say, optimizing n should produce better images. However, I was satisfied with the quality of the image by the optimization of w only . |
Hi, you said that for optimize n (noise) you need to slightly modified styleGAN implementation, I'm trying to add this optimization but can't see why & where i need to modify the styleGAN code. I would be happy for some advice :) |
Noise is generated dynamically in the layer of StyleGAN. To pass it to the optimizer, you need to keep it as a parameter in the class But I don't know a good idea StyleGAN_LatentEditor/stylegan_layers.py Line 118 in b4eb124
|
thanks for the answer! maybe i got this wrong.. but in stylegan the noise generated is constant, so passing it to the optimizer like in: StyleGAN_LatentEditor/image_crossover.py Lines 69 to 70 in b4eb124
so that: I would be happy it you could shed some light :) |
@yosefyehoshua maybe you should do this:
Iamge2stylegan++ paper recommends alternative recommend to use alternating optimization, but each set of variables |
Can it be applied directly to image2stylegan too? I don't know how to add it. |
Hi, thank you for your good work, I have a question, In paper image2styleGAN++, the author mentioned that they both optimize w and n(noise) , but in your code, I only find w, and find nothing about noise optimize process
The text was updated successfully, but these errors were encountered: