├── .gitignore ├── LICENSE ├── README.md ├── attention.py ├── base_model.py ├── classifier.py ├── data ├── train_ids.pkl └── val_ids.pkl ├── dataset.py ├── fc.py ├── language_model.py ├── main.py ├── tools ├── compute_softscore.py ├── create_dictionary.py ├── detection_features_converter.py ├── download.sh └── process.sh ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyuan-hu/bottom-up-attention-vqa/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyuan-hu/bottom-up-attention-vqa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyuan-hu/bottom-up-attention-vqa/HEAD/README.md -------------------------------------------------------------------------------- /attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyuan-hu/bottom-up-attention-vqa/HEAD/attention.py -------------------------------------------------------------------------------- /base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyuan-hu/bottom-up-attention-vqa/HEAD/base_model.py -------------------------------------------------------------------------------- /classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyuan-hu/bottom-up-attention-vqa/HEAD/classifier.py -------------------------------------------------------------------------------- /data/train_ids.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyuan-hu/bottom-up-attention-vqa/HEAD/data/train_ids.pkl -------------------------------------------------------------------------------- /data/val_ids.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyuan-hu/bottom-up-attention-vqa/HEAD/data/val_ids.pkl -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyuan-hu/bottom-up-attention-vqa/HEAD/dataset.py -------------------------------------------------------------------------------- /fc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyuan-hu/bottom-up-attention-vqa/HEAD/fc.py -------------------------------------------------------------------------------- /language_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyuan-hu/bottom-up-attention-vqa/HEAD/language_model.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyuan-hu/bottom-up-attention-vqa/HEAD/main.py -------------------------------------------------------------------------------- /tools/compute_softscore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyuan-hu/bottom-up-attention-vqa/HEAD/tools/compute_softscore.py -------------------------------------------------------------------------------- /tools/create_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyuan-hu/bottom-up-attention-vqa/HEAD/tools/create_dictionary.py -------------------------------------------------------------------------------- /tools/detection_features_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyuan-hu/bottom-up-attention-vqa/HEAD/tools/detection_features_converter.py -------------------------------------------------------------------------------- /tools/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyuan-hu/bottom-up-attention-vqa/HEAD/tools/download.sh -------------------------------------------------------------------------------- /tools/process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyuan-hu/bottom-up-attention-vqa/HEAD/tools/process.sh -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyuan-hu/bottom-up-attention-vqa/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyuan-hu/bottom-up-attention-vqa/HEAD/utils.py --------------------------------------------------------------------------------