├── LICENSE ├── README.md ├── eval ├── README.md ├── __init__.py ├── __pycache__ │ ├── checker.cpython-310.pyc │ ├── compare_multiple.cpython-310.pyc │ ├── compare_sequence.cpython-310.pyc │ ├── compare_str.cpython-310.pyc │ └── compare_value.cpython-310.pyc ├── checker.py ├── compare_multiple.py ├── compare_sequence.py ├── compare_str.py ├── compare_value.py ├── example.py ├── model_response.json └── models │ ├── __pycache__ │ └── qwen_2_5_vl.cpython-38.pyc │ └── qwen_2_5_vl.py ├── result.png └── teaser.jpg /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolDawnAnt/InfoChartQA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolDawnAnt/InfoChartQA/HEAD/README.md -------------------------------------------------------------------------------- /eval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolDawnAnt/InfoChartQA/HEAD/eval/README.md -------------------------------------------------------------------------------- /eval/__init__.py: -------------------------------------------------------------------------------- 1 | from .checker import evaluate -------------------------------------------------------------------------------- /eval/__pycache__/checker.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolDawnAnt/InfoChartQA/HEAD/eval/__pycache__/checker.cpython-310.pyc -------------------------------------------------------------------------------- /eval/__pycache__/compare_multiple.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolDawnAnt/InfoChartQA/HEAD/eval/__pycache__/compare_multiple.cpython-310.pyc -------------------------------------------------------------------------------- /eval/__pycache__/compare_sequence.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolDawnAnt/InfoChartQA/HEAD/eval/__pycache__/compare_sequence.cpython-310.pyc -------------------------------------------------------------------------------- /eval/__pycache__/compare_str.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolDawnAnt/InfoChartQA/HEAD/eval/__pycache__/compare_str.cpython-310.pyc -------------------------------------------------------------------------------- /eval/__pycache__/compare_value.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolDawnAnt/InfoChartQA/HEAD/eval/__pycache__/compare_value.cpython-310.pyc -------------------------------------------------------------------------------- /eval/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolDawnAnt/InfoChartQA/HEAD/eval/checker.py -------------------------------------------------------------------------------- /eval/compare_multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolDawnAnt/InfoChartQA/HEAD/eval/compare_multiple.py -------------------------------------------------------------------------------- /eval/compare_sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolDawnAnt/InfoChartQA/HEAD/eval/compare_sequence.py -------------------------------------------------------------------------------- /eval/compare_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolDawnAnt/InfoChartQA/HEAD/eval/compare_str.py -------------------------------------------------------------------------------- /eval/compare_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolDawnAnt/InfoChartQA/HEAD/eval/compare_value.py -------------------------------------------------------------------------------- /eval/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolDawnAnt/InfoChartQA/HEAD/eval/example.py -------------------------------------------------------------------------------- /eval/model_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolDawnAnt/InfoChartQA/HEAD/eval/model_response.json -------------------------------------------------------------------------------- /eval/models/__pycache__/qwen_2_5_vl.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolDawnAnt/InfoChartQA/HEAD/eval/models/__pycache__/qwen_2_5_vl.cpython-38.pyc -------------------------------------------------------------------------------- /eval/models/qwen_2_5_vl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolDawnAnt/InfoChartQA/HEAD/eval/models/qwen_2_5_vl.py -------------------------------------------------------------------------------- /result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolDawnAnt/InfoChartQA/HEAD/result.png -------------------------------------------------------------------------------- /teaser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolDawnAnt/InfoChartQA/HEAD/teaser.jpg --------------------------------------------------------------------------------