├── .gitignore ├── DAMSM.py ├── DAMSMencoders └── readme.txt ├── GUI └── view.py ├── GlobalAttention.py ├── IS.py ├── README.md ├── cfg ├── bird.yml └── coco.yml ├── data └── readme.txt ├── datasets.py ├── datasets_everycap.py ├── figures ├── framework.png ├── mask.png ├── qualitative.png ├── results.png └── ssacn.png ├── main.py ├── main_finetune.py ├── miscc ├── __init__.py ├── config.py ├── losses.py ├── losses_s.py ├── losses_w.py └── utils.py ├── model.py ├── sync_batchnorm ├── __init__.py ├── batchnorm.py ├── batchnorm_reimpl.py ├── comm.py ├── replicate.py └── unittest.py └── test_lpips.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/.gitignore -------------------------------------------------------------------------------- /DAMSM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/DAMSM.py -------------------------------------------------------------------------------- /DAMSMencoders/readme.txt: -------------------------------------------------------------------------------- 1 | put DAMSMencoder here -------------------------------------------------------------------------------- /GUI/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/GUI/view.py -------------------------------------------------------------------------------- /GlobalAttention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/GlobalAttention.py -------------------------------------------------------------------------------- /IS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/IS.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/README.md -------------------------------------------------------------------------------- /cfg/bird.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/cfg/bird.yml -------------------------------------------------------------------------------- /cfg/coco.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/cfg/coco.yml -------------------------------------------------------------------------------- /data/readme.txt: -------------------------------------------------------------------------------- 1 | put dataset here -------------------------------------------------------------------------------- /datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/datasets.py -------------------------------------------------------------------------------- /datasets_everycap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/datasets_everycap.py -------------------------------------------------------------------------------- /figures/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/figures/framework.png -------------------------------------------------------------------------------- /figures/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/figures/mask.png -------------------------------------------------------------------------------- /figures/qualitative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/figures/qualitative.png -------------------------------------------------------------------------------- /figures/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/figures/results.png -------------------------------------------------------------------------------- /figures/ssacn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/figures/ssacn.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/main.py -------------------------------------------------------------------------------- /main_finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/main_finetune.py -------------------------------------------------------------------------------- /miscc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/miscc/__init__.py -------------------------------------------------------------------------------- /miscc/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/miscc/config.py -------------------------------------------------------------------------------- /miscc/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/miscc/losses.py -------------------------------------------------------------------------------- /miscc/losses_s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/miscc/losses_s.py -------------------------------------------------------------------------------- /miscc/losses_w.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/miscc/losses_w.py -------------------------------------------------------------------------------- /miscc/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/miscc/utils.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/model.py -------------------------------------------------------------------------------- /sync_batchnorm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/sync_batchnorm/__init__.py -------------------------------------------------------------------------------- /sync_batchnorm/batchnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/sync_batchnorm/batchnorm.py -------------------------------------------------------------------------------- /sync_batchnorm/batchnorm_reimpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/sync_batchnorm/batchnorm_reimpl.py -------------------------------------------------------------------------------- /sync_batchnorm/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/sync_batchnorm/comm.py -------------------------------------------------------------------------------- /sync_batchnorm/replicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/sync_batchnorm/replicate.py -------------------------------------------------------------------------------- /sync_batchnorm/unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/sync_batchnorm/unittest.py -------------------------------------------------------------------------------- /test_lpips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wtliao/text2image/HEAD/test_lpips.py --------------------------------------------------------------------------------