Skip to content
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

Spectral Normalization #3

Open
oleksandrlazariev opened this issue Nov 19, 2018 · 3 comments
Open

Spectral Normalization #3

oleksandrlazariev opened this issue Nov 19, 2018 · 3 comments

Comments

@oleksandrlazariev
Copy link

I'm curious if you've tried the Spectral Normalization technic for your approach? At least at resolution 128^2 it didn't work for me

@LMescheder
Copy link
Owner

We haven't tried to combine spetral norm with our method, but depending on the spectral norm implementation your problems might be related to how our code handles trainable parameters. Here and here we set all parameters of the generator / discriminator to trainable, which might also affect the u and v vectors of the spectral norm (which shouldn't be trainable). You can use buffers instead, but then you have to make sure that the running average still works, which currently only operates on the parameters.

@oleksandrlazariev
Copy link
Author

@LMescheder thanks for the quick reply. I'll give it a try accordingly to your insights

@Johnson-yue
Copy link

@oleksandrlazariev Hi, did you work fine with SN ??

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants