├── .dockerignore ├── .gitignore ├── .gitmodules ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── config.yaml ├── counting.py ├── dataloader.py ├── detections.py ├── inference.py ├── main.py ├── pipeline.png ├── query_llm.py ├── query_vlm.py ├── requirements.txt ├── utils.py └── utils_func ├── add_gt_gqa_annots.py ├── add_gt_vqav2_annots.py ├── eval_by_llm_graders.py ├── find_matched_rest_val.py └── find_scores_for_each_answer_type.py /.dockerignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | myenv/ 3 | test_images/ -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowen-upenn/Multi-Agent-VQA/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowen-upenn/Multi-Agent-VQA/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowen-upenn/Multi-Agent-VQA/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowen-upenn/Multi-Agent-VQA/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowen-upenn/Multi-Agent-VQA/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowen-upenn/Multi-Agent-VQA/HEAD/README.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowen-upenn/Multi-Agent-VQA/HEAD/config.yaml -------------------------------------------------------------------------------- /counting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowen-upenn/Multi-Agent-VQA/HEAD/counting.py -------------------------------------------------------------------------------- /dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowen-upenn/Multi-Agent-VQA/HEAD/dataloader.py -------------------------------------------------------------------------------- /detections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowen-upenn/Multi-Agent-VQA/HEAD/detections.py -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowen-upenn/Multi-Agent-VQA/HEAD/inference.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowen-upenn/Multi-Agent-VQA/HEAD/main.py -------------------------------------------------------------------------------- /pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowen-upenn/Multi-Agent-VQA/HEAD/pipeline.png -------------------------------------------------------------------------------- /query_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowen-upenn/Multi-Agent-VQA/HEAD/query_llm.py -------------------------------------------------------------------------------- /query_vlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowen-upenn/Multi-Agent-VQA/HEAD/query_vlm.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowen-upenn/Multi-Agent-VQA/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowen-upenn/Multi-Agent-VQA/HEAD/utils.py -------------------------------------------------------------------------------- /utils_func/add_gt_gqa_annots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowen-upenn/Multi-Agent-VQA/HEAD/utils_func/add_gt_gqa_annots.py -------------------------------------------------------------------------------- /utils_func/add_gt_vqav2_annots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowen-upenn/Multi-Agent-VQA/HEAD/utils_func/add_gt_vqav2_annots.py -------------------------------------------------------------------------------- /utils_func/eval_by_llm_graders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowen-upenn/Multi-Agent-VQA/HEAD/utils_func/eval_by_llm_graders.py -------------------------------------------------------------------------------- /utils_func/find_matched_rest_val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowen-upenn/Multi-Agent-VQA/HEAD/utils_func/find_matched_rest_val.py -------------------------------------------------------------------------------- /utils_func/find_scores_for_each_answer_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bowen-upenn/Multi-Agent-VQA/HEAD/utils_func/find_scores_for_each_answer_type.py --------------------------------------------------------------------------------