Paper: 2603.08655 Authors: Krista Opsahl-Ong, Arnav Singhvi, Jasmine Collins, Ivan Zhou, Cindy Wang, Ashutosh Baheti, Owen Oertell, Jacob Portes, Sam Havens, Erich Elsen Categories: cs.AI, cs.CL, cs.IR
The Gap
Existing document QA benchmarks like SQuAD, Natural Questions, and HotpotQA test models on clean, curated datasets with single documents or simple multi-hop reasoning. Enterprise reality is messier: 89,000-page corpora spanning decades, heterogeneous formats mixing prose and tables, questions requiring precise numerical extraction across multiple documents. Current benchmarks don’t capture this complexity, leaving a blind spot between impressive lab results and disappointing production deployments.
Problem: Lab benchmarks != Enterprise reality
|
v
Assumption: Real enterprise tasks need multi-document
reasoning over heterogeneous data at scale
|
v
Method: Build benchmark from 100 years of Treasury
Bulletins (89K pages, 26M numbers, 133 questions)
|
v
Evidence: Frontier models <35% accuracy even with
full corpus access (vs >90% on lab benchmarks)
|
v
Conclusion: Significant gap remains for enterprise-grade
grounded reasoning
The Increment
One sentence: Before this paper, we thought frontier LLMs were close to production-ready for document reasoning; after, we know they fail on over 65% of realistic enterprise tasks even with perfect document access.
Core Mechanism
OfficeQA Pro consists of three components: a corpus, a question set, and an evaluation protocol. The corpus is 89,000 pages of U.S. Treasury Bulletins from 1927-2024, containing both unstructured text and dense tabular data with 26 million numerical values. The question set comprises 133 carefully designed questions that require locating relevant documents, parsing both text and tables, and performing analytical reasoning across multiple sources.
The evaluation protocol tests models under three access conditions: parametric knowledge only (no external data), web access (simulating RAG with search), and direct corpus access (oracle retrieval). For each condition, the paper measures exact match accuracy and conducts ablations on document representation (raw vs structured parsing), retrieval strategy, and model selection. The structured representation uses Databricks’ ai_parse_document to convert PDFs into a format that preserves table structure and spatial relationships.
Think of this like stress-testing bridges. Lab benchmarks are like testing toy bridges in controlled conditions—clean materials, perfect weather, known loads. OfficeQA Pro is like testing real bridges under actual conditions: decades of weathering (document age), mixed materials (text + tables), unpredictable traffic patterns (diverse question types), and real-world constraints (must find right documents first). The corpus is the harsh environment, the questions are the stress tests, and the results show which bridge designs (models + methods) actually hold up when it matters. Just as a toy bridge that works in the lab might collapse under real traffic, models that ace SQuAD might fail when faced with 89,000 pages of Treasury data.
Key Concepts
-
Grounded reasoning: This means the model must derive answers from specific documents rather than relying on memorized knowledge. Imagine a lawyer who must cite exact page numbers and quotes from case law rather than arguing from general legal principles. The model can’t just “know” that Treasury debt increased in 2008—it must locate the specific bulletin, parse the relevant table, extract the numbers, and compute the answer. This is harder because it requires precise document understanding, not just plausible generation.
-
Heterogeneous document corpus: Real enterprise data isn’t uniform. A single Treasury Bulletin might contain narrative text explaining policy changes, dense tables with hundreds of numerical entries, footnotes with caveats, and charts. The model must handle all these formats simultaneously and understand how they relate. It’s like asking someone to cook a meal using ingredients from different cuisines, each requiring different preparation techniques—you can’t just blend everything together.
-
Multi-document reasoning: Many questions require synthesizing information across multiple documents. For example: “How did the debt-to-GDP ratio change between 1950 and 1980?” requires finding debt figures from bulletins across 30 years, GDP data from potentially different sources, computing ratios, and tracking changes. This is fundamentally different from single-document QA where all information is localized.
Framework Shift
Before (lab benchmarks): After (OfficeQA Pro):
Question Question
| |
v v
[Clean doc] [89K pages]
| / | \
Extract Find Parse Reason
| / | \
Answer [Text] [Tables] [Multi-doc]
\ | /
Accuracy: ~90% Synthesize
|
Answer
Accuracy: ~34%
From testing reading comprehension on curated paragraphs to testing end-to-end information work on realistic corpora, the core shift is from isolated skill evaluation to integrated task performance.
Expert Assessment
Problem choice: This is a genuine gap. The disconnect between benchmark performance and production failures is a real pain point for enterprises deploying LLMs. The choice of Treasury Bulletins is smart—publicly available, naturally complex, spans decades, and represents actual enterprise use cases (financial analysis, compliance, reporting).
Method maturity: As a benchmark paper, the “method” is corpus and question design. The corpus is well-chosen but questions could be more diverse—133 questions is relatively small, and we don’t know if they cover the full distribution of enterprise reasoning tasks. The ablations are informative (structured parsing helps, retrieval matters), but the paper doesn’t deeply investigate why models fail or what specific capabilities are missing.
Experimental integrity: Baselines are fair and comprehensive (multiple frontier models, various access conditions). The numbers are credible—<5% parametric, <12% with web, ~34% with corpus access tells a consistent story of increasing but still insufficient performance. One concern: we don’t see inter-annotator agreement on answer correctness, which matters for numerical questions where “close enough” might be debatable.
Writing quality: The paper is clear and well-structured, but the analysis section feels thin. The authors show that structured parsing helps (+16.1% relative gain) but don’t dig into what aspects of structure matter most. The error analysis is minimal—we don’t get a taxonomy of failure modes or insights into what makes questions hard. Rewriting Section 5 (Analysis) with deeper investigation of failure patterns would elevate the paper significantly.
Verdict: weak accept — Useful benchmark that exposes a real gap, but limited analytical depth and relatively small question set prevent it from being a strong contribution.
Takeaways
For practitioners deploying document QA systems: Don’t trust lab benchmark numbers. Test on your actual corpus with realistic questions. The 16.1% gain from structured document parsing (ai_parse_document) suggests investing in document preprocessing is worthwhile—convert PDFs to structured formats that preserve tables and spatial relationships before feeding to LLMs.
For researchers: There’s a massive opportunity in multi-document reasoning over heterogeneous data. The gap between 34% and human performance is where the next generation of methods will be built. Focus on table understanding, cross-document synthesis, and retrieval over large corpora.
For benchmark designers: Scale and realism matter. Small, clean datasets create a false sense of progress. Build benchmarks from real enterprise data, even if it’s messier and harder to annotate.
Specific technique to steal: The evaluation protocol of testing under three access conditions (parametric, web, corpus) is a clean way to isolate different failure modes. Use this pattern when evaluating your own systems to understand where performance bottlenecks lie.
论文: 2603.08655 作者: Krista Opsahl-Ong, Arnav Singhvi, Jasmine Collins, Ivan Zhou, Cindy Wang, Ashutosh Baheti, Owen Oertell, Jacob Portes, Sam Havens, Erich Elsen 分类: cs.AI, cs.CL, cs.IR
缺口
现有的文档问答基准如SQuAD、Natural Questions和HotpotQA测试的是模型在干净、精选数据集上的表现,通常是单文档或简单的多跳推理。
企业现实要混乱得多:跨越数十年的89,000页语料库,混合散文和表格的异构格式,需要跨多个文档进行精确数值提取的问题。
当前基准没有捕捉到这种复杂性,在令人印象深刻的实验室结果和令人失望的生产部署之间留下了盲区。
问题:实验室基准 != 企业现实
|
v
假设:真实企业任务需要在大规模异构数据上
进行多文档推理
|
v
方法:从100年的财政部公报构建基准
(89K页,2600万数字,133个问题)
|
v
证据:前沿模型即使有完整语料库访问
准确率也<35% (vs 实验室基准>90%)
|
v
结论:企业级扎根推理仍有显著差距
增量
一句话:这篇论文之前,我们以为前沿LLM已接近文档推理的生产就绪状态;
之后,我们知道即使有完美的文档访问,它们在超过65%的真实企业任务上仍然失败。
核心机制
OfficeQA Pro由三个组件构成:语料库、问题集和评估协议。
语料库是1927-2024年间89,000页的美国财政部公报,包含非结构化文本和密集的表格数据,共2600万个数值。
问题集包含133个精心设计的问题,需要定位相关文档、解析文本和表格,并跨多个来源进行分析推理。
评估协议在三种访问条件下测试模型:仅参数化知识(无外部数据)、网络访问(模拟带搜索的RAG)和直接语料库访问(预言机检索)。
对于每种条件,论文测量精确匹配准确率,并对文档表示(原始vs结构化解析)、检索策略和模型选择进行消融实验。
结构化表示使用Databricks的ai_parse_document将PDF转换为保留表格结构和空间关系的格式。
把这想象成桥梁压力测试。
实验室基准就像在受控条件下测试玩具桥——干净的材料、完美的天气、已知的负载。
OfficeQA Pro就像在实际条件下测试真实桥梁:数十年的风化(文档年龄)、混合材料(文本+表格)、不可预测的交通模式(多样的问题类型)和现实世界的约束(必须先找到正确的文档)。
语料库是恶劣环境,问题是压力测试,结果显示哪些桥梁设计(模型+方法)在关键时刻真正经得起考验。
就像在实验室里能用的玩具桥在真实交通下可能坍塌一样,在SQuAD上表现优异的模型在面对89,000页财政部数据时可能失败。
关键概念
- 扎根推理:这意味着模型必须从特定文档中推导答案,而不是依赖记忆的知识。
想象一个律师必须引用确切的页码和案例法的引文,而不是从一般法律原则论证。
模型不能只是”知道”2008年财政部债务增加了——它必须定位特定的公报,解析相关表格,提取数字,并计算答案。
这更难,因为它需要精确的文档理解,而不仅仅是合理的生成。
- 异构文档语料库:真实的企业数据不是统一的。
一份财政部公报可能包含解释政策变化的叙述文本、包含数百个数值条目的密集表格、带有警告的脚注和图表。
模型必须同时处理所有这些格式并理解它们之间的关系。
这就像要求某人用来自不同菜系的食材做一顿饭,每种都需要不同的准备技术——你不能只是把所有东西混在一起。
- 多文档推理:许多问题需要跨多个文档综合信息。
例如:“1950年到1980年间债务与GDP的比率如何变化?”
需要从30年间的公报中找到债务数字,从可能不同的来源找到GDP数据,计算比率,并跟踪变化。
这与所有信息都局部化的单文档问答根本不同。
框架转变
之前(实验室基准): 之后(OfficeQA Pro):
问题 问题
| |
v v
[干净文档] [89K页]
| / | \
提取 查找 解析 推理
| / | \
答案 [文本][表格][多文档]
\ | /
准确率:~90% 综合
|
答案
准确率:~34%
从在精选段落上测试阅读理解到在真实语料库上测试端到端信息工作,核心转变是从孤立的技能评估到集成的任务表现。
专家评审
选题眼光:这是一个真实的缺口。
基准表现与生产失败之间的脱节是企业部署LLM的真正痛点。
选择财政部公报很聪明——公开可用、自然复杂、跨越数十年,代表实际的企业用例(财务分析、合规、报告)。
方法成熟度:作为基准论文,“方法”是语料库和问题设计。
语料库选择得很好,但问题可能更多样化——133个问题相对较少,我们不知道它们是否覆盖了企业推理任务的完整分布。
消融实验有信息量(结构化解析有帮助,检索很重要),但论文没有深入研究模型为什么失败或缺少哪些特定能力。
实验诚意:基线公平且全面(多个前沿模型,各种访问条件)。
数字可信——<5%参数化,<12%带网络,~34%带语料库访问讲述了一个一致的故事,即性能不断提高但仍然不足。
一个担忧:我们没有看到答案正确性的标注者间一致性,这对于数值问题很重要,因为”足够接近”可能有争议。
写作功力:论文清晰且结构良好,但分析部分感觉单薄。
作者展示了结构化解析有帮助(+16.1%相对增益),但没有深入研究结构的哪些方面最重要。
错误分析很少——我们没有得到失败模式的分类或对什么使问题困难的洞察。
重写第5节(分析)并对失败模式进行更深入的调查将显著提升论文水平。
判决:弱接收 — 有用的基准暴露了真实差距,但有限的分析深度和相对较小的问题集阻止它成为强贡献。
要点总结
对于部署文档问答系统的实践者:不要相信实验室基准数字。
在你的实际语料库上用真实问题测试。
结构化文档解析(ai_parse_document)带来的16.1%增益表明,投资文档预处理是值得的——在输入LLM之前将PDF转换为保留表格和空间关系的结构化格式。
对于研究者:异构数据上的多文档推理有巨大机会。
34%与人类表现之间的差距是下一代方法将被构建的地方。
专注于表格理解、跨文档综合和大型语料库上的检索。
对于基准设计者:规模和真实性很重要。
小而干净的数据集会产生虚假的进步感。
从真实的企业数据构建基准,即使它更混乱、更难标注。
可偷的具体技术:在三种访问条件(参数化、网络、语料库)下测试的评估协议是隔离不同失败模式的简洁方法。
在评估自己的系统时使用这种模式来理解性能瓶颈在哪里。