├── .gitmodules ├── EF_CapBERT_Tw15.py ├── EF_CapBERT_Tw17.py ├── LF_CapBERT.py ├── LICENSE ├── README.md ├── caption_multiple.py ├── captions ├── twitter2015_images.json └── twitter2017_images.json ├── figures ├── archdiag.png └── teaser.png └── requirements.in /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezakh/exploiting-BERT-thru-translation/HEAD/.gitmodules -------------------------------------------------------------------------------- /EF_CapBERT_Tw15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezakh/exploiting-BERT-thru-translation/HEAD/EF_CapBERT_Tw15.py -------------------------------------------------------------------------------- /EF_CapBERT_Tw17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezakh/exploiting-BERT-thru-translation/HEAD/EF_CapBERT_Tw17.py -------------------------------------------------------------------------------- /LF_CapBERT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezakh/exploiting-BERT-thru-translation/HEAD/LF_CapBERT.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezakh/exploiting-BERT-thru-translation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezakh/exploiting-BERT-thru-translation/HEAD/README.md -------------------------------------------------------------------------------- /caption_multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezakh/exploiting-BERT-thru-translation/HEAD/caption_multiple.py -------------------------------------------------------------------------------- /captions/twitter2015_images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezakh/exploiting-BERT-thru-translation/HEAD/captions/twitter2015_images.json -------------------------------------------------------------------------------- /captions/twitter2017_images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezakh/exploiting-BERT-thru-translation/HEAD/captions/twitter2017_images.json -------------------------------------------------------------------------------- /figures/archdiag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezakh/exploiting-BERT-thru-translation/HEAD/figures/archdiag.png -------------------------------------------------------------------------------- /figures/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezakh/exploiting-BERT-thru-translation/HEAD/figures/teaser.png -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- 1 | transformers 2 | torch 3 | numpy 4 | pandas 5 | sklearn 6 | --------------------------------------------------------------------------------