KnowCP
收藏资源简介:
KnowCP 是一个专注于中国绘画理解与推理的基准数据集,支持识别式任务(如区域/文本提取)和知识/推理任务(如开放式问答、多项选择和多轮问答)。数据集包含图像和文本两种模态,语言为中文,采用CC BY 4.0许可协议。数据集总规模包括2331张图像和26137个问题项。数据集结构分为两个主要部分:`image`系列包含图像及其元数据(如标题、艺术家、朝代、机构等),`qa`系列包含14种问题类型,每种类型10个问题项(共140项)。数据集适用于视觉问答、多项选择问答和文档问答等任务。
KnowCP is a benchmark dataset focused on Chinese painting understanding and reasoning. It supports both recognition tasks (e.g., region/text extraction) and knowledge/reasoning tasks (e.g., open-ended question answering, multiple-choice question answering, and multi-turn question answering). The dataset contains two modalities: image and text, with all text content in Chinese, and is released under the CC BY 4.0 license. The total scale of the dataset includes 2331 images and 26,137 question items. The dataset is structured into two main sections: the `image` series, which contains images and their metadata such as title, artist, dynasty, institution, etc., and the `qa` series, which consists of 14 question types with 10 question items per type, totaling 140 items. This dataset is applicable to tasks including visual question answering, multiple-choice question answering, and document question answering.
KnowCP 数据集概述
数据集基本信息
- 数据集名称: KnowCP
- 主要用途: 中国画理解与推理基准测试
- 支持任务类型: 识别式任务(区域/文本提取)与知识/推理任务(开放问答、多项选择、多轮问答)
- 模态: 图像 + 文本
- 语言: 中文
- 许可协议: CC BY 4.0
- 任务类别: 视觉问答、多项选择问答、文档问答
- 标签: 中国画、文化遗产、多模态、基准测试
数据规模
- 图像总数: 2331
- 问题项总数(完整集): 26137
数据集结构
数据集包含两个配置系列:
image配置(默认): 包含图像及其元数据。qa配置: 包含问题与答案对。
数据字段说明
image 系列字段
image: 渲染的图像image_id: 图像标识符title: 画作标题artist: 艺术家dynasty: 朝代institution: 收藏机构material: 材质
qa 系列字段
image: 渲染的图像qid: 问题标识符type: 问题类型question: 问题文本ground_truth: 真实答案
数据集查看器布局
数据集卡片展示两个系列的样本:
image系列: 前100幅单幅画作艺术品及其元数据。qa系列: 14种问题类型,每种类型10个项目(共140项)。
仓库文件结构
images/**: 图像资源kb/knowledge_base.json: 艺术品元数据(title,artist,dynasty,institution)annotations/*.json: 印章/题跋/物体/技法标注导出文件questions/by_type/*.jsonl: 按类型分类的源问题文件card_samples/parquet/image.parquet: 图像系列表格文件card_samples/parquet/qa.parquet: 问答系列表格文件
使用方式
可通过 datasets 库加载数据集:
python
from datasets import load_dataset
repo_id = "g41/KnowCP"
image_ds = load_dataset(repo_id, name="image")
qa_ds = load_dataset(repo_id, name="qa")
相关资源链接
- 代码仓库: https://github.com/41-edu/KnowCP
- 数据集地址: https://huggingface.co/datasets/g41/KnowCP




