├── Data ├── datasets │ └── flowers │ │ └── allclasses.txt └── text.txt ├── LICENSE ├── README.md ├── Utils ├── image_processing.py ├── inception_score.py ├── ops.py └── plot_msssim.py ├── _config.yml ├── create_dataset.py ├── dataprep.py ├── decoder.py ├── encode_text.py ├── encoder.py ├── generate_images.py ├── inception_score.py ├── model.py ├── msssim.py ├── requirements.txt ├── skipthoughts.py ├── t_interpolation.py ├── train.py └── z_interpolation.py /Data/datasets/flowers/allclasses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny98/Text-to-Image-Using-GAN/HEAD/Data/datasets/flowers/allclasses.txt -------------------------------------------------------------------------------- /Data/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny98/Text-to-Image-Using-GAN/HEAD/Data/text.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny98/Text-to-Image-Using-GAN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny98/Text-to-Image-Using-GAN/HEAD/README.md -------------------------------------------------------------------------------- /Utils/image_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny98/Text-to-Image-Using-GAN/HEAD/Utils/image_processing.py -------------------------------------------------------------------------------- /Utils/inception_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny98/Text-to-Image-Using-GAN/HEAD/Utils/inception_score.py -------------------------------------------------------------------------------- /Utils/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny98/Text-to-Image-Using-GAN/HEAD/Utils/ops.py -------------------------------------------------------------------------------- /Utils/plot_msssim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny98/Text-to-Image-Using-GAN/HEAD/Utils/plot_msssim.py -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny98/Text-to-Image-Using-GAN/HEAD/_config.yml -------------------------------------------------------------------------------- /create_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny98/Text-to-Image-Using-GAN/HEAD/create_dataset.py -------------------------------------------------------------------------------- /dataprep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny98/Text-to-Image-Using-GAN/HEAD/dataprep.py -------------------------------------------------------------------------------- /decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny98/Text-to-Image-Using-GAN/HEAD/decoder.py -------------------------------------------------------------------------------- /encode_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny98/Text-to-Image-Using-GAN/HEAD/encode_text.py -------------------------------------------------------------------------------- /encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny98/Text-to-Image-Using-GAN/HEAD/encoder.py -------------------------------------------------------------------------------- /generate_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny98/Text-to-Image-Using-GAN/HEAD/generate_images.py -------------------------------------------------------------------------------- /inception_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny98/Text-to-Image-Using-GAN/HEAD/inception_score.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny98/Text-to-Image-Using-GAN/HEAD/model.py -------------------------------------------------------------------------------- /msssim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny98/Text-to-Image-Using-GAN/HEAD/msssim.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny98/Text-to-Image-Using-GAN/HEAD/requirements.txt -------------------------------------------------------------------------------- /skipthoughts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny98/Text-to-Image-Using-GAN/HEAD/skipthoughts.py -------------------------------------------------------------------------------- /t_interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny98/Text-to-Image-Using-GAN/HEAD/t_interpolation.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny98/Text-to-Image-Using-GAN/HEAD/train.py -------------------------------------------------------------------------------- /z_interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bunny98/Text-to-Image-Using-GAN/HEAD/z_interpolation.py --------------------------------------------------------------------------------