├── IMAGES ├── 0.jpg ├── 1.gif ├── 1.jpg ├── 2.gif ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── 6.jpg ├── 7.jpg ├── 8.jpg ├── 9.jpg ├── character.gif ├── character1.gif ├── cifar.jpg ├── generate.jpg ├── generate.vsdx └── projection.jpg ├── LICENSE ├── README.md ├── dataset └── dataset.txt ├── networks_128.py ├── networks_32.py ├── networks_64.py ├── ops.py ├── results └── README.txt ├── save_img └── README.txt ├── save_para └── README.txt ├── train_cifar.py └── utils.py /IMAGES/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/IMAGES/0.jpg -------------------------------------------------------------------------------- /IMAGES/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/IMAGES/1.gif -------------------------------------------------------------------------------- /IMAGES/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/IMAGES/1.jpg -------------------------------------------------------------------------------- /IMAGES/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/IMAGES/2.gif -------------------------------------------------------------------------------- /IMAGES/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/IMAGES/2.jpg -------------------------------------------------------------------------------- /IMAGES/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/IMAGES/3.jpg -------------------------------------------------------------------------------- /IMAGES/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/IMAGES/4.jpg -------------------------------------------------------------------------------- /IMAGES/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/IMAGES/5.jpg -------------------------------------------------------------------------------- /IMAGES/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/IMAGES/6.jpg -------------------------------------------------------------------------------- /IMAGES/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/IMAGES/7.jpg -------------------------------------------------------------------------------- /IMAGES/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/IMAGES/8.jpg -------------------------------------------------------------------------------- /IMAGES/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/IMAGES/9.jpg -------------------------------------------------------------------------------- /IMAGES/character.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/IMAGES/character.gif -------------------------------------------------------------------------------- /IMAGES/character1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/IMAGES/character1.gif -------------------------------------------------------------------------------- /IMAGES/cifar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/IMAGES/cifar.jpg -------------------------------------------------------------------------------- /IMAGES/generate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/IMAGES/generate.jpg -------------------------------------------------------------------------------- /IMAGES/generate.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/IMAGES/generate.vsdx -------------------------------------------------------------------------------- /IMAGES/projection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/IMAGES/projection.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/README.md -------------------------------------------------------------------------------- /dataset/dataset.txt: -------------------------------------------------------------------------------- 1 | put cifar-10 dataset into this folder -------------------------------------------------------------------------------- /networks_128.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/networks_128.py -------------------------------------------------------------------------------- /networks_32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/networks_32.py -------------------------------------------------------------------------------- /networks_64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/networks_64.py -------------------------------------------------------------------------------- /ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/ops.py -------------------------------------------------------------------------------- /results/README.txt: -------------------------------------------------------------------------------- 1 | save the test results -------------------------------------------------------------------------------- /save_img/README.txt: -------------------------------------------------------------------------------- 1 | save the training results -------------------------------------------------------------------------------- /save_para/README.txt: -------------------------------------------------------------------------------- 1 | save the parameters -------------------------------------------------------------------------------- /train_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/train_cifar.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/sngan_projection_TensorFlow/HEAD/utils.py --------------------------------------------------------------------------------