├── LICENSE ├── README.md ├── figs └── main_fig.png └── preprocessing ├── celeba └── extract_imgs.py ├── comp_cars └── extract_objects_comp_cars.py ├── cub_200_2011 └── extract_imgs.py ├── fashionpedia ├── DATA_EXAMPLES.md ├── README.md ├── baseline_predictor_demo.ipynb ├── coco │ ├── .gitignore │ ├── LuaAPI │ │ ├── CocoApi.lua │ │ ├── MaskApi.lua │ │ ├── cocoDemo.lua │ │ ├── env.lua │ │ ├── init.lua │ │ └── rocks │ │ │ └── coco-scm-1.rockspec │ ├── MatlabAPI │ │ ├── CocoApi.m │ │ ├── CocoEval.m │ │ ├── CocoUtils.m │ │ ├── MaskApi.m │ │ ├── cocoDemo.m │ │ ├── evalDemo.m │ │ ├── gason.m │ │ └── private │ │ │ ├── gasonMex.cpp │ │ │ ├── gasonMex.mexa64 │ │ │ ├── gasonMex.mexmaci64 │ │ │ ├── getPrmDflt.m │ │ │ ├── maskApiMex.c │ │ │ ├── maskApiMex.mexa64 │ │ │ └── maskApiMex.mexmaci64 │ ├── PythonAPI │ │ ├── Makefile │ │ ├── build │ │ │ ├── common │ │ │ │ └── maskApi.o │ │ │ ├── lib.linux-x86_64-cpython-39 │ │ │ │ └── pycocotools │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _mask.cpython-39-x86_64-linux-gnu.so │ │ │ │ │ ├── coco.py │ │ │ │ │ ├── cocoeval.py │ │ │ │ │ └── mask.py │ │ │ └── temp.linux-x86_64-cpython-39 │ │ │ │ └── pycocotools │ │ │ │ └── _mask.o │ │ ├── dist │ │ │ └── pycocotools-2.0-py3.9-linux-x86_64.egg │ │ ├── pycocoDemo.ipynb │ │ ├── pycocoEvalDemo.ipynb │ │ ├── pycocotools.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ └── top_level.txt │ │ ├── pycocotools │ │ │ ├── __init__.py │ │ │ ├── _mask.cpython-39-x86_64-linux-gnu.so │ │ │ ├── _mask.pyx │ │ │ ├── coco.py │ │ │ ├── cocoeval.py │ │ │ └── mask.py │ │ └── setup.py │ ├── README.txt │ ├── common │ │ ├── gason.cpp │ │ ├── gason.h │ │ ├── maskApi.c │ │ └── maskApi.h │ └── license.txt ├── data │ ├── demo │ │ ├── category_attributes_descriptions.json │ │ ├── input.jpg │ │ └── result.pdf │ ├── fake_results.json │ └── sample.json ├── eval_demo.ipynb ├── extract_adj_obj.py ├── fashionpedia │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── fp.cpython-39.pyc │ ├── fp.py │ └── fp_eval.py ├── fashionpedia_demo.ipynb ├── images │ ├── 000000009813.jpg │ ├── 000000010223.jpg │ ├── baseline.png │ ├── examples.png │ ├── more_examples.png │ └── teaser.png ├── license.txt ├── requirements.txt ├── setup.py └── test.py ├── nyu_depth_v2 └── extract_objects_nyu.py ├── soccernet ├── download_soccernet.py ├── extract_temp_imgs.py ├── generate_dataset_soccer_net.py ├── merge_left_right_imgs_llava_finetune.py └── move_video.py ├── spot-the-diff └── extract_imgs_sd.py ├── vaw └── extract_imgs_vaw.py ├── vqav2 ├── extract_counting_imgs_vqav2.py └── merge_left_right_imgs_llava_finetune.py └── wildfish └── extract_imgs_wf.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/README.md -------------------------------------------------------------------------------- /figs/main_fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/figs/main_fig.png -------------------------------------------------------------------------------- /preprocessing/celeba/extract_imgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/celeba/extract_imgs.py -------------------------------------------------------------------------------- /preprocessing/comp_cars/extract_objects_comp_cars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/comp_cars/extract_objects_comp_cars.py -------------------------------------------------------------------------------- /preprocessing/cub_200_2011/extract_imgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/cub_200_2011/extract_imgs.py -------------------------------------------------------------------------------- /preprocessing/fashionpedia/DATA_EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/DATA_EXAMPLES.md -------------------------------------------------------------------------------- /preprocessing/fashionpedia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/README.md -------------------------------------------------------------------------------- /preprocessing/fashionpedia/baseline_predictor_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/baseline_predictor_demo.ipynb -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/.gitignore -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/LuaAPI/CocoApi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/LuaAPI/CocoApi.lua -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/LuaAPI/MaskApi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/LuaAPI/MaskApi.lua -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/LuaAPI/cocoDemo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/LuaAPI/cocoDemo.lua -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/LuaAPI/env.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/LuaAPI/env.lua -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/LuaAPI/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/LuaAPI/init.lua -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/LuaAPI/rocks/coco-scm-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/LuaAPI/rocks/coco-scm-1.rockspec -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/MatlabAPI/CocoApi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/MatlabAPI/CocoApi.m -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/MatlabAPI/CocoEval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/MatlabAPI/CocoEval.m -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/MatlabAPI/CocoUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/MatlabAPI/CocoUtils.m -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/MatlabAPI/MaskApi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/MatlabAPI/MaskApi.m -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/MatlabAPI/cocoDemo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/MatlabAPI/cocoDemo.m -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/MatlabAPI/evalDemo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/MatlabAPI/evalDemo.m -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/MatlabAPI/gason.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/MatlabAPI/gason.m -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/MatlabAPI/private/gasonMex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/MatlabAPI/private/gasonMex.cpp -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/MatlabAPI/private/gasonMex.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/MatlabAPI/private/gasonMex.mexa64 -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/MatlabAPI/private/gasonMex.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/MatlabAPI/private/gasonMex.mexmaci64 -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/MatlabAPI/private/getPrmDflt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/MatlabAPI/private/getPrmDflt.m -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/MatlabAPI/private/maskApiMex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/MatlabAPI/private/maskApiMex.c -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/MatlabAPI/private/maskApiMex.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/MatlabAPI/private/maskApiMex.mexa64 -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/MatlabAPI/private/maskApiMex.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/MatlabAPI/private/maskApiMex.mexmaci64 -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/PythonAPI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/PythonAPI/Makefile -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/PythonAPI/build/common/maskApi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/PythonAPI/build/common/maskApi.o -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/PythonAPI/build/lib.linux-x86_64-cpython-39/pycocotools/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'tylin' 2 | -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/PythonAPI/build/lib.linux-x86_64-cpython-39/pycocotools/_mask.cpython-39-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/PythonAPI/build/lib.linux-x86_64-cpython-39/pycocotools/_mask.cpython-39-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/PythonAPI/build/lib.linux-x86_64-cpython-39/pycocotools/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/PythonAPI/build/lib.linux-x86_64-cpython-39/pycocotools/coco.py -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/PythonAPI/build/lib.linux-x86_64-cpython-39/pycocotools/cocoeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/PythonAPI/build/lib.linux-x86_64-cpython-39/pycocotools/cocoeval.py -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/PythonAPI/build/lib.linux-x86_64-cpython-39/pycocotools/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/PythonAPI/build/lib.linux-x86_64-cpython-39/pycocotools/mask.py -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/PythonAPI/build/temp.linux-x86_64-cpython-39/pycocotools/_mask.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/PythonAPI/build/temp.linux-x86_64-cpython-39/pycocotools/_mask.o -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/PythonAPI/dist/pycocotools-2.0-py3.9-linux-x86_64.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/PythonAPI/dist/pycocotools-2.0-py3.9-linux-x86_64.egg -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/PythonAPI/pycocoDemo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/PythonAPI/pycocoDemo.ipynb -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/PythonAPI/pycocoEvalDemo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/PythonAPI/pycocoEvalDemo.ipynb -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/PythonAPI/pycocotools.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/PythonAPI/pycocotools.egg-info/PKG-INFO -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/PythonAPI/pycocotools.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/PythonAPI/pycocotools.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/PythonAPI/pycocotools.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/PythonAPI/pycocotools.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pycocotools 2 | -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/PythonAPI/pycocotools/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'tylin' 2 | -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/PythonAPI/pycocotools/_mask.cpython-39-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/PythonAPI/pycocotools/_mask.cpython-39-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/PythonAPI/pycocotools/_mask.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/PythonAPI/pycocotools/_mask.pyx -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/PythonAPI/pycocotools/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/PythonAPI/pycocotools/coco.py -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/PythonAPI/pycocotools/cocoeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/PythonAPI/pycocotools/cocoeval.py -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/PythonAPI/pycocotools/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/PythonAPI/pycocotools/mask.py -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/PythonAPI/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/PythonAPI/setup.py -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/README.txt -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/common/gason.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/common/gason.cpp -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/common/gason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/common/gason.h -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/common/maskApi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/common/maskApi.c -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/common/maskApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/common/maskApi.h -------------------------------------------------------------------------------- /preprocessing/fashionpedia/coco/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/coco/license.txt -------------------------------------------------------------------------------- /preprocessing/fashionpedia/data/demo/category_attributes_descriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/data/demo/category_attributes_descriptions.json -------------------------------------------------------------------------------- /preprocessing/fashionpedia/data/demo/input.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/data/demo/input.jpg -------------------------------------------------------------------------------- /preprocessing/fashionpedia/data/demo/result.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/data/demo/result.pdf -------------------------------------------------------------------------------- /preprocessing/fashionpedia/data/fake_results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/data/fake_results.json -------------------------------------------------------------------------------- /preprocessing/fashionpedia/data/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/data/sample.json -------------------------------------------------------------------------------- /preprocessing/fashionpedia/eval_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/eval_demo.ipynb -------------------------------------------------------------------------------- /preprocessing/fashionpedia/extract_adj_obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/extract_adj_obj.py -------------------------------------------------------------------------------- /preprocessing/fashionpedia/fashionpedia/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.1.0" 2 | -------------------------------------------------------------------------------- /preprocessing/fashionpedia/fashionpedia/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/fashionpedia/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /preprocessing/fashionpedia/fashionpedia/__pycache__/fp.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/fashionpedia/__pycache__/fp.cpython-39.pyc -------------------------------------------------------------------------------- /preprocessing/fashionpedia/fashionpedia/fp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/fashionpedia/fp.py -------------------------------------------------------------------------------- /preprocessing/fashionpedia/fashionpedia/fp_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/fashionpedia/fp_eval.py -------------------------------------------------------------------------------- /preprocessing/fashionpedia/fashionpedia_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/fashionpedia_demo.ipynb -------------------------------------------------------------------------------- /preprocessing/fashionpedia/images/000000009813.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/images/000000009813.jpg -------------------------------------------------------------------------------- /preprocessing/fashionpedia/images/000000010223.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/images/000000010223.jpg -------------------------------------------------------------------------------- /preprocessing/fashionpedia/images/baseline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/images/baseline.png -------------------------------------------------------------------------------- /preprocessing/fashionpedia/images/examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/images/examples.png -------------------------------------------------------------------------------- /preprocessing/fashionpedia/images/more_examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/images/more_examples.png -------------------------------------------------------------------------------- /preprocessing/fashionpedia/images/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/images/teaser.png -------------------------------------------------------------------------------- /preprocessing/fashionpedia/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/license.txt -------------------------------------------------------------------------------- /preprocessing/fashionpedia/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/requirements.txt -------------------------------------------------------------------------------- /preprocessing/fashionpedia/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/setup.py -------------------------------------------------------------------------------- /preprocessing/fashionpedia/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/fashionpedia/test.py -------------------------------------------------------------------------------- /preprocessing/nyu_depth_v2/extract_objects_nyu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/nyu_depth_v2/extract_objects_nyu.py -------------------------------------------------------------------------------- /preprocessing/soccernet/download_soccernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/soccernet/download_soccernet.py -------------------------------------------------------------------------------- /preprocessing/soccernet/extract_temp_imgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/soccernet/extract_temp_imgs.py -------------------------------------------------------------------------------- /preprocessing/soccernet/generate_dataset_soccer_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/soccernet/generate_dataset_soccer_net.py -------------------------------------------------------------------------------- /preprocessing/soccernet/merge_left_right_imgs_llava_finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/soccernet/merge_left_right_imgs_llava_finetune.py -------------------------------------------------------------------------------- /preprocessing/soccernet/move_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/soccernet/move_video.py -------------------------------------------------------------------------------- /preprocessing/spot-the-diff/extract_imgs_sd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/spot-the-diff/extract_imgs_sd.py -------------------------------------------------------------------------------- /preprocessing/vaw/extract_imgs_vaw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/vaw/extract_imgs_vaw.py -------------------------------------------------------------------------------- /preprocessing/vqav2/extract_counting_imgs_vqav2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/vqav2/extract_counting_imgs_vqav2.py -------------------------------------------------------------------------------- /preprocessing/vqav2/merge_left_right_imgs_llava_finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/vqav2/merge_left_right_imgs_llava_finetune.py -------------------------------------------------------------------------------- /preprocessing/wildfish/extract_imgs_wf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaptorMai/MLLM-CompBench/HEAD/preprocessing/wildfish/extract_imgs_wf.py --------------------------------------------------------------------------------