Pith. sign in

REVIEW 5 major objections 5 minor 81 references

Beyond Tables: Doc2DB-Bench for Relationally Faithful Document-to-Database Construction

T0 review · 5 major / 5 minor · reviewed 2026-08-14 · deepseek-v4-flash

Pith's one-line read The paper introduces Doc2DB-Bench, the first benchmark for evaluating whether LLMs can reconstruct relational databases—with entity identities, keys, relationships, and integrity constraints—from long documents, and reports that even the…

desk verdict Useful benchmark idea with a real gap, but the submitted manuscript is self-sabotaged by an embedded block from another paper and an unaudited ground-truth assumption. read the letter →

arxiv 2608.08459 v1 pith:RSPQVUGL submitted 2026-08-09 cs.CL cs.AIcs.DB

classification cs.CLcs.AIcs.DB
keywords document-to-databaseextractionrelationaldatabaseconstructionLLMevaluationbenchmarkmulti-tablereasoninginformationsyntheticdocumentgenerationintegrityconstraintslong-documentunderstanding
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper argues that evaluating document understanding as flat table extraction is insufficient: the real need is to test whether a model can reconstruct a normalized relational database, complete with entity identities, keys, cross-table relationships, and integrity constraints, from long heterogeneous documents. To make this testable, it introduces Doc2DB-Bench, the first benchmark for systematic LLM evaluation on document-to-database extraction, containing 203 long-document instances synthesized from real relational database schemas. The benchmark's central claim is that relation-level reasoning—identity resolution, relationship linking, structural inference, and constraint satisfaction—is a distinct skill that current LLMs perform markedly worse than cell-level extraction. If this is right, progress on document-based analytics, compliance, and SQL-backed workflows should be measured at the database level, not at the table level.

What carries the argument

The load-bearing mechanism is the controllable DB2Doc reverse-synthesis pipeline: start from a real relational database instance, decompose each cell and each relational tuple into atomic evidence, assign capability labels from the taxonomy, serialize the evidence into a document plan, generate long-form text with configurable style and noise, and run dual validation (coverage verification and extraction consistency) with reject-and-rewrite loops. The completeness and exclusiveness conditions of Definition 2—every gold value is supported by evidence and no additional facts are inferable—are what make the gold database uniquely recoverable, and they therefore make all downstream model scores meaningful.

What would settle it

Take a random sample of Doc2DB-Bench documents, give them to annotators who have never seen the gold database, and ask them to extract every fact they can. If any annotator infers a fact that is not in the gold database, or fails to recover a fact that is in it, that instance violates exclusiveness or completeness, and the benchmark's ground truth for that instance is unsound.

Watch

Extended reading notes

Core claim

The central discovery is a benchmark plus a controllable reverse-synthesis methodology that turns real relational database instances into long documents from which the original database should be uniquely recoverable. Doc2DB-Bench contains 203 instances across 42 schemas and seven domains, with 117 entity tables, 132 relationship tables, 7,341 rows, and 41,935 cells, each annotated along a two-pillar taxonomy of intra-table extraction and inter-table reasoning capabilities. The paper reports that state-of-the-art LLMs achieve entity-level F1 around 80% but relation-level F1 around 65–72%, with structural reasoning and integrity constraints as the persistent failure modes; even the strongest model plateaus near 80% on transitive inference and dynamic change. The authenticity checks—rubric-based human and LLM evaluation plus commercial AI detectors—are offered as evidence that the synthesized documents are indistinguishable from real-world references, supporting the validity of scores obtained on them.

Load-bearing premise

The ground truth is reliable only if the synthesized documents are complete and exclusive with respect to the gold database: every gold value must be recoverable from the text, and no plausible reading of the text may support an extra fact, a property guaranteed by an LLM validator plus human review rather than by independent audit.

Editorial extensions

If this is right

  • Relation-level extraction should become a primary evaluation axis for any document-to-database system; cell-level F1 alone overstates a model's practical capability.
  • Models that score well on flat-table benchmarks will not automatically succeed on Doc2DB-Bench, and the capability taxonomy will pinpoint which reasoning steps fail.
  • The synthesis pipeline can generate additional instances from any relational database, enabling scalable benchmark expansion without manual document annotation.
  • Database-level metrics—entity coverage, relationship coverage, and referential integrity rate—should complement cell accuracy in future extraction evaluation.
  • Applications such as compliance and analytics should demand schema-conformant, constraint-satisfying outputs, not merely isolated field values.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • If exclusiveness holds only as strongly as the LLM validator's checks, some documents may still support facts beyond the gold database; a cheap audit is to have a different model family independently re-extract a random sample and measure agreement with the gold instance.
  • The taxonomy could be reused as a training diagnostic: focusing targeted training on conditional linkage and integrity-constraint sub-capabilities might lift relation-level F1 more than generic long-context fine-tuning.
  • The 42 schemas could be turned into an adversarial generator—perturbing noise level, distractor density, or missing-value patterns—to stress-test constraint satisfaction, an axis the paper's configuration module enables but does not fully explore.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

5 major / 5 minor

Summary. The paper introduces Doc2DB-Bench, a benchmark for evaluating LLMs on constructing normalized relational databases from long documents, rather than extracting flat tables. The benchmark comprises 203 document instances built from 42 BIRD/Spider database schemas via a five-stage controllable DB2Doc reverse-synthesis pipeline, with a two-pillar capability taxonomy covering intra-table and inter-table reasoning. The authors report fine-grained capability annotations, evaluate 14 open-source, proprietary, and specialized IE systems on entity-level, relation-level, and overall F1 scores, and claim that the generated documents are authentic and indistinguishable from real-world references. The contribution is positioned as the first benchmark for systematic LLM evaluation on document-to-database construction.

Significance. If the central validity assumption holds, Doc2DB-Bench fills a genuine gap: existing benchmarks such as DTBench and SQUiD do not test normalized multi-table construction from long heterogeneous documents with entity identity, cross-table relationships, and integrity constraints. A notable strength is that the gold databases come from external BIRD and Spider sources, so the core target labels are not derived from the same synthesis loop that generates the documents. The capability taxonomy and fine-grained annotations are also useful for diagnosing model failures, and the broad baseline comparison across fourteen systems is valuable. However, the significance is contingent on two load-bearing requirements: that the synthesized documents satisfy the stated completeness and exclusiveness conditions with respect to the ground-truth database, and that the authenticity and reproducibility claims are supported by the released artifacts.

major comments (5)
  1. [Definition 2 and Section 4, Step 5] The exclusiveness condition of Definition 2 is load-bearing for every score in Table 3, but the validation described in Step 5 cannot establish it. Coverage verification checks only that tagged atomic evidence is present, not that unsupported facts are absent; extraction consistency re-extracts a database from the generated document using a Gemini-2.5-Pro validator, which is the same model family as the generator and is not an exhaustive entailment check. Appendix A.4 mentions human review by seven PhD candidates, but reports no protocol, no blind fact-exhaustion audit, and no inter-annotator agreement. If any document entails facts beyond the ground-truth database, the gold instance is corrupted and that instance's precision, recall, and F1 are uninterpretable. Please provide an independent audit of exclusiveness (for example, adversarial human fact-mining with agreement statistics) or a formal argument that the generation protocol prevents extra facts.
  2. [Abstract and Table 5] The abstract claims the generated documents are 'proving indistinguishable from real-world references,' but Table 5 reports ZeroGPT scores of 35.20 for Doc2DB-Bench documents versus 23.12 for reference documents. The synthesized documents are therefore flagged as AI-generated substantially more often than the references, directly contradicting the stated claim. The FastGPT comparison is closer, but the ZeroGPT gap of about 12 points should be explained or the claim should be weakened.
  3. [Section 5.1 and Table 3] GPT-4o is both a baseline system in Table 3 and the LLM judge used for semantic quality evaluation in Section 5.1; the paper reports no analysis of evaluator bias, no agreement between the LLM judge and human ratings, and no ablation with alternative judges. The Step 5 extraction-consistency validator also belongs to the same Gemini-2.5-Pro family as the document generator. This shared-model-family circularity does not by itself invalidate the entity/relation scores, because those are computed against the external gold databases, but it does affect the semantic-quality scores and the authenticity evaluation. Please report judge agreement and assess whether the shared model family can inflate any reported number.
  4. [Section 1 and Appendix A] The reproducibility of the benchmark is not yet demonstrated. The paper states the benchmark is publicly available at a GitHub URL, but it provides no commit hash, no dataset version, no code for the synthesis pipeline, no exact configuration files, and no documented procedure for reproducing the human verification. Without these artifacts, the claimed controllability of the pipeline and the exact numbers in Section 5 cannot be independently checked. Please include a complete artifact appendix or a permanent DOI with datasets, prompts, and run instructions.
  5. [Manuscript structure, after Section 1] The manuscript contains a large unintegrated block from a different paper, 'Document-to-Database: Extraction Meets Relational Semantics,' in PVLDB format, beginning shortly after Section 1 and including its own abstract, figures, and definitions. This material is not part of the Doc2DB-Bench paper and is not referenced or integrated. As submitted, the paper is internally incoherent and cannot be reviewed as a single work; the block must be removed or clearly separated from the main text.
minor comments (5)
  1. [Section 4, statistics paragraph] The text says the benchmark contains '42 synthesized (Document, Specification, Database) samples,' while Table 2 lists 203 documents and 42 databases; the wording should be corrected to avoid the impression that there are only 42 document instances.
  2. [Section 5.4 and Appendix A.4] The number of human evaluators is inconsistent: Section 5.4 reports 'five graduate students,' while Appendix A.4 reports 'seven PhD candidates.' Please align these numbers and describe the exact role of each group.
  3. [Figure 2] Several taxonomy abbreviations in Figure 2 are not expanded in the caption or immediately surrounding text (for example, O2M, MB, ED, TA, UT, RI, AR). Expanding all abbreviations in the caption would improve readability.
  4. [Definition 1 and Definition 2] The notation is inconsistent: Definition 1 uses D for the instantiated database and D* for ground truth, while the DB2Doc synthesis definition uses D* for the given ground truth and D_syn for the synthesized document. Please standardize the notation across Section 2 and Section 4.
  5. [References] Some references are incomplete or use placeholder formatting (for example, entries marked 'arXiv:XXXX.XXXXX'), and a few citations in the text are not resolved. A careful reference cleanup is needed.

Circularity Check

2 steps flagged · score 6.0 of 10

Two construction-level circularities: the 'labeled documents are harder' finding is guaranteed by the Labeling Agent's instructions, and the LS metric for GPT-4o is GPT-4o's self-assessment; the core P/R/F1 rankings remain grounded in external BIRD/Spider data.

  1. self definitional [Section 5.3 ('Capability assignment introduces difficulty') and Appendix E.1 (Labeling Agent prompt, instruction 1)]
    "Assign labels that increase single-table extraction difficulty while preserving correctness. ... These results confirm that capability-annotated documents are genuinely harder and validate the effectiveness of our taxonomy."

    The paper presents the Fig. 5 result that models score worse on 'labeled' documents as empirical confirmation that the taxonomy captures difficulty. But the Labeling Agent was explicitly instructed to assign labels that increase extraction difficulty. The observed drop on labeled documents is therefore a check that the generator followed its own construction instructions, not an independent validation of the taxonomy. The empirical 'prediction' that labeled documents are harder is entailed by the construction rule, so the confirmation is circular by definition.

  2. other [Section 5.1, Metrics ('Semantic Quality' paragraph); Table 3 (GPT-4o row, LS column)]
    "Semantic Quality. We employ GPT-4o as an evaluator to assess semantic equivalence beyond exact cell matching. ... GPT-4o [16] - 72.39 70.92 70.30 62.94 46.78 50.68 65.66 55.99 59.05 47.52"

    The LS (semantic quality) metric is defined as GPT-4o's rating, and GPT-4o is itself one of the baselines in Table 3. Consequently, GPT-4o's reported LS value is GPT-4o judging its own output; any conclusion about GPT-4o's semantic quality from that column is self-confirmatory by construction. The reduction is exact for this metric: for M = GPT-4o, the metric value equals M's own judgment. This is not load-bearing for the main rankings: entity/relation P/R/F1 come from deterministic maximum-weight matching against external BIRD/Spider ground truth, and GPT-4o's LS of 47.52 is not the best score, so the self-evaluation does not inflate its ranking.

full rationale

Doc2DB-Bench has no fitted numerical parameters, and the central benchmark labels come from external sources (BIRD and Spider, Appendix A.1), so the main precision/recall/F1 scores are not generated inside the scored loop. Those scores use deterministic string/numeric matching against the external ground truth (Section 5.1, Appendix C.1). The first circular step is the taxonomy-validation claim: the finding that capability-labeled documents are harder is pre-ordained by the Labeling Agent's explicit instruction to increase difficulty; the same appendix instruction also asks for increased inter-table linking difficulty. The second circular step is narrower: the secondary LLM score for GPT-4o is GPT-4o's own rating, a self-evaluation that does not affect the main F1 rankings. Two data-integrity risks should be noted as non-circular concerns: Definition 2's exclusiveness guarantee is checked by Step 5's coverage verification and same-family extraction consistency rather than by an independent audit, and Appendix A.4 reports human review by seven PhD candidates without a protocol or inter-annotator agreement. The Limitations section concedes that 'human verification is important for ensuring the quality and realism of synthesized documents.' These are validity risks for the gold instances, not reductions of the benchmark's outputs to its inputs.

Assumptions & free parameters 3 free parameters · 4 assumptions · 0 invented entities

The benchmark's validity rests on the trustworthiness of the BIRD and Spider source databases, on the completeness and exclusiveness of LLM-generated documents, on the faithfulness of LLM-assigned capability labels, and on the validity of LLM and AI-detector judgments. These are domain assumptions rather than standard mathematical axioms, and none of them is independently audited in the submitted text.

free parameters (3)
  • Target label ratio = not reported
    The Labeling Agent prompt requires at least a target ratio of assignable cells and rows to receive capability labels; the ratio controls benchmark difficulty and the taxonomy distribution, but no value or justification is given in the paper (Appendix E.1).
  • Noise level = range [0,1]
    A generation configuration that controls how many distractors appear in documents; it is chosen per instance by the authors and not justified against a real-world baseline.
  • Retry limit for verification loops = not reported
    The Refiner and Validator loops iterate until success or a retry limit, which affects how thoroughly documents are cleaned; the limit is not disclosed.
assumptions (4)
  • domain assumption Ground-truth databases sourced from BIRD and Spider are correct, representative, and remain valid after tuple sampling.
    The entire benchmark assumes these external databases provide trustworthy relational instances; tuple sampling and integrity checks are described in Appendix A.2 but no external audit is reported.
  • domain assumption The LLM-generated documents satisfy completeness and exclusiveness, so the ground-truth database is uniquely recoverable from each document.
    Definition 2 states these conditions; Step 5 uses an LLM Validator and human reviewers to enforce them. If a document omits or adds facts, the gold standard itself is wrong and all model scores are affected.
  • domain assumption Capability labels assigned by the Labeling Agent are faithful and unambiguous.
    The taxonomy and fine-grained diagnosis depend on LLM-assigned labels; the paper provides prompt templates but no inter-annotator agreement or independent verification of label correctness.
  • domain assumption LLM-as-a-judge and commercial AI detectors are valid measures of authenticity and document quality.
    Section 5.4 draws authenticity conclusions from DeepSeek-V3.2 judgments and ZeroGPT/FastGPT scores; the paper does not establish the reliability of these detectors for this purpose, and the ZeroGPT numbers actually differ from the reference baseline.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Beyond Tables: Doc2DB-Bench for Relationally Faithful Document-to-Database Construction." pith.science (2026). https://pith.science/paper/RSPQVUGL

@misc{pith2026260808459,
  author       = {Pith},
  title        = {Pith review of: Beyond Tables: Doc2DB-Bench for Relationally Faithful Document-to-Database Construction},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/RSPQVUGL}},
  note         = {Machine review of arXiv:2608.08459}
}
read the original abstract

Practical AI systems increasingly need to turn long, heterogeneous documents into queryable relational databases, not isolated spreadsheets. In domains such as finance, healthcare, education, transportation, and enterprise operations, downstream workflows rely on normalized schemas, entity identities, keys, cross-table relationships, and integrity constraints for analytics, compliance, auditing, and SQL-backed decision making. Existing Document-to-Table benchmarks are insufficient for this setting: flattening evidence into single tables can duplicate entities, obscure many-to-many relationships, create sparse records, and avoid testing whether extracted facts form a valid database instance. This creates an urgent need to evaluate document understanding as database construction rather than field extraction. We introduce Doc2DB-Bench, a benchmark for Document-to-Database construction, containing 203 long-document instances across 42 schemas and seven domain groups, with 117 entity tables, 132 relationship tables, 7,341 rows, and 41,935 cells. Built through a controllable DB-to-Doc synthesis pipeline and organized by a taxonomy of intra-table extraction and inter-table reasoning, the generated documents undergo authenticity verification, proving indistinguishable from real-world references. Doc2DB-Bench thus provides a testbed for reliable, auditable, and relationally faithful LLM-based data systems. The benchmark is publicly available at https://github.com/SetonLiang/Doc2DB-Bench.

Figures

Figures reproduced from arXiv: 2608.08459 by the authors.

Figure 2
Figure 2. A Taxonomy of Doc2DB Extraction Capabilities. completeness, every ground-truth value and relational tuple in 𝐷 ∗ is supported by evidence in 𝐹; (2) exclusiveness, 𝐹 contains no evidence supporting database facts beyond 𝐷 ∗ under S; and (3) capa￾bility awareness, the evidence for each target value/relational tuple is constructed to require specific reasoning capabilities from H for its recovery, with H formalized as … view at source ↗
Figure 3
Figure 3. Overview of the benchmark construction framework. The rationale behind this design is to separate what should be tested from how it is expressed in documents. Capability assignment determines the target reasoning requirements; evidence decom￾position grounds each target value or tuple in atomic evidence; serialization controls the document structure; generation turns the evidence into realistic long-form text; and v… view at source ↗
Figure 5
Figure 5. Impact of capability annotations on ex￾traction performance. (75.25) and the highest llm score (69.02), indicating strong capability in structured extraction. Claude-opus-4-6 and Gemini-2.5-pro also deliver competitive performance. Notably, GPT-4o shows only moderate results (Overall F1 59.05), falling noticeably short of reasoning-capable models de￾spite its scale. In contrast, open-source models such as Qwen2.5-14… view at source ↗
Figures from the paper (8 more)
Figure 6
Figure 6. Figure 6: Distribution of database scale in Doc2DB-Bench in terms of rows, columns, and cells. A.1 Database Selection and Sourcing We first screen the database pools from BIRD and Spider, selecting databases that are suitable for document-to-database evaluation. Specifically, we…
Figure 7
Figure 7. Figure 7: Representative examples from the finance, healthcare, and education domains. Each case pairs a multi-table relational schema with a domain-specific synthesized document, where colored links illustrate the grounding between database records and document evidence. First,…
Figure 8
Figure 8. Figure 8: Challenging examples of relation extraction that require different inter-table capabilities. domains illustrate the diversity of schema structures, document styles, and cross-table dependencies covered by Doc2DB-Bench. B Details of dual-level Taxonomy Pillar 2 inter-ta…
Figure 9
Figure 9. Figure 9: Database-level performance across Entity Coverage, Relation Coverage, and Reference Integrity Rate [PITH_FULL_IMAGE:figures/full_fig_p018_9.png]
Figure 10
Figure 10. Figure 10: menu case DTBench [51]). We use DeepSeek-V3.2 as the automatic evaluator. In addition, five graduate stu￾dents with research experience in document intelligence independently assess 50 randomly sampled documents using the same rubrics. The LLM and human evaluation res…
Figure 11
Figure 11. Figure 11: finance case [PITH_FULL_IMAGE:figures/full_fig_p024_11.png]
Figure 12
Figure 12. Figure 12: airline case [PITH_FULL_IMAGE:figures/full_fig_p024_12.png]
Figure 13
Figure 13. Figure 13: twitter case [PITH_FULL_IMAGE:figures/full_fig_p024_13.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

81 extracted references · 68 canonical work pages

  1. [1]

    Ahuja, F

    N. Ahuja, F. Bardoliya, C. Baral, and V. Gupta. Map&make: Schema guided text to table generation. In Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pages 30249–30262, 2025

  2. [2]

    Claude opus 4.6 system card

    Anthropic. Claude opus 4.6 system card. https://www-cdn.anthropic.com/ 6a5fa276ac68b9aeb0c8b6af5fa36326e0e166dd/Claude%20Opus%204.6%20System% 20Card.pdf, 2026

  3. [3]

    Llms4synthesis: Leveraginglargelanguagemodels for scientific synthesis

    H.BabaeiGiglou,J.D’Souza,andS.Auer. Llms4synthesis: Leveraginglargelanguagemodels for scientific synthesis. In Proceedings of the 24th ACM/IEEE Joint Conference on Digital Libraries, pages 1–12, 2024

  4. [4]

    G. Bao, Y. Zhao, Z. Teng, L. Yang, and Y. Zhang. Fast-detectgpt: Efficient zero-shot detection of machine-generated text via conditional probability curvature. arXiv preprint arXiv:2310.05130, 2023

  5. [5]

    C. Chai, J. Li, Y. Deng, Y. Zhong, Y. Yuan, G. Wang, and L. Cao. Doctopus: Budget-aware structuraltableextractionfromunstructureddocuments. Proceedings of the VLDB Endowment, 18(11):3695–3707, 2025

  6. [6]

    Z. Chen, Z. Gu, L. Cao, J. Fan, S. Madden, and N. Tang. Symphony: Towards natural language query answering over multi-modal data lakes. InCIDR, pages 1–7, 2023

  7. [7]

    Comanici, E

    G. Comanici, E. Bieber, M. Schaekermann, I. Pasupat, N. Sachdeva, I. Dhillon, M. Blistein, O. Ram, D. Zhang, E. Rosen, et al. Gemini 2.5: Pushing the frontier with advanced rea- soning, multimodality, long context, and next generation agentic capabilities.arXiv preprint arXiv:2507.06261, 2025

  8. [8]

    C. Deng, J. Yuan, P. Bu, P. Wang, Z.-Z. Li, J. Xu, X.-H. Li, Y. Gao, J. Song, B. Zheng, et al. Longdocurl: a comprehensive multimodal long document benchmark integrating understand- ing, reasoning, and locating. InProceedings of the 63rd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pages 1135–1159, 2025

Show all 81 references
  1. [9]

    Z. Deng, C. Chan, W. Wang, Y. Sun, W. Fan, T. Zheng, Y. Yim, and Y. Song. Text-tuple- table: Towardsinformationintegrationintext-to-tablegenerationviaglobaltupleextraction. In Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing , pages 9300–9...

  2. [10]

    K. Dong, Y. Chang, S. Huang, Y. Wang, R. Tang, and Y. Liu. Benchmarking retrieval- augmented multimodal generation for document question answering. arXiv preprint arXiv:2505.16470, 2025

  3. [11]

    X. Dong, E. Gabrilovich, G. Heitz, W. Horn, N. Lao, K. Murphy, T. Strohmann, S. Sun, and W. Zhang. Knowledge vault: A web-scale approach to probabilistic knowledge fusion. In Proceedings of the 20th ACM SIGKDD international conference on Knowledge discovery and data mining, pa...

  4. [12]

    Introducing langextract.https://langextract.net, 2025

    Google. Introducing langextract.https://langextract.net, 2025

  5. [13]

    Wiki-40b: Multilinguallanguagemodeldataset

    M.Guo,Z.Dai,D.Vrandečić,andR.Al-Rfou. Wiki-40b: Multilinguallanguagemodeldataset. In Proceedings of the Twelfth Language Resources and Evaluation Conference , pages 2440– 2452, 2020

  6. [14]

    Langchain

    Harrison Chase. Langchain. https://github.com/langchain-ai/langchain, 2022

  7. [15]

    J. Hobbs. Fastus: A finite-state processor for information extraction from real-world text. Inl JOINT CONFERENCE ONl, 1993

  8. [16]

    Hayes, A

    A.Hurst, A.Lerer, A.P.Goucher, A.Perelman, A.Ramesh, A.Clark, A.Ostrow, A.Welihinda, A. Hayes, A. Radford, et al. Gpt-4o system card.arXiv preprint arXiv:2410.21276, 2024

  9. [17]

    P. Jain, A. Marzoca, and F. Piccinno. Structsum generation for faster text comprehension. In Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Vol- ume 1: Long Papers), pages 7876–7896, 2024

  10. [18]

    Y. Jiao, M. Zhong, S. Li, R. Zhao, S. Ouyang, H. Ji, and J. Han. Instruct and extract: In- struction tuning for on-demand information extraction. InProceedings of the 2023 Conference on Empirical Methods in Natural Language Processing , pages 10030–10051. Association for Compu...

  11. [19]

    Kashyap, S

    S. Kashyap, S. Shirai, N. Mihindukulasooriya, and H. Samulowitz. Structtext: A synthetic table-to-text approach for benchmark generation with multi-dimensional evaluation.CoRR, abs/2507.21340, 2025

  12. [20]

    J. Lao, A. Zimmerer, O. Ovcharenko, T. Cong, M. Russo, G. Vitagliano, M. Cochez, F. Özcan, G. Gupta, T. Hottelier, et al. Sembench: A benchmark for semantic query processing engines. arXiv preprint arXiv:2511.01716, 2025

  13. [21]

    T. Lee, Z. Wang, H. Wang, and S.-w. Hwang. Attribute extraction and scoring: A probabilistic approach. In 2013 IEEE 29th International Conference on Data Engineering (ICDE) , pages 194–205. IEEE, 2013

  14. [22]

    B. Li, Z. Liang, Y. Xie, X. Lin, T. Luo, X. Liu, Y. Zhu, Z. Peng, Y. Li, Z. Zhang, et al. Datas- pace: Benchmarking data agents for verifiable analytics over heterogeneous workspaces.arXiv preprint arXiv:2608.03451, 2026

  15. [23]

    J. Li, B. Hui, G. Qu, J. Yang, B. Li, B. Li, B. Wang, B. Qin, R. Geng, N. Huo, et al. Can llm alreadyserveasadatabaseinterface? abigbenchforlarge-scaledatabasegroundedtext-to-sqls. Advances in Neural Information Processing Systems, 36:42330–42357, 2023

  16. [24]

    Y. Li, L. Song, and C. Zhang. Sparse conditional hidden markov model for weakly supervised named entity recognition. InProceedings of the 28th ACM SIGKDD conference on knowledge discovery and data mining, pages 978–988, 2022

  17. [25]

    Z. Li, X. Chen, H. Yu, H. Lin, Y. Lu, Q. Tang, F. Huang, X. Han, L. Sun, and Y. Li. Struc- trag: Boosting knowledge intensive reasoning of llms via inference-time hybrid information structurization. In International Conference on Learning Representations, volume 2025, pages 36...

  18. [26]

    Liang, X

    Z. Liang, X. Lin, Z. Zhang, Y. Luo, H. Wang, and N. Tang. Long-document qa with chain-of- structured-thought and fine-tuned slms.arXiv preprint arXiv:2603.29232, 2026

  19. [27]

    Shahout, et al

    C.Liu,M.Russo,M.Cafarella,L.Cao,P.B.Chen,Z.Chen,M.Franklin,T.Kraska,S.Madden, R. Shahout, et al. Palimpzest: Optimizing ai-powered analytics with declarative query process- ing. In Proceedings of the Conference on Innovative Database Research (CIDR), page 2, 2025

  20. [28]

    Unstructured data extraction: Turn documents into insights

    LlamaIndex. Unstructured data extraction: Turn documents into insights. https://www. llamaindex.ai/blog/unstructured-data-extraction, 2024

  21. [29]

    Y. Ma, Y. Zang, L. Chen, M. Chen, Y. Jiao, X. Li, X. Lu, Z. Liu, Y. Ma, X. Dong, et al. Mmlongbench-doc: Benchmarking long-context document understanding with visualizations. Advances in Neural Information Processing Systems, 37:95963–96010, 2024

  22. [30]

    Muscolino, A

    H. Muscolino, A. Machado, D. Vesset, and J. Rydning. What every executive needs to know about unstructured data. Technical report, IDC Corp., sponsored by Box Inc., Aug. 2023. https://www.storagenewsletter.com/2023/09/07/ what-every-executive-needs-to-know-about-unstructured-data/

  23. [31]

    Novikova, O

    J. Novikova, O. Dusek, and V. Rieser. The E2E dataset: New challenges for end-to-end gener- ation. In Proceedings of the 18th Annual SIGdial Meeting on Discourse and Dialogue , pages 201–206. Association for Computational Linguistics, 2017

  24. [32]

    Patel, S

    L. Patel, S. Jha, M. Pan, H. Gupta, P. Asawa, C. Guestrin, and M. Zaharia. Semantic operators and their optimization: Enabling llm-based data processing with accuracy guarantees in lotus. Proceedings of the VLDB Endowment, 18(11):4171–4184, 2025

  25. [33]

    N. Peng, H. Poon, C. Quirk, K. Toutanova, and W.-t. Yih. Cross-sentence n-ary relation extrac- tion with graph lstms.Transactions of the Association for Computational Linguistics , 5:101– 115, 2017

  26. [34]

    C. D. Sa, C. Zhang, J. Shin, and C. Ré. Deepdive: Declarative knowledge base construction. SIGMOD Record, 45(1):60–67, 2016

  27. [35]

    Sadia, Z

    M. Sadia, Z. Yang, Y. Xiao, A. Chen, and A. R. Chowdhury. Squid: Synthesizing relational databases from unstructured text. In C. Christodoulopoulos, T. Chakraborty, C. Rose, and V. Peng, editors,Proceedings of the 2025 Conference on Empirical Methods in Natural Lan- guage Proc...

  28. [36]

    Shankar, T

    S. Shankar, T. Chambers, T. Shah, A. G. Parameswaran, and E. Wu. Docetl: Agentic query rewriting and evaluation for complex document processing.arXiv preprint arXiv:2410.12189, 2024

  29. [37]

    J. Shin, S. Wu, F. Wang, C. De Sa, C. Zhang, and C. Ré. Incremental knowledge base con- struction using deepdive. InProceedings of the VLDB Endowment International Conference on Very Large Data Bases, volume 8, page 1310, 2015

  30. [38]

    Subramaniyaswamy, V

    V. Subramaniyaswamy, V. Vijayakumar, R. Logesh, and V. Indragandhi. Unstructured data analysis on big data using map reduce.Procedia Computer Science, 50:456–465, 2015

  31. [39]

    X. Tang, Y. Zong, J. Phang, Y. Zhao, W. Zhou, A. Cohan, and M. Gerstein. Struc-bench: Are large language models good at generating complex structured tabular data? InProceedings of the 2024 Conference of the North American Chapter of the Association for Computational Linguisti...

  32. [40]

    Challengesindata-to-documentgeneration

    S.Wiseman, S.M.Shieber, andA.M.Rush. Challengesindata-to-documentgeneration. arXiv preprint arXiv:1707.08052, 2017

  33. [41]

    F. Wu, R. Hoffmann, and D. S. Weld. Information extraction from wikipedia: Moving down thelongtail. In Proceedings of the 14th ACM SIGKDD international conference on Knowledge discovery and data mining, pages 731–739, 2008

  34. [42]

    A. Xu, B. Lin, B. Xue, B. Wang, B. Xu, B. Wu, B. Zhang, C. Lin, C. Dong, C. Ling, et al. Deepseek-v4: Towards highly efficient million-token context intelligence. arXiv preprint arXiv:2606.19348, 2026

  35. [43]

    D. Xu, W. Chen, W. Peng, et al. Large language models for generative information extraction: A survey. Frontiers of Computer Science, 18, 2024. https://journal.hep.com.cn/fcs/ EN/10.1007/s11704-024-40555-y

  36. [44]

    A. Yang, B. Yang, B. Zhang, B. Hui, B. Zheng, B. Yu, C. Li, D. Liu, F. Huang, H. Wei, H. Lin, J. Yang, J. Tu, J. Zhang, J. Yang, J. Yang, J. Zhou, J. Lin, K. Dang, K. Lu, K. Bao, K. Yang, L. Yu, M. Li, M. Xue, P. Zhang, Q. Zhu, R. Men, R. Lin, T. Li, T. Xia, X. Ren, X. Ren, Y....

  37. [45]

    T. Yu, R. Zhang, K. Yang, M. Yasunaga, D. Wang, Z. Li, J. Ma, I. Li, Q. Yao, S. Roman, et al. Spider: A large-scale human-labeled dataset for complex and cross-domain semantic parsing and text-to-sql task. In Proceedings of the 2018 conference on empirical methods in natural l...

  38. [46]

    T. Zeng, Y. Hong, Z. Ding, D. Liu, Y. Mei, Y. Su, Y. Wang, X. Zhang, J. Zhu, J. Zhu, et al. Qwenpaw-data: Bridging facts, methodology, and execution for autonomous enterprise data analytics. arXiv preprint arXiv:2607.11019, 2026

  39. [47]

    Zhang, Z

    Z. Zhang, Z. Liang, J. Chen, H. Wang, and N. Tang. Document-to-database: Extraction meets relational semantics. volume 19, pages 2522–2535. VLDB Endowment, 2026

  40. [48]

    Datamosaic: Explainableandverifiable multi-modal data analytics through extract-reason-verify

    Z.Zhang,Z.Liang,Y.Wu,T.Lin,Y.Luo,andN.Tang. Datamosaic: Explainableandverifiable multi-modal data analytics through extract-reason-verify. arXiv e-prints, pages arXiv–2504, 2025

  41. [49]

    Zheng, S

    G. Zheng, S. Mukherjee, X. L. Dong, and F. Li. Opentag: Open attribute value extraction from product profiles. InProceedings of the 24th ACM SIGKDD international conference on knowledge discovery & data mining, pages 1049–1058, 2018

  42. [50]

    Zheng, W.-L

    L. Zheng, W.-L. Chiang, Y. Sheng, S. Zhuang, Z. Wu, Y. Zhuang, Z. Lin, Z. Li, D. Li, E. Xing, et al. Judging llm-as-a-judge with mt-bench and chatbot arena.Advances in neural information processing systems, 36:46595–46623, 2023

  43. [51]

    DTBench: A synthetic benchmark for document-to-table extraction, 2026

    ZJU-DAILY. DTBench: A synthetic benchmark for document-to-table extraction, 2026. https://arxiv.org/abs/2602.13812

  44. [52]

    Acme Corp reported revenue of $125.0 million and net income of $18.2 million,

    A. Zou, W. Yu, H. Zhang, K. Ma, D. Cai, Z. Zhang, H. Zhao, and D. Yu. Docbench: A bench- mark for evaluating llm-based document reading systems. InProceedings of the 4th Interna- tional Workshop on Knowledge-Augmented Methods for Natural Language Processing , pages 359–373, 20...

  45. [53]

    Assignlabelsthatincreasesingle-tableextractiondif- ficulty while preserving correctness

  46. [54]

    Only assign strategies logically/- mathematically suitable for the cell’s value

    T ype-Strategy Compatibility (CRITICAL): Inde- pendently analyze the semantic nature and data type of each attribute. Only assign strategies logically/- mathematically suitable for the cell’s value

  47. [55]

    A cell may have 0, 1, or multiple strategies (default is none)

  48. [56]

    Avoid over-complicating simple facts

    Assign creatively but ensure text remains fluent. Avoid over-complicating simple facts

  49. [57]

    DO NOT assign labels to Non-target Key Columns

  50. [58]

    For composite primary keys, use", " as separator

  51. [59]

    Label coverage: at least the target ratio of assignable cells must have non-empty labels

  52. [60]

    assignments

    Return JSON only. Output JSON Schema: {"assignments": {" <pk_1>": {" <attr_1>": []} } } Pillar 2 Assignment Prompt Goal: Assign inter-table (Pillar 2) capability labels to target cells in the relation table. Inputs: • Input Table: {markdown_table} • Table Schema Context: {rela...

  53. [61]

    Assign labels that increase inter-table linking, topol- ogy, and structural extraction difficulty

  54. [62]

    Only assign rela- tional strategies logically suitable for the topology

    Topology-Strategy Compatibility (CRITICAL): Analyze structural distribution. Only assign rela- tional strategies logically suitable for the topology

  55. [63]

    Do NOT output per-attribute labels

    Output ONLY row-level labels per relation row_key. Do NOT output per-attribute labels

  56. [64]

    A row may have 0, 1, or multiple strategies (default is none)

  57. [65]

    Top-level key MUST use the relation table PK string

  58. [66]

    Composite keys format:<pk1>, <pk2> (e.g., 12, 10)

  59. [67]

    Label coverage: at least the target ratio of rows must contain non-empty labels

  60. [68]

    assignments

    Return JSON only. Output JSON Schema: {"assignments": {" <pk_1>": [], " <pk_2>": []} } The prompt above illustrates how the Labeling Agent acts as a semantic router to assign fine-grained intra-table (Pillar 1) and inter-table (Pillar 2) capability labels. It explicitly instru...

  61. [69]

    FACTUAL FIDELITY: Embed all mandatory facts without altering their meaning

  62. [70]

    TAG PRESERVATION: Keep facts wrapped in their original tags (e.g., <rX_cY>)

  63. [71]

    STYLISTIC ADAPTATION: Match the requested style, tone, and template

  64. [72]

    PROTOCOL COMPLIANCE: Strictly follow any active injection protocols; ignore empty ones

  65. [73]

    LENGTH & PACING: Stay close to the{target_block_tokens} budget

  66. [74]

    SEAMLESS BRIDGING: Continue logically and smoothly from the previous context

  67. [75]

    No bullets, markdown, or JSON

    FORMATTING: Use natural prose paragraphs. No bullets, markdown, or JSON

  68. [76]

    OUTPUT STRUCTURE: Start exactly with the Section Title, followed by the body

  69. [77]

    ok": true/false,

    FINAL OUTPUT: Return ONLY the synthesized text, without conversational filler. The prompt above demonstrates how the Writer Agent transforms serialized atomic evidence into cohesive, long-form natural language documents. It guides the model to employ a context-aware generation...

  70. [78]

    Repair the section to fix the reported errors

  71. [79]

    Ensure all required facts remain correct

  72. [80]

    Keep the narrative flow natural

  73. [81]

    Output Format: Return ONLY the repaired text content

    Preserve all provenance-style tags already present in the original text. Output Format: Return ONLY the repaired text content. No titles, no metadata, no markdown code blocks. The prompt above details the rigorous dual-validation protocol executed by the Validator Agent to gua...

Pith tools

Reviewed August 14, 2026 · model on record in the stance chip above.