Spectral Normalization for Generative Adversarial Networks

Takeru Miyato, Toshiki Kataoka, Masanori Koyama, Yuichi Yoshida
2018
6 references

Abstract

One of the challenges in the study of generative adversarial networks is the instability of its training. In this paper, we propose a novel weight normalization technique called spectral normalization to stabilize the training of the discriminator. Our new normalization technique is computationally light and easy to incorporate into existing implementations. We tested the efficacy of spectral normalization on CIFAR10, STL-10, and ILSVRC2012 dataset, and we experimentally confirmed that spectrally normalized GANs (SN-GANs) is capable of generating images of better or equal quality relative to the previous training stabilization techniques.

1 repository
3 references

Code References

pytorch/pytorch
2 files
torch/nn/utils/parametrizations.py
1
L559 .. _`Spectral Normalization for Generative Adversarial Networks`: https://arxiv.org/abs/1802.05957
torch/nn/utils/spectral_norm.py
2
L2 """Spectral Normalization from https://arxiv.org/abs/1802.05957."""
L289 .. _`Spectral Normalization for Generative Adversarial Networks`: https://arxiv.org/abs/1802.05957
Link copied to clipboard!