├── README.md ├── caption data ├── TEST_NAMES_IDS.json ├── TEST_names_coco.json ├── TRAIN_names_coco.json ├── VAL_NAMES_IDS.json ├── VAL_names_coco.json └── WORDMAP_coco.json ├── dataset.py ├── models.py ├── preprocess.py ├── run.ipynb ├── test_imgs ├── test1.jpg └── test2.jpg ├── train_eval.py └── util.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawazsammani/knowing-when-to-look-adaptive-attention/HEAD/README.md -------------------------------------------------------------------------------- /caption data/TEST_NAMES_IDS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawazsammani/knowing-when-to-look-adaptive-attention/HEAD/caption data/TEST_NAMES_IDS.json -------------------------------------------------------------------------------- /caption data/TEST_names_coco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawazsammani/knowing-when-to-look-adaptive-attention/HEAD/caption data/TEST_names_coco.json -------------------------------------------------------------------------------- /caption data/TRAIN_names_coco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawazsammani/knowing-when-to-look-adaptive-attention/HEAD/caption data/TRAIN_names_coco.json -------------------------------------------------------------------------------- /caption data/VAL_NAMES_IDS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawazsammani/knowing-when-to-look-adaptive-attention/HEAD/caption data/VAL_NAMES_IDS.json -------------------------------------------------------------------------------- /caption data/VAL_names_coco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawazsammani/knowing-when-to-look-adaptive-attention/HEAD/caption data/VAL_names_coco.json -------------------------------------------------------------------------------- /caption data/WORDMAP_coco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawazsammani/knowing-when-to-look-adaptive-attention/HEAD/caption data/WORDMAP_coco.json -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawazsammani/knowing-when-to-look-adaptive-attention/HEAD/dataset.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawazsammani/knowing-when-to-look-adaptive-attention/HEAD/models.py -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawazsammani/knowing-when-to-look-adaptive-attention/HEAD/preprocess.py -------------------------------------------------------------------------------- /run.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawazsammani/knowing-when-to-look-adaptive-attention/HEAD/run.ipynb -------------------------------------------------------------------------------- /test_imgs/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawazsammani/knowing-when-to-look-adaptive-attention/HEAD/test_imgs/test1.jpg -------------------------------------------------------------------------------- /test_imgs/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawazsammani/knowing-when-to-look-adaptive-attention/HEAD/test_imgs/test2.jpg -------------------------------------------------------------------------------- /train_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawazsammani/knowing-when-to-look-adaptive-attention/HEAD/train_eval.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fawazsammani/knowing-when-to-look-adaptive-attention/HEAD/util.py --------------------------------------------------------------------------------