├── .gitignore ├── README.md └── algorithms ├── GAN-CLS ├── Data │ └── .gitignore ├── LICENSE ├── README.md ├── Utils │ ├── __init__.py │ ├── image_processing.py │ └── ops.py ├── data_loader.py ├── download_datasets.py ├── generate_images.py ├── generate_thought_vectors.py ├── model.py ├── requirements.txt ├── skipthoughts.py └── train.py ├── StackGAN ├── Data │ ├── .gitignore │ └── README.md ├── LICENSE ├── README.md ├── demo │ ├── Data │ ├── birds_demo.sh │ ├── birds_skip_thought_demo.py │ ├── cfg │ │ ├── birds-demo.yml │ │ ├── birds-eval.yml │ │ ├── birds-skip-thought-demo.yml │ │ ├── flowers-demo.yml │ │ └── flowers-eval.yml │ ├── demo.py │ ├── flowers_demo.sh │ ├── get_embedding.lua │ ├── misc │ ├── models │ └── stageII ├── examples │ └── captions ├── misc │ ├── __init__.py │ ├── config.py │ ├── custom_ops.py │ ├── datasets.py │ ├── preprocess_birds.py │ ├── preprocess_flowers.py │ ├── skipthoughts.py │ └── utils.py ├── models │ ├── .gitignore │ └── README.md ├── requirements.txt ├── stageI │ ├── __init__.py │ ├── cfg │ │ ├── birds.yml │ │ └── flowers.yml │ ├── model.py │ ├── run_exp.py │ └── trainer.py └── stageII │ ├── __init__.py │ ├── cfg │ ├── birds.yml │ └── flowers.yml │ ├── model.py │ ├── run_exp.py │ └── trainer.py └── TAC-GAN ├── Data ├── datasets │ └── flowers │ │ └── allclasses.txt └── text.txt ├── LICENSE ├── README.md ├── Utils ├── __init__.py ├── image_processing.py ├── inception_score.py ├── ops.py └── plot_msssim.py ├── 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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /algorithms/GAN-CLS/Data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | */ 3 | !.gitignore -------------------------------------------------------------------------------- /algorithms/GAN-CLS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/GAN-CLS/LICENSE -------------------------------------------------------------------------------- /algorithms/GAN-CLS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/GAN-CLS/README.md -------------------------------------------------------------------------------- /algorithms/GAN-CLS/Utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /algorithms/GAN-CLS/Utils/image_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/GAN-CLS/Utils/image_processing.py -------------------------------------------------------------------------------- /algorithms/GAN-CLS/Utils/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/GAN-CLS/Utils/ops.py -------------------------------------------------------------------------------- /algorithms/GAN-CLS/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/GAN-CLS/data_loader.py -------------------------------------------------------------------------------- /algorithms/GAN-CLS/download_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/GAN-CLS/download_datasets.py -------------------------------------------------------------------------------- /algorithms/GAN-CLS/generate_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/GAN-CLS/generate_images.py -------------------------------------------------------------------------------- /algorithms/GAN-CLS/generate_thought_vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/GAN-CLS/generate_thought_vectors.py -------------------------------------------------------------------------------- /algorithms/GAN-CLS/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/GAN-CLS/model.py -------------------------------------------------------------------------------- /algorithms/GAN-CLS/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/GAN-CLS/requirements.txt -------------------------------------------------------------------------------- /algorithms/GAN-CLS/skipthoughts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/GAN-CLS/skipthoughts.py -------------------------------------------------------------------------------- /algorithms/GAN-CLS/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/GAN-CLS/train.py -------------------------------------------------------------------------------- /algorithms/StackGAN/Data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !README.md 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /algorithms/StackGAN/Data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/Data/README.md -------------------------------------------------------------------------------- /algorithms/StackGAN/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/LICENSE -------------------------------------------------------------------------------- /algorithms/StackGAN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/README.md -------------------------------------------------------------------------------- /algorithms/StackGAN/demo/Data: -------------------------------------------------------------------------------- 1 | ../Data/ -------------------------------------------------------------------------------- /algorithms/StackGAN/demo/birds_demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/demo/birds_demo.sh -------------------------------------------------------------------------------- /algorithms/StackGAN/demo/birds_skip_thought_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/demo/birds_skip_thought_demo.py -------------------------------------------------------------------------------- /algorithms/StackGAN/demo/cfg/birds-demo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/demo/cfg/birds-demo.yml -------------------------------------------------------------------------------- /algorithms/StackGAN/demo/cfg/birds-eval.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/demo/cfg/birds-eval.yml -------------------------------------------------------------------------------- /algorithms/StackGAN/demo/cfg/birds-skip-thought-demo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/demo/cfg/birds-skip-thought-demo.yml -------------------------------------------------------------------------------- /algorithms/StackGAN/demo/cfg/flowers-demo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/demo/cfg/flowers-demo.yml -------------------------------------------------------------------------------- /algorithms/StackGAN/demo/cfg/flowers-eval.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/demo/cfg/flowers-eval.yml -------------------------------------------------------------------------------- /algorithms/StackGAN/demo/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/demo/demo.py -------------------------------------------------------------------------------- /algorithms/StackGAN/demo/flowers_demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/demo/flowers_demo.sh -------------------------------------------------------------------------------- /algorithms/StackGAN/demo/get_embedding.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/demo/get_embedding.lua -------------------------------------------------------------------------------- /algorithms/StackGAN/demo/misc: -------------------------------------------------------------------------------- 1 | ../misc/ -------------------------------------------------------------------------------- /algorithms/StackGAN/demo/models: -------------------------------------------------------------------------------- 1 | ../models/ -------------------------------------------------------------------------------- /algorithms/StackGAN/demo/stageII: -------------------------------------------------------------------------------- 1 | ../stageII -------------------------------------------------------------------------------- /algorithms/StackGAN/examples/captions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/examples/captions -------------------------------------------------------------------------------- /algorithms/StackGAN/misc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/misc/__init__.py -------------------------------------------------------------------------------- /algorithms/StackGAN/misc/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/misc/config.py -------------------------------------------------------------------------------- /algorithms/StackGAN/misc/custom_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/misc/custom_ops.py -------------------------------------------------------------------------------- /algorithms/StackGAN/misc/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/misc/datasets.py -------------------------------------------------------------------------------- /algorithms/StackGAN/misc/preprocess_birds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/misc/preprocess_birds.py -------------------------------------------------------------------------------- /algorithms/StackGAN/misc/preprocess_flowers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/misc/preprocess_flowers.py -------------------------------------------------------------------------------- /algorithms/StackGAN/misc/skipthoughts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/misc/skipthoughts.py -------------------------------------------------------------------------------- /algorithms/StackGAN/misc/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/misc/utils.py -------------------------------------------------------------------------------- /algorithms/StackGAN/models/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !README.md 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /algorithms/StackGAN/models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/models/README.md -------------------------------------------------------------------------------- /algorithms/StackGAN/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/requirements.txt -------------------------------------------------------------------------------- /algorithms/StackGAN/stageI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/stageI/__init__.py -------------------------------------------------------------------------------- /algorithms/StackGAN/stageI/cfg/birds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/stageI/cfg/birds.yml -------------------------------------------------------------------------------- /algorithms/StackGAN/stageI/cfg/flowers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/stageI/cfg/flowers.yml -------------------------------------------------------------------------------- /algorithms/StackGAN/stageI/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/stageI/model.py -------------------------------------------------------------------------------- /algorithms/StackGAN/stageI/run_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/stageI/run_exp.py -------------------------------------------------------------------------------- /algorithms/StackGAN/stageI/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/stageI/trainer.py -------------------------------------------------------------------------------- /algorithms/StackGAN/stageII/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/stageII/__init__.py -------------------------------------------------------------------------------- /algorithms/StackGAN/stageII/cfg/birds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/stageII/cfg/birds.yml -------------------------------------------------------------------------------- /algorithms/StackGAN/stageII/cfg/flowers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/stageII/cfg/flowers.yml -------------------------------------------------------------------------------- /algorithms/StackGAN/stageII/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/stageII/model.py -------------------------------------------------------------------------------- /algorithms/StackGAN/stageII/run_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/stageII/run_exp.py -------------------------------------------------------------------------------- /algorithms/StackGAN/stageII/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/StackGAN/stageII/trainer.py -------------------------------------------------------------------------------- /algorithms/TAC-GAN/Data/datasets/flowers/allclasses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/TAC-GAN/Data/datasets/flowers/allclasses.txt -------------------------------------------------------------------------------- /algorithms/TAC-GAN/Data/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/TAC-GAN/Data/text.txt -------------------------------------------------------------------------------- /algorithms/TAC-GAN/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/TAC-GAN/LICENSE -------------------------------------------------------------------------------- /algorithms/TAC-GAN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/TAC-GAN/README.md -------------------------------------------------------------------------------- /algorithms/TAC-GAN/Utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /algorithms/TAC-GAN/Utils/image_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/TAC-GAN/Utils/image_processing.py -------------------------------------------------------------------------------- /algorithms/TAC-GAN/Utils/inception_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/TAC-GAN/Utils/inception_score.py -------------------------------------------------------------------------------- /algorithms/TAC-GAN/Utils/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/TAC-GAN/Utils/ops.py -------------------------------------------------------------------------------- /algorithms/TAC-GAN/Utils/plot_msssim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/TAC-GAN/Utils/plot_msssim.py -------------------------------------------------------------------------------- /algorithms/TAC-GAN/create_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/TAC-GAN/create_dataset.py -------------------------------------------------------------------------------- /algorithms/TAC-GAN/dataprep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/TAC-GAN/dataprep.py -------------------------------------------------------------------------------- /algorithms/TAC-GAN/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/TAC-GAN/decoder.py -------------------------------------------------------------------------------- /algorithms/TAC-GAN/encode_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/TAC-GAN/encode_text.py -------------------------------------------------------------------------------- /algorithms/TAC-GAN/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/TAC-GAN/encoder.py -------------------------------------------------------------------------------- /algorithms/TAC-GAN/generate_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/TAC-GAN/generate_images.py -------------------------------------------------------------------------------- /algorithms/TAC-GAN/inception_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/TAC-GAN/inception_score.py -------------------------------------------------------------------------------- /algorithms/TAC-GAN/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/TAC-GAN/model.py -------------------------------------------------------------------------------- /algorithms/TAC-GAN/msssim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/TAC-GAN/msssim.py -------------------------------------------------------------------------------- /algorithms/TAC-GAN/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/TAC-GAN/requirements.txt -------------------------------------------------------------------------------- /algorithms/TAC-GAN/skipthoughts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/TAC-GAN/skipthoughts.py -------------------------------------------------------------------------------- /algorithms/TAC-GAN/t_interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/TAC-GAN/t_interpolation.py -------------------------------------------------------------------------------- /algorithms/TAC-GAN/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/TAC-GAN/train.py -------------------------------------------------------------------------------- /algorithms/TAC-GAN/z_interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nashory/text2image-benchmark/HEAD/algorithms/TAC-GAN/z_interpolation.py --------------------------------------------------------------------------------