├── LICENSE.md ├── README.md ├── base_model.py ├── config.py ├── dataset.py ├── episodic_memory.py ├── eval.sh ├── examples ├── COCO_val2014_000000026432_264320_result.jpg ├── COCO_val2014_000000131207_1312070_result.jpg ├── COCO_val2014_000000148568_1485680_result.jpg ├── COCO_val2014_000000222842_2228421_result.jpg ├── COCO_val2014_000000314649_3146492_result.jpg ├── COCO_val2014_000000367029_3670292_result.jpg ├── COCO_val2014_000000576871_5768711_result.jpg ├── COCO_val2014_000000576875_5768752_result.jpg └── examples.jpg ├── main.py ├── model.py ├── models ├── readme └── trim_model.py ├── summary └── readme ├── test ├── images │ ├── horses.jpg │ ├── landscape.jpg │ └── tennis.jpg ├── questions.csv └── results │ ├── horses_3_result.jpg │ ├── landscape_1_result.jpg │ └── tennis_2_result.jpg ├── train ├── images │ └── readme └── readme ├── utils ├── __init__.py ├── ilsvrc_2012_mean.npy ├── misc.py ├── nn.py ├── vocabulary.py └── vqa │ ├── README.md │ ├── __init__.py │ ├── license.txt │ ├── readme.md │ ├── vqa.py │ └── vqaEval.py └── val ├── images └── readme └── readme /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/README.md -------------------------------------------------------------------------------- /base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/base_model.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/config.py -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/dataset.py -------------------------------------------------------------------------------- /episodic_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/episodic_memory.py -------------------------------------------------------------------------------- /eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/eval.sh -------------------------------------------------------------------------------- /examples/COCO_val2014_000000026432_264320_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/examples/COCO_val2014_000000026432_264320_result.jpg -------------------------------------------------------------------------------- /examples/COCO_val2014_000000131207_1312070_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/examples/COCO_val2014_000000131207_1312070_result.jpg -------------------------------------------------------------------------------- /examples/COCO_val2014_000000148568_1485680_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/examples/COCO_val2014_000000148568_1485680_result.jpg -------------------------------------------------------------------------------- /examples/COCO_val2014_000000222842_2228421_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/examples/COCO_val2014_000000222842_2228421_result.jpg -------------------------------------------------------------------------------- /examples/COCO_val2014_000000314649_3146492_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/examples/COCO_val2014_000000314649_3146492_result.jpg -------------------------------------------------------------------------------- /examples/COCO_val2014_000000367029_3670292_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/examples/COCO_val2014_000000367029_3670292_result.jpg -------------------------------------------------------------------------------- /examples/COCO_val2014_000000576871_5768711_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/examples/COCO_val2014_000000576871_5768711_result.jpg -------------------------------------------------------------------------------- /examples/COCO_val2014_000000576875_5768752_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/examples/COCO_val2014_000000576875_5768752_result.jpg -------------------------------------------------------------------------------- /examples/examples.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/examples/examples.jpg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/model.py -------------------------------------------------------------------------------- /models/readme: -------------------------------------------------------------------------------- 1 | The trained models will be saved here. 2 | -------------------------------------------------------------------------------- /models/trim_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/models/trim_model.py -------------------------------------------------------------------------------- /summary/readme: -------------------------------------------------------------------------------- 1 | The summary (for TensorBoard visualization) will be saved here. 2 | -------------------------------------------------------------------------------- /test/images/horses.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/test/images/horses.jpg -------------------------------------------------------------------------------- /test/images/landscape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/test/images/landscape.jpg -------------------------------------------------------------------------------- /test/images/tennis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/test/images/tennis.jpg -------------------------------------------------------------------------------- /test/questions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/test/questions.csv -------------------------------------------------------------------------------- /test/results/horses_3_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/test/results/horses_3_result.jpg -------------------------------------------------------------------------------- /test/results/landscape_1_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/test/results/landscape_1_result.jpg -------------------------------------------------------------------------------- /test/results/tennis_2_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/test/results/tennis_2_result.jpg -------------------------------------------------------------------------------- /train/images/readme: -------------------------------------------------------------------------------- 1 | Put the COCO train2014 images here. 2 | -------------------------------------------------------------------------------- /train/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/train/readme -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | __author__='gmwang' 2 | -------------------------------------------------------------------------------- /utils/ilsvrc_2012_mean.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/utils/ilsvrc_2012_mean.npy -------------------------------------------------------------------------------- /utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/utils/misc.py -------------------------------------------------------------------------------- /utils/nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/utils/nn.py -------------------------------------------------------------------------------- /utils/vocabulary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/utils/vocabulary.py -------------------------------------------------------------------------------- /utils/vqa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/utils/vqa/README.md -------------------------------------------------------------------------------- /utils/vqa/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'aagrawal' 2 | -------------------------------------------------------------------------------- /utils/vqa/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/utils/vqa/license.txt -------------------------------------------------------------------------------- /utils/vqa/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/utils/vqa/readme.md -------------------------------------------------------------------------------- /utils/vqa/vqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/utils/vqa/vqa.py -------------------------------------------------------------------------------- /utils/vqa/vqaEval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/utils/vqa/vqaEval.py -------------------------------------------------------------------------------- /val/images/readme: -------------------------------------------------------------------------------- 1 | Put the COCO val2014 images here. 2 | -------------------------------------------------------------------------------- /val/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepRNN/visual_question_answering/HEAD/val/readme --------------------------------------------------------------------------------