ChartMuseum
收藏资源简介:
ChartMuseum是一个图表问答基准测试,旨在评估大型视觉语言模型在真实世界图表图像上的推理能力。该基准测试包含1162个(图像、问题、简短答案)元组,专门针对需要非平凡的文本和视觉推理技能的问题。数据集由13位计算机科学研究人员共同标注。
ChartMuseum is a chart question-answering benchmark designed to evaluate the reasoning capabilities of large vision-language models on real-world chart images. This benchmark contains 1162 tuples in the format of (image, question, short answer), specifically targeting questions that require non-trivial textual and visual reasoning skills. The dataset was jointly annotated by 13 computer science researchers.
ChartMuseum 数据集概述
数据集简介
- 名称: ChartMuseum
- 类型: 图表问答基准数据集
- 目的: 评估大型视觉语言模型(LVLMs)在真实世界图表图像上的推理能力
- 规模: 包含1162个(图像、问题、简短答案)元组
- 特点: 专注于需要非平凡文本和视觉推理技能的问题
数据集内容
- 字段说明:
image: 问题基于的图表图像question: 针对图表的问题answer: 问题的答案reasoning_type: 回答问题所需的主要推理技能类型(文本、视觉/文本、综合、视觉)source: 图像来源网站hash: 示例的唯一标识符
获取方式
-
访问地址: Hugging Face数据集页面
-
图像下载: 需额外下载images文件夹
-
加载代码: python from datasets import load_dataset from huggingface_hub import snapshot_download
dataset = load_dataset("lytang/ChartMuseum") snapshot_download( repo_id="lytang/ChartMuseum", repo_type="dataset", allow_patterns="images/*", local_dir="." )
评估方法
-
评估脚本: 使用OpenAI的GPT-4作为评判模型
-
评估要求:
- 预测答案需包含在
<answer></answer>标签中 - 答案顺序需与数据集问题顺序一致
- 预测答案需包含在
-
评估命令: bash export OPENAI_API_KEY=your_api_key_here python evaluate.py --prediction_path /path/to/predictions.json --split dev/test
-
评估成本:
- 开发集: $0.03(约5秒)
- 测试集: $0.16(约12秒)
许可信息
- 数据集许可: CC BY-SA 4.0
- 代码许可: Apache 2.0




