├── README.md ├── environment.yml ├── intermediate_files ├── UDK-VQA-20240905 │ └── test_searchlvlms.jsonl └── UDK-VQA │ └── test_searchlvlms.jsonl └── scripts ├── eval.sh ├── eval └── eval_lvlms.py ├── iag.sh ├── iag ├── step1_gen_search_queries.py ├── step2_call_search_engines.py ├── step3_crawl_from_urls.py ├── step4_gen_data4hierarchical_filter.py ├── step5_run_hierarchical_filter.py └── step6_gen_test_searchlvlms.py ├── init_env_variable.sh ├── unset_env_variable.bash └── utils ├── __pycache__ ├── utils.cpython-39.pyc └── utils_engine.cpython-39.pyc ├── utils.py └── utils_engine.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeverMoreLCH/SearchLVLMs/HEAD/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeverMoreLCH/SearchLVLMs/HEAD/environment.yml -------------------------------------------------------------------------------- /intermediate_files/UDK-VQA-20240905/test_searchlvlms.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeverMoreLCH/SearchLVLMs/HEAD/intermediate_files/UDK-VQA-20240905/test_searchlvlms.jsonl -------------------------------------------------------------------------------- /intermediate_files/UDK-VQA/test_searchlvlms.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeverMoreLCH/SearchLVLMs/HEAD/intermediate_files/UDK-VQA/test_searchlvlms.jsonl -------------------------------------------------------------------------------- /scripts/eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeverMoreLCH/SearchLVLMs/HEAD/scripts/eval.sh -------------------------------------------------------------------------------- /scripts/eval/eval_lvlms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeverMoreLCH/SearchLVLMs/HEAD/scripts/eval/eval_lvlms.py -------------------------------------------------------------------------------- /scripts/iag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeverMoreLCH/SearchLVLMs/HEAD/scripts/iag.sh -------------------------------------------------------------------------------- /scripts/iag/step1_gen_search_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeverMoreLCH/SearchLVLMs/HEAD/scripts/iag/step1_gen_search_queries.py -------------------------------------------------------------------------------- /scripts/iag/step2_call_search_engines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeverMoreLCH/SearchLVLMs/HEAD/scripts/iag/step2_call_search_engines.py -------------------------------------------------------------------------------- /scripts/iag/step3_crawl_from_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeverMoreLCH/SearchLVLMs/HEAD/scripts/iag/step3_crawl_from_urls.py -------------------------------------------------------------------------------- /scripts/iag/step4_gen_data4hierarchical_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeverMoreLCH/SearchLVLMs/HEAD/scripts/iag/step4_gen_data4hierarchical_filter.py -------------------------------------------------------------------------------- /scripts/iag/step5_run_hierarchical_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeverMoreLCH/SearchLVLMs/HEAD/scripts/iag/step5_run_hierarchical_filter.py -------------------------------------------------------------------------------- /scripts/iag/step6_gen_test_searchlvlms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeverMoreLCH/SearchLVLMs/HEAD/scripts/iag/step6_gen_test_searchlvlms.py -------------------------------------------------------------------------------- /scripts/init_env_variable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeverMoreLCH/SearchLVLMs/HEAD/scripts/init_env_variable.sh -------------------------------------------------------------------------------- /scripts/unset_env_variable.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeverMoreLCH/SearchLVLMs/HEAD/scripts/unset_env_variable.bash -------------------------------------------------------------------------------- /scripts/utils/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeverMoreLCH/SearchLVLMs/HEAD/scripts/utils/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /scripts/utils/__pycache__/utils_engine.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeverMoreLCH/SearchLVLMs/HEAD/scripts/utils/__pycache__/utils_engine.cpython-39.pyc -------------------------------------------------------------------------------- /scripts/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeverMoreLCH/SearchLVLMs/HEAD/scripts/utils/utils.py -------------------------------------------------------------------------------- /scripts/utils/utils_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeverMoreLCH/SearchLVLMs/HEAD/scripts/utils/utils_engine.py --------------------------------------------------------------------------------