├── .gitignore ├── Data └── download_data.sh ├── README.md ├── data_loader.py ├── evaluate.py ├── extract_fc7.py ├── predict.py ├── train.py ├── utils.py └── vis_lstm_model.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/neural-vqa-tensorflow/HEAD/.gitignore -------------------------------------------------------------------------------- /Data/download_data.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/neural-vqa-tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/neural-vqa-tensorflow/HEAD/data_loader.py -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/neural-vqa-tensorflow/HEAD/evaluate.py -------------------------------------------------------------------------------- /extract_fc7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/neural-vqa-tensorflow/HEAD/extract_fc7.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/neural-vqa-tensorflow/HEAD/predict.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/neural-vqa-tensorflow/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/neural-vqa-tensorflow/HEAD/utils.py -------------------------------------------------------------------------------- /vis_lstm_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paarthneekhara/neural-vqa-tensorflow/HEAD/vis_lstm_model.py --------------------------------------------------------------------------------