├── LICENSE ├── README.md ├── core ├── __init__.py ├── bleu.py ├── model.py ├── solver.py ├── utils.py └── vggnet.py ├── data ├── test │ └── test.annotations.pkl ├── train │ ├── train.annotations.pkl │ └── word_to_idx.pkl └── val │ └── val.annotations.pkl ├── download.sh ├── evaluate_model.ipynb ├── jpg ├── attention_b.jpg ├── attention_over_time.jpg ├── attention_w.jpg ├── attention_w_att.jpg ├── loss.jpg ├── model.jpg ├── tensorboard_vis.jpg ├── test.jpg ├── test2.jpg ├── train.jpg ├── train2.jpg ├── val.jpg └── val2.jpg ├── prepro.py ├── requirements.txt ├── resize.py └── train.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/README.md -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/bleu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/core/bleu.py -------------------------------------------------------------------------------- /core/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/core/model.py -------------------------------------------------------------------------------- /core/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/core/solver.py -------------------------------------------------------------------------------- /core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/core/utils.py -------------------------------------------------------------------------------- /core/vggnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/core/vggnet.py -------------------------------------------------------------------------------- /data/test/test.annotations.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/data/test/test.annotations.pkl -------------------------------------------------------------------------------- /data/train/train.annotations.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/data/train/train.annotations.pkl -------------------------------------------------------------------------------- /data/train/word_to_idx.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/data/train/word_to_idx.pkl -------------------------------------------------------------------------------- /data/val/val.annotations.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/data/val/val.annotations.pkl -------------------------------------------------------------------------------- /download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/download.sh -------------------------------------------------------------------------------- /evaluate_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/evaluate_model.ipynb -------------------------------------------------------------------------------- /jpg/attention_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/jpg/attention_b.jpg -------------------------------------------------------------------------------- /jpg/attention_over_time.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/jpg/attention_over_time.jpg -------------------------------------------------------------------------------- /jpg/attention_w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/jpg/attention_w.jpg -------------------------------------------------------------------------------- /jpg/attention_w_att.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/jpg/attention_w_att.jpg -------------------------------------------------------------------------------- /jpg/loss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/jpg/loss.jpg -------------------------------------------------------------------------------- /jpg/model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/jpg/model.jpg -------------------------------------------------------------------------------- /jpg/tensorboard_vis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/jpg/tensorboard_vis.jpg -------------------------------------------------------------------------------- /jpg/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/jpg/test.jpg -------------------------------------------------------------------------------- /jpg/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/jpg/test2.jpg -------------------------------------------------------------------------------- /jpg/train.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/jpg/train.jpg -------------------------------------------------------------------------------- /jpg/train2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/jpg/train2.jpg -------------------------------------------------------------------------------- /jpg/val.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/jpg/val.jpg -------------------------------------------------------------------------------- /jpg/val2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/jpg/val2.jpg -------------------------------------------------------------------------------- /prepro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/prepro.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/requirements.txt -------------------------------------------------------------------------------- /resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/resize.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunjey/show-attend-and-tell/HEAD/train.py --------------------------------------------------------------------------------