TABVERSE
收藏资源简介:
TABVERSE是一个用于系统评估大语言模型(LLMs)和视觉语言模型(VLMs)跨格式表格理解能力的受控多模态基准数据集。其核心设计理念是将每个表格内容以三种不同的结构化格式(HTML、Markdown、LaTeX)及其对应的PNG渲染图像进行对齐表示,从而能够在保持表格内容不变的前提下,研究格式和模态之间的交互影响。数据集包含两个主要配置:1) qa(任务预测)配置,包含700个问题-表格对(350个简单问题,350个困难问题),每个样本提供了自然语言问题、黄金答案、问题难度和类别,以及表格在所有三种格式下的源代码和渲染图像。问题涵盖七种推理类别,如简单查找、条件查找、多步验证、比较与极值、聚合/计数/算术等。2) suc(结构化理解与理解/格式生成)配置,包含629个唯一的表格,专门用于表格结构解析能力的探测,提供了诸如表格尺寸检测、单元格值检索、反向查找、行列检索等任务的黄金答案。同时,该配置也支持结构重建(SR)任务,即可在任意两种格式(HTML、Markdown、LaTeX)之间进行相互转换。数据来源于多个公开的表格问答与事实验证数据集(如FEVEROUS、HybridQA、SQA、TabFact、ToTTo)的保留测试集,以避免数据污染。该数据集适用于多种任务,包括表格问答(QA)、结构化表格理解(SUC)以及跨格式表格生成(SR),旨在全面评估模型在处理不同表格表示形式时的能力。
TABVERSE is a controlled multimodal benchmark dataset designed for systematically evaluating the cross-format table understanding capabilities of large language models (LLMs) and vision-language models (VLMs). Its core design concept involves aligning each table content in three different structured formats (HTML, Markdown, LaTeX) and their corresponding PNG rendered images, enabling the study of interactions between formats and modalities while keeping the table content unchanged. The dataset includes two main configurations: 1) The qa (task prediction) configuration, which contains 700 question-table pairs (350 simple questions, 350 difficult questions). Each sample provides a natural language question, a gold answer, question difficulty and category, as well as the source code and rendered images of the table in all three formats. The questions cover seven reasoning categories, such as simple lookup, conditional lookup, multi-step verification, comparison and extremum, aggregation/counting/arithmetic, etc. 2) The suc (structured understanding and comprehension/format generation) configuration, which includes 629 unique tables specifically designed for probing table structure parsing capabilities, providing gold answers for tasks such as table size detection, cell value retrieval, reverse lookup, and row/column retrieval. This configuration also supports the structure reconstruction (SR) task, allowing mutual conversion between any two formats (HTML, Markdown, LaTeX). The data is sourced from the reserved test sets of multiple public table question answering and fact verification datasets (e.g., FEVEROUS, HybridQA, SQA, TabFact, ToTTo) to avoid data contamination. The dataset is suitable for various tasks, including table question answering (QA), structured table understanding (SUC), and cross-format table generation (SR), aiming to comprehensively evaluate model capabilities in handling different table representations.
数据集概述
TABVERSE 是一个受控多模态表格基准数据集,用于评估大型语言模型(LLMs)和视觉语言模型(VLMs)在跨格式表格理解方面的能力。该数据集由穆罕默德·本·扎耶德人工智能大学(MBZUAI)和新加坡科技设计大学(SUTD)的研究人员构建。
核心特性
- 多格式对齐:同一张表格以 HTML、Markdown、LaTeX 三种格式的源代码及渲染后的 PNG 图像形式呈现,确保表格内容在三种视图下完全一致。
- 数据集规模:
qa配置:包含 700 个问答对(其中 350 个简单、350 个困难)。suc配置:包含 629 张独特表格。
- 来源数据集:表格源自 FEVEROUS、HybridQA、SQA、TabFact 和 ToTTo 等数据集的独立分割,避免污染。
- 评估模型:已评估 17 个模型,包括开源权重 VLMs、开源权重 LLMs、GPT-4o 和 Gemini。
数据集配置
1. qa — 任务预测(700 行)
每一行对应一个问答对,包含问题、正确答案、难度、类别,以及表格在三种格式下的渲染图像和源代码。
| 列名 | 类型 | 描述 |
|---|---|---|
id |
int | 行索引 |
image_id |
string | 唯一表格标识符 |
html_image |
Image | HTML 表格的 PNG 渲染图像 |
markdown_image |
Image | Markdown 表格的 PNG 渲染图像 |
latex_image |
Image | LaTeX 表格的 PNG 渲染图像 |
html_code |
string | 原始 HTML 源代码 |
markdown_code |
string | 原始 Markdown 源代码 |
latex_code |
string | 原始 LaTeX 源代码 |
table |
string | JSON 编码的 {header, rows} 结构 |
query |
string | 自然语言问题 |
label |
list[string] | 黄金标准答案 |
question_category |
string | 7 种推理类别之一 |
question_difficulty |
string | 简单或困难 |
dataset |
string | 来源数据集 |
score |
int | 标注的复杂度分数 |
问题类别:简单查找 · 条件查找 · 多项查找 · 单步二元验证 · 多步二元验证 · 比较与极值 · 聚合/计数/算术
2. suc — 结构化理解与理解 / 格式生成(629 行)
每一行对应一张唯一表格。该配置提供用于结构探测任务的黄金答案,同时支持结构重建(SR)任务,即从一个格式生成另一个格式。
| 列名 | 类型 | 描述 |
|---|---|---|
id |
int | 行索引 |
image_id |
string | 唯一表格标识符 |
html_image |
Image | HTML 表格的 PNG 渲染图像 |
markdown_image |
Image | Markdown 表格的 PNG 渲染图像 |
latex_image |
Image | LaTeX 表格的 PNG 渲染图像 |
html_code |
string | 原始 HTML 源代码 |
markdown_code |
string | 原始 Markdown 源代码 |
latex_code |
string | 原始 LaTeX 源代码 |
table |
string | JSON 编码的 {header, rows} 结构 |
dataset |
string | 来源数据集 |
table_partition |
string | 表格所属分区 |
size_detection |
string | 黄金答案:`{行数} |
cell_value |
string | 黄金答案:采样单元格的值 |
cell_lookup |
string | 采样单元格坐标 `{行} |
reverse_lookup_indices |
string | 反向查找的行/列索引 |
reverse_lookup |
string | 黄金答案:反向查找的值 |
column_idx |
int | 采样的列索引 |
column_retrieval |
string | 黄金答案:该列的标题 |
row_idx |
int | 采样的行索引 |
row_retrieval |
string | 黄金答案:整行内容 |
table_first_cell |
string | 单元格 (0, 0) 的值 |
table_last_cell |
string | 最后一个单元格的值 |
number_of_rows |
int | 表格行数 |
number_of_columns |
int | 表格列数 |
任务
1. SUC — 结构化理解与理解
旨在隔离表格解析能力,所有答案仅从表格结构中推导。
| 子任务 | 输入 | 黄金答案列 |
|---|---|---|
| 大小检测 | 表格图像/代码 | size_detection |
| 单元格值检索 | 表格 + cell_lookup 坐标 |
cell_value |
| 反向查找 | 表格 + reverse_lookup 值 |
reverse_lookup_indices |
| 列检索 | 表格 + column_idx |
column_retrieval |
| 行检索 | 表格 + row_idx |
row_retrieval |
| 首/末单元格 | 表格 | table_first_cell, table_last_cell |
2. QA — 任务预测
基于表格的自由形式自然语言问答,使用 qa 配置,评估指标为归一化后的精确匹配。
3. SR — 结构重建(格式生成)
给定一种格式的表格,生成另一种格式的表格,支持六种转换方向(HTML↔Markdown、HTML↔LaTeX、Markdown↔LaTeX),评估指标为 BLEU 和结构相似性。
评估模式
模型在三种模式下进行评估:
| 模式 | 输入 | 评估模型示例 |
|---|---|---|
| LLM | 纯文本(三种代码格式之一) | Qwen2.5-3B/7B, SmolLM2-1.7B, GPT-4o, Gemini |
| VLM-Image | 渲染的 PNG 图像 | Qwen-VL-2.5-3B/7B, SmolVLM-1.7B, GPT-4o, Gemini |
| VLM-Text | 代码字符串(输入给 VLM) | 与 VLM-Image 相同的 VLMs 的纯文本模式 |
主要评估指标为每项任务和每种格式的精确匹配准确率。
许可协议
数据集采用 CC-BY-4.0 许可证。




