├── .gitignore ├── LICENSE.txt ├── README.md ├── data ├── README.md ├── download.sh └── preprocessed │ └── README.md ├── experiments ├── generate_submission_test.py └── train_lstm_1_vqa_test.py ├── features ├── README.md ├── coco_vgg_IDMap.txt └── download.sh ├── models ├── README.md ├── lstm_1_num_hidden_units_lstm_512_num_hidden_units_mlp_1024_num_hidden_layers_mlp_3.json └── lstm_1_num_hidden_units_lstm_512_num_hidden_units_mlp_1024_num_hidden_layers_mlp_3_epoch_070.hdf5 ├── results └── README.md └── scripts ├── README.md ├── demo_batch.py ├── dumpText.py ├── evaluateLSTM.py ├── evaluateMLP.py ├── extract_features.py ├── features.py ├── get_started.sh ├── own_image.py ├── trainLSTM_1.py ├── trainLSTM_language.py ├── trainMLP.py ├── utils.py └── vgg_features.prototxt /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.pyo -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/data/README.md -------------------------------------------------------------------------------- /data/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/data/download.sh -------------------------------------------------------------------------------- /data/preprocessed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/data/preprocessed/README.md -------------------------------------------------------------------------------- /experiments/generate_submission_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/experiments/generate_submission_test.py -------------------------------------------------------------------------------- /experiments/train_lstm_1_vqa_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/experiments/train_lstm_1_vqa_test.py -------------------------------------------------------------------------------- /features/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/features/README.md -------------------------------------------------------------------------------- /features/coco_vgg_IDMap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/features/coco_vgg_IDMap.txt -------------------------------------------------------------------------------- /features/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/features/download.sh -------------------------------------------------------------------------------- /models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/models/README.md -------------------------------------------------------------------------------- /models/lstm_1_num_hidden_units_lstm_512_num_hidden_units_mlp_1024_num_hidden_layers_mlp_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/models/lstm_1_num_hidden_units_lstm_512_num_hidden_units_mlp_1024_num_hidden_layers_mlp_3.json -------------------------------------------------------------------------------- /models/lstm_1_num_hidden_units_lstm_512_num_hidden_units_mlp_1024_num_hidden_layers_mlp_3_epoch_070.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/models/lstm_1_num_hidden_units_lstm_512_num_hidden_units_mlp_1024_num_hidden_layers_mlp_3_epoch_070.hdf5 -------------------------------------------------------------------------------- /results/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/results/README.md -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/demo_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/scripts/demo_batch.py -------------------------------------------------------------------------------- /scripts/dumpText.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/scripts/dumpText.py -------------------------------------------------------------------------------- /scripts/evaluateLSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/scripts/evaluateLSTM.py -------------------------------------------------------------------------------- /scripts/evaluateMLP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/scripts/evaluateMLP.py -------------------------------------------------------------------------------- /scripts/extract_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/scripts/extract_features.py -------------------------------------------------------------------------------- /scripts/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/scripts/features.py -------------------------------------------------------------------------------- /scripts/get_started.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/scripts/get_started.sh -------------------------------------------------------------------------------- /scripts/own_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/scripts/own_image.py -------------------------------------------------------------------------------- /scripts/trainLSTM_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/scripts/trainLSTM_1.py -------------------------------------------------------------------------------- /scripts/trainLSTM_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/scripts/trainLSTM_language.py -------------------------------------------------------------------------------- /scripts/trainMLP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/scripts/trainMLP.py -------------------------------------------------------------------------------- /scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/scripts/utils.py -------------------------------------------------------------------------------- /scripts/vgg_features.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avisingh599/visual-qa/HEAD/scripts/vgg_features.prototxt --------------------------------------------------------------------------------