├── .gitmodules ├── README.md ├── logs └── .dummy ├── main.py ├── model ├── model.py └── text_model.py ├── preprocess ├── preprocess-image-grid.py ├── preprocess-image-rcnn.py ├── preprocess-vocab.py ├── preprocess_fact.py └── preprocess_meta.py ├── relation-fact-detector ├── config.py ├── data.py ├── main.py ├── model.py └── utils.py ├── utils ├── config.py ├── data.py ├── fact_data.py └── utils.py └── vqa_eval ├── .gitignore ├── PythonEvaluationTools ├── vqaEvalDemo.py └── vqaEvaluation │ ├── __init__.py │ └── vqaEval.py ├── PythonHelperTools ├── vqaDemo.py └── vqaTools │ ├── __init__.py │ └── vqa.py ├── QuestionTypes ├── abstract_v002_question_types.txt └── mscoco_question_types.txt ├── README.md ├── Results └── OpenEnded_mscoco_train2014_fake_results.json └── license.txt /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/README.md -------------------------------------------------------------------------------- /logs/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/main.py -------------------------------------------------------------------------------- /model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/model/model.py -------------------------------------------------------------------------------- /model/text_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/model/text_model.py -------------------------------------------------------------------------------- /preprocess/preprocess-image-grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/preprocess/preprocess-image-grid.py -------------------------------------------------------------------------------- /preprocess/preprocess-image-rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/preprocess/preprocess-image-rcnn.py -------------------------------------------------------------------------------- /preprocess/preprocess-vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/preprocess/preprocess-vocab.py -------------------------------------------------------------------------------- /preprocess/preprocess_fact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/preprocess/preprocess_fact.py -------------------------------------------------------------------------------- /preprocess/preprocess_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/preprocess/preprocess_meta.py -------------------------------------------------------------------------------- /relation-fact-detector/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/relation-fact-detector/config.py -------------------------------------------------------------------------------- /relation-fact-detector/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/relation-fact-detector/data.py -------------------------------------------------------------------------------- /relation-fact-detector/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/relation-fact-detector/main.py -------------------------------------------------------------------------------- /relation-fact-detector/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/relation-fact-detector/model.py -------------------------------------------------------------------------------- /relation-fact-detector/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/relation-fact-detector/utils.py -------------------------------------------------------------------------------- /utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/utils/config.py -------------------------------------------------------------------------------- /utils/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/utils/data.py -------------------------------------------------------------------------------- /utils/fact_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/utils/fact_data.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/utils/utils.py -------------------------------------------------------------------------------- /vqa_eval/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.swp* 3 | -------------------------------------------------------------------------------- /vqa_eval/PythonEvaluationTools/vqaEvalDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/vqa_eval/PythonEvaluationTools/vqaEvalDemo.py -------------------------------------------------------------------------------- /vqa_eval/PythonEvaluationTools/vqaEvaluation/__init__.py: -------------------------------------------------------------------------------- 1 | author='aagrawal' 2 | -------------------------------------------------------------------------------- /vqa_eval/PythonEvaluationTools/vqaEvaluation/vqaEval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/vqa_eval/PythonEvaluationTools/vqaEvaluation/vqaEval.py -------------------------------------------------------------------------------- /vqa_eval/PythonHelperTools/vqaDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/vqa_eval/PythonHelperTools/vqaDemo.py -------------------------------------------------------------------------------- /vqa_eval/PythonHelperTools/vqaTools/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'aagrawal' 2 | -------------------------------------------------------------------------------- /vqa_eval/PythonHelperTools/vqaTools/vqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/vqa_eval/PythonHelperTools/vqaTools/vqa.py -------------------------------------------------------------------------------- /vqa_eval/QuestionTypes/abstract_v002_question_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/vqa_eval/QuestionTypes/abstract_v002_question_types.txt -------------------------------------------------------------------------------- /vqa_eval/QuestionTypes/mscoco_question_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/vqa_eval/QuestionTypes/mscoco_question_types.txt -------------------------------------------------------------------------------- /vqa_eval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/vqa_eval/README.md -------------------------------------------------------------------------------- /vqa_eval/Results/OpenEnded_mscoco_train2014_fake_results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/vqa_eval/Results/OpenEnded_mscoco_train2014_fake_results.json -------------------------------------------------------------------------------- /vqa_eval/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BierOne/relation-vqa/HEAD/vqa_eval/license.txt --------------------------------------------------------------------------------