├── README.md ├── config.py ├── dataloader.py ├── mnist_generate.py ├── models ├── celeba_model.py ├── mnist_model.py └── svhn_model.py ├── results ├── celeba_results │ ├── Azimuth.png │ ├── Emotions.png │ ├── Epoch_100_CelebA.png │ ├── Epoch_1_CelebA.png │ ├── Epoch_50_CelebA.png │ ├── Hair Amount.png │ ├── Hair Style.png │ ├── Loss Curve CelebA.png │ ├── Smile.png │ ├── Training Images CelebA.png │ ├── gender.png │ └── infoGAN_CelebA.gif ├── fashion_results │ ├── Epoch_100_FashionMNIST.png │ ├── Epoch_1_FashionMNIST.png │ ├── Epoch_50_FashionMNIST.png │ ├── Loss Curve FashionMNIST.png │ ├── Thickness.png │ ├── Training Images FashionMNIST.png │ └── infoGAN_FashionMNIST.gif ├── mnist_results │ ├── Epoch_100_MNIST.png │ ├── Epoch_1_MNIST.png │ ├── Epoch_50_MNIST.png │ ├── Loss Curve MNIST.png │ ├── Rotation.png │ ├── Training Images MNIST.png │ ├── Width.png │ └── infoGAN_MNIST.gif └── svhn_results │ ├── Epoch_100_SVHN.png │ ├── Epoch_1_SVHN.png │ ├── Epoch_50_SVHN.png │ ├── Lighting 2.png │ ├── Lighting.png │ ├── Loss Curve SVHN.png │ ├── Plate Context.png │ ├── Training Images SVHN.png │ └── infoGAN_SVHN.gif ├── train.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/config.py -------------------------------------------------------------------------------- /dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/dataloader.py -------------------------------------------------------------------------------- /mnist_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/mnist_generate.py -------------------------------------------------------------------------------- /models/celeba_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/models/celeba_model.py -------------------------------------------------------------------------------- /models/mnist_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/models/mnist_model.py -------------------------------------------------------------------------------- /models/svhn_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/models/svhn_model.py -------------------------------------------------------------------------------- /results/celeba_results/Azimuth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/celeba_results/Azimuth.png -------------------------------------------------------------------------------- /results/celeba_results/Emotions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/celeba_results/Emotions.png -------------------------------------------------------------------------------- /results/celeba_results/Epoch_100_CelebA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/celeba_results/Epoch_100_CelebA.png -------------------------------------------------------------------------------- /results/celeba_results/Epoch_1_CelebA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/celeba_results/Epoch_1_CelebA.png -------------------------------------------------------------------------------- /results/celeba_results/Epoch_50_CelebA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/celeba_results/Epoch_50_CelebA.png -------------------------------------------------------------------------------- /results/celeba_results/Hair Amount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/celeba_results/Hair Amount.png -------------------------------------------------------------------------------- /results/celeba_results/Hair Style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/celeba_results/Hair Style.png -------------------------------------------------------------------------------- /results/celeba_results/Loss Curve CelebA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/celeba_results/Loss Curve CelebA.png -------------------------------------------------------------------------------- /results/celeba_results/Smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/celeba_results/Smile.png -------------------------------------------------------------------------------- /results/celeba_results/Training Images CelebA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/celeba_results/Training Images CelebA.png -------------------------------------------------------------------------------- /results/celeba_results/gender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/celeba_results/gender.png -------------------------------------------------------------------------------- /results/celeba_results/infoGAN_CelebA.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/celeba_results/infoGAN_CelebA.gif -------------------------------------------------------------------------------- /results/fashion_results/Epoch_100_FashionMNIST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/fashion_results/Epoch_100_FashionMNIST.png -------------------------------------------------------------------------------- /results/fashion_results/Epoch_1_FashionMNIST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/fashion_results/Epoch_1_FashionMNIST.png -------------------------------------------------------------------------------- /results/fashion_results/Epoch_50_FashionMNIST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/fashion_results/Epoch_50_FashionMNIST.png -------------------------------------------------------------------------------- /results/fashion_results/Loss Curve FashionMNIST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/fashion_results/Loss Curve FashionMNIST.png -------------------------------------------------------------------------------- /results/fashion_results/Thickness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/fashion_results/Thickness.png -------------------------------------------------------------------------------- /results/fashion_results/Training Images FashionMNIST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/fashion_results/Training Images FashionMNIST.png -------------------------------------------------------------------------------- /results/fashion_results/infoGAN_FashionMNIST.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/fashion_results/infoGAN_FashionMNIST.gif -------------------------------------------------------------------------------- /results/mnist_results/Epoch_100_MNIST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/mnist_results/Epoch_100_MNIST.png -------------------------------------------------------------------------------- /results/mnist_results/Epoch_1_MNIST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/mnist_results/Epoch_1_MNIST.png -------------------------------------------------------------------------------- /results/mnist_results/Epoch_50_MNIST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/mnist_results/Epoch_50_MNIST.png -------------------------------------------------------------------------------- /results/mnist_results/Loss Curve MNIST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/mnist_results/Loss Curve MNIST.png -------------------------------------------------------------------------------- /results/mnist_results/Rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/mnist_results/Rotation.png -------------------------------------------------------------------------------- /results/mnist_results/Training Images MNIST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/mnist_results/Training Images MNIST.png -------------------------------------------------------------------------------- /results/mnist_results/Width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/mnist_results/Width.png -------------------------------------------------------------------------------- /results/mnist_results/infoGAN_MNIST.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/mnist_results/infoGAN_MNIST.gif -------------------------------------------------------------------------------- /results/svhn_results/Epoch_100_SVHN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/svhn_results/Epoch_100_SVHN.png -------------------------------------------------------------------------------- /results/svhn_results/Epoch_1_SVHN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/svhn_results/Epoch_1_SVHN.png -------------------------------------------------------------------------------- /results/svhn_results/Epoch_50_SVHN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/svhn_results/Epoch_50_SVHN.png -------------------------------------------------------------------------------- /results/svhn_results/Lighting 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/svhn_results/Lighting 2.png -------------------------------------------------------------------------------- /results/svhn_results/Lighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/svhn_results/Lighting.png -------------------------------------------------------------------------------- /results/svhn_results/Loss Curve SVHN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/svhn_results/Loss Curve SVHN.png -------------------------------------------------------------------------------- /results/svhn_results/Plate Context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/svhn_results/Plate Context.png -------------------------------------------------------------------------------- /results/svhn_results/Training Images SVHN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/svhn_results/Training Images SVHN.png -------------------------------------------------------------------------------- /results/svhn_results/infoGAN_SVHN.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/results/svhn_results/infoGAN_SVHN.gif -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Natsu6767/InfoGAN-PyTorch/HEAD/utils.py --------------------------------------------------------------------------------