├── .gitignore ├── README.md ├── SAGAN_celeba.ipynb ├── SAGAN_mnist.ipynb ├── Self_attention.ipynb ├── Self_attention2.ipynb ├── demo ├── .DS_Store ├── SA_structure.png ├── arial.ttf ├── comparison_celebA.gif ├── comparison_mnist.gif └── model_structure.png ├── model_28.py ├── model_64.py └── spectral.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franknb/Self-attention-DCGAN/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franknb/Self-attention-DCGAN/HEAD/README.md -------------------------------------------------------------------------------- /SAGAN_celeba.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franknb/Self-attention-DCGAN/HEAD/SAGAN_celeba.ipynb -------------------------------------------------------------------------------- /SAGAN_mnist.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franknb/Self-attention-DCGAN/HEAD/SAGAN_mnist.ipynb -------------------------------------------------------------------------------- /Self_attention.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franknb/Self-attention-DCGAN/HEAD/Self_attention.ipynb -------------------------------------------------------------------------------- /Self_attention2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franknb/Self-attention-DCGAN/HEAD/Self_attention2.ipynb -------------------------------------------------------------------------------- /demo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franknb/Self-attention-DCGAN/HEAD/demo/.DS_Store -------------------------------------------------------------------------------- /demo/SA_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franknb/Self-attention-DCGAN/HEAD/demo/SA_structure.png -------------------------------------------------------------------------------- /demo/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franknb/Self-attention-DCGAN/HEAD/demo/arial.ttf -------------------------------------------------------------------------------- /demo/comparison_celebA.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franknb/Self-attention-DCGAN/HEAD/demo/comparison_celebA.gif -------------------------------------------------------------------------------- /demo/comparison_mnist.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franknb/Self-attention-DCGAN/HEAD/demo/comparison_mnist.gif -------------------------------------------------------------------------------- /demo/model_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franknb/Self-attention-DCGAN/HEAD/demo/model_structure.png -------------------------------------------------------------------------------- /model_28.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franknb/Self-attention-DCGAN/HEAD/model_28.py -------------------------------------------------------------------------------- /model_64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franknb/Self-attention-DCGAN/HEAD/model_64.py -------------------------------------------------------------------------------- /spectral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franknb/Self-attention-DCGAN/HEAD/spectral.py --------------------------------------------------------------------------------