We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Dear Deepminder:
For generative adversarial network, there introduces a normalization called spectrum normalization (ref: https://arxiv.org/abs/1802.05957).
However I find according to the knowledge of me, it is a little hard for me to incorporate it into Sonnet.
This is because spectral normalization changes the weights. But I checked snt.Conv2D, seems the weight is intractable due to internal management.
Old version sonnet seems to have a solution, (#99) but I can't find "custom_getter" and other Solutions in Sonnet version: 2.0.0.
So could I be given some suggestion regarding such a situation? Thanks a lot.
The text was updated successfully, but these errors were encountered:
Hi @isletennos,
I think snt.custom_variable_getter is what you're looking for.
snt.custom_variable_getter
Sorry, something went wrong.
Thanks for getting back to me without delay!
I couldn't find in the Sonnet Documentation how to use this modules. What should I do if I only get the w in snt.conv2D and process it like a SN?
There is an implementation of SpectralNormalizer in the little_gan_on_mnist notebook under examples/
SpectralNormalizer
examples/
No branches or pull requests
Dear Deepminder:
For generative adversarial network, there introduces a normalization called spectrum normalization (ref: https://arxiv.org/abs/1802.05957).
However I find according to the knowledge of me, it is a little hard for me to incorporate it into Sonnet.
This is because spectral normalization changes the weights. But I checked snt.Conv2D, seems the weight is intractable due to internal management.
Old version sonnet seems to have a solution,
(#99)
but I can't find "custom_getter" and other Solutions in Sonnet version: 2.0.0.
So could I be given some suggestion regarding such a situation?
Thanks a lot.
The text was updated successfully, but these errors were encountered: