├── README.md ├── attention.py ├── base_model.py ├── classifier.py ├── dataset.py ├── eval.py ├── fc.py ├── language_model.py ├── main.py ├── tools ├── compute_softscore.py ├── create_dictionary.py ├── create_dictionary_v1.py ├── download.sh ├── download_v1.sh └── process.sh ├── train.py ├── utils.py └── vqa_debias_loss_functions.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jokieleung/CL-VQA/HEAD/README.md -------------------------------------------------------------------------------- /attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jokieleung/CL-VQA/HEAD/attention.py -------------------------------------------------------------------------------- /base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jokieleung/CL-VQA/HEAD/base_model.py -------------------------------------------------------------------------------- /classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jokieleung/CL-VQA/HEAD/classifier.py -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jokieleung/CL-VQA/HEAD/dataset.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jokieleung/CL-VQA/HEAD/eval.py -------------------------------------------------------------------------------- /fc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jokieleung/CL-VQA/HEAD/fc.py -------------------------------------------------------------------------------- /language_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jokieleung/CL-VQA/HEAD/language_model.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jokieleung/CL-VQA/HEAD/main.py -------------------------------------------------------------------------------- /tools/compute_softscore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jokieleung/CL-VQA/HEAD/tools/compute_softscore.py -------------------------------------------------------------------------------- /tools/create_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jokieleung/CL-VQA/HEAD/tools/create_dictionary.py -------------------------------------------------------------------------------- /tools/create_dictionary_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jokieleung/CL-VQA/HEAD/tools/create_dictionary_v1.py -------------------------------------------------------------------------------- /tools/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jokieleung/CL-VQA/HEAD/tools/download.sh -------------------------------------------------------------------------------- /tools/download_v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jokieleung/CL-VQA/HEAD/tools/download_v1.sh -------------------------------------------------------------------------------- /tools/process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jokieleung/CL-VQA/HEAD/tools/process.sh -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jokieleung/CL-VQA/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jokieleung/CL-VQA/HEAD/utils.py -------------------------------------------------------------------------------- /vqa_debias_loss_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jokieleung/CL-VQA/HEAD/vqa_debias_loss_functions.py --------------------------------------------------------------------------------