Beyond Logprobs: A Multi-Signal Confidence Engine for LLM-Based Document Field Extraction
Reviewed by Pith T0 review T1 audit T2 compute T3 formal T4 kernel 2026-06-25 23:50 UTCgrok-4.3pith:3443LEDArecord.jsonopen to challenge →
The pith
ExtractConf uses disagreement between two structurally different LLM readings of a document to estimate per-field extraction trustworthiness.
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
ExtractConf is a field-agnostic classifier that grounds confidence in the structural asymmetry between a schema-slot Hunter call and a holistic Mapper call on the identical document. Because the two calls induce distinct failure modes, their disagreement is treated as an additional informative feature alongside internal LLM uncertainty, OCR output, image quality, and spatial layout; the resulting model requires no domain rules or retraining and directly supports selective automation versus human review.
What carries the argument
The ExtractConf classifier that fuses Hunter-Mapper disagreement with LLM uncertainty, OCR, and layout signals.
If this is right
- On DocILE invoices the fused model reaches 0.928 ROC AUC and cuts selective-prediction risk 70 percent versus log-probability mean.
- At 80 percent coverage the method attains 99.1 percent accuracy, supporting a practical human-in-the-loop workflow.
- Zero-shot application to CORD receipts yields 0.858 AUC without retraining.
- Lightweight Lasso recalibration on the target domain reduces ECE by 89 percent and Brier score by 43 percent.
Where Pith is reading between the lines
- The same dual-call structure could be applied to other structured LLM outputs where multiple prompt framings are feasible.
- The approach indicates that deliberate prompt asymmetry can serve as a general, training-free source of uncertainty information.
- Further testing on tables, forms, or multi-page contracts would clarify how far the disagreement signal generalizes beyond invoices and receipts.
Load-bearing premise
The disagreement produced by the two different LLM calls on the same document supplies information about extraction errors that is not already captured by the other fused signals.
What would settle it
If a new document corpus with comparable field-extraction failure rates shows that ExtractConf ROC AUC is no higher than the log-probability-mean baseline, the value of the cross-call disagreement signal would be refuted.
Figures
read the original abstract
In high-stakes document processing pipelines, including financial reconciliation, compliance verification, and procurement automation, an LLM extraction that is silently wrong is more dangerous than one that is visibly absent. The central challenge is not extraction accuracy alone but reliable confidence estimation: knowing, field by field, whether an extraction can be trusted for automation or deferred to human review. Token-level log-probabilities, verbalized confidence, and multi-sample self-consistency all collapse toward all-positive behaviour at practical thresholds, offering no reliable separation between trustworthy and untrustworthy extractions. We present ExtractConf, a cross-domain, field-agnostic confidence engine that grounds confidence estimation in two structurally different readings of the same document. A field-guided Hunter call extracts each field under schema-slot completion pressure; a document-guided Mapper call scans holistically and surfaces values grounded in document content. This asymmetry yields different failure modes: Hunter hallucinates values for absent fields, while Mapper misses visually non-salient ones. Their disagreement is independently informative. ExtractConf fuses cross-call disagreement, LLM-internal uncertainty, OCR, image quality, and spatial layout into a classifier requiring no domain-specific rules or retraining. On DocILE (55-field invoices, 26% failure rate), it achieves 0.928 ROC AUC and reduces selective prediction risk by 70% over logprob-mean. At 80% coverage, accuracy reaches 99.1%, enabling a practical human-in-the-loop workflow. Zero-shot transfer to CORD receipts achieves 0.858 AUC; lightweight Lasso recalibration reduces ECE by 89% and Brier by 43%, confirming the signals generalise across document domains.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces ExtractConf, a field-agnostic confidence engine for LLM-based document field extraction. It grounds confidence in disagreement between a field-guided Hunter LLM call (under schema-slot pressure) and a document-guided Mapper call (holistic scan), fused with LLM-internal uncertainty, OCR quality, image quality, and spatial layout signals into a classifier. On the DocILE dataset (55-field invoices, 26% failure rate), it reports 0.928 ROC AUC, 70% selective prediction risk reduction versus logprob-mean baseline, and 99.1% accuracy at 80% coverage. Zero-shot transfer to CORD yields 0.858 AUC, with Lasso recalibration reducing ECE by 89% and Brier score by 43%.
Significance. If the empirical results and independence of the Hunter-Mapper disagreement signal hold after verification, the work offers a practical, cross-domain method for reliable per-field confidence in high-stakes LLM document extraction pipelines. This could meaningfully improve human-in-the-loop workflows by reducing silent errors in financial and compliance applications. The reported gains over logprob baselines and the zero-shot transfer with recalibration are notable strengths if reproducible; the multi-signal fusion approach, if shown to leverage the claimed structural asymmetry, would advance confidence estimation beyond single-signal methods.
major comments (2)
- [Abstract and experimental results] Abstract and experimental results: the claim that Hunter-Mapper disagreement is 'independently informative' and drives the reported 0.928 AUC and 70% risk reduction lacks supporting evidence such as ablation studies (removing the disagreement feature), feature-importance scores, or correlation analysis with the other fused signals (LLM uncertainty, OCR, layout). Without this, the performance could be explained by the non-asymmetry signals alone, leaving the core methodological contribution unverified.
- [Methods and results sections] Methods and results sections: no details are provided on data splits, classifier training procedure (e.g., which model, hyperparameters, cross-validation), exact feature definitions for the disagreement metric, or post-hoc selection of thresholds. These omissions make the AUC, risk-reduction, and coverage numbers impossible to reproduce or assess for overfitting, directly undermining the central empirical claims.
minor comments (2)
- [Abstract] The abstract mentions 'lightweight recalibration' on CORD but does not specify the exact procedure or whether it was applied only to the test set; clarify to avoid appearance of data leakage.
- [Methods] Notation for the fused classifier (e.g., how disagreement is quantified as a numeric feature) is not introduced in the provided abstract; ensure consistent definitions appear early in the methods.
Simulated Author's Rebuttal
We thank the referee for the constructive feedback highlighting the need for stronger empirical support of the core contribution and improved methodological transparency. We will revise the manuscript to incorporate the requested evidence and details.
read point-by-point responses
-
Referee: [Abstract and experimental results] Abstract and experimental results: the claim that Hunter-Mapper disagreement is 'independently informative' and drives the reported 0.928 AUC and 70% risk reduction lacks supporting evidence such as ablation studies (removing the disagreement feature), feature-importance scores, or correlation analysis with the other fused signals (LLM uncertainty, OCR, layout). Without this, the performance could be explained by the non-asymmetry signals alone, leaving the core methodological contribution unverified.
Authors: We agree that the manuscript currently lacks explicit ablation studies, feature-importance analysis, or correlation metrics isolating the Hunter-Mapper disagreement signal. While the paper provides theoretical motivation based on the structural asymmetry in failure modes (Hunter under schema pressure vs. Mapper holistic scan), this does not substitute for empirical verification. In revision we will add: (1) an ablation removing the disagreement feature and reporting the AUC and risk-reduction delta; (2) feature-importance scores (e.g., from the trained classifier); and (3) pairwise correlation analysis among all signals. These additions will directly test whether the disagreement signal contributes independently. revision: yes
-
Referee: [Methods and results sections] Methods and results sections: no details are provided on data splits, classifier training procedure (e.g., which model, hyperparameters, cross-validation), exact feature definitions for the disagreement metric, or post-hoc selection of thresholds. These omissions make the AUC, risk-reduction, and coverage numbers impossible to reproduce or assess for overfitting, directly undermining the central empirical claims.
Authors: We acknowledge the absence of these implementation details in the current version, which prevents full reproducibility. In the revised manuscript we will expand the Methods section to specify: the exact train/validation/test splits on DocILE (and how CORD was used for zero-shot evaluation), the classifier architecture and hyperparameters together with cross-validation procedure, precise mathematical definitions of every feature (including the disagreement metric), and the criterion used for threshold selection. We will also release the feature-extraction code and trained model weights to support verification. revision: yes
Circularity Check
No circularity; empirical results on external benchmarks
full rationale
The paper presents ExtractConf as a fused classifier using disagreement between Hunter and Mapper calls plus other signals, then reports ROC AUC, risk reduction, and calibration metrics on the public DocILE and CORD datasets. No equations, fitted parameters, or self-citations are shown to define the target quantities by construction; the central claim rests on external evaluation rather than internal redefinition or tautological prediction. The absence of ablations on signal independence is an evidence gap, not a circularity reduction.
Axiom & Free-Parameter Ledger
axioms (1)
- domain assumption Disagreement between field-guided Hunter and document-guided Mapper calls is independently informative of extraction quality
Reference graph
Works this paper leans on
-
[1]
Perot et al.LMDX: Language Model-based Document Information Extraction and Localization
V . Perot et al.LMDX: Language Model-based Document Information Extraction and Localization. ACL Findings, 2024; arXiv:2309.10952
-
[2]
S. Šimsa et al.DocILE Benchmark for Document Information Localization and Extraction.ICDAR, 2023; arXiv:2302.05658
-
[3]
Reflect then Learn: Active Prompting for Information Extraction Guided by Introspective Confusion
(Authors).Reflect then Learn: Active Prompting for IE Guided by Introspective Confusion. arXiv:2508.10036, 2025
work page internal anchor Pith review Pith/arXiv arXiv 2025
-
[4]
Geifman and R
Y . Geifman and R. El-Yaniv.Selective Prediction in Deep Neural Networks.NeurIPS, 2017
2017
-
[5]
Corbière et al.Addressing Failure Prediction by Learning Model Confidence.NeurIPS, 2019
C. Corbière et al.Addressing Failure Prediction by Learning Model Confidence.NeurIPS, 2019
2019
-
[6]
Geifman and R
Y . Geifman and R. El-Yaniv.SelectiveNet: A Deep Neural Network with an Integrated Reject Option. ICML, 2019
2019
-
[7]
H. S. Seung, M. Opper, and H. Sompolinsky.Query by Committee.COLT, 1992
1992
-
[8]
Blum and T
A. Blum and T. Mitchell.Combining Labeled and Unlabeled Data with Co-training.COLT, 1998
1998
-
[9]
Lakshminarayanan, A
B. Lakshminarayanan, A. Pritzel, and C. Blundell.Simple and Scalable Predictive Uncertainty Estima- tion using Deep Ensembles.NeurIPS, 2017
2017
-
[10]
Li et al.Evaluating Object Hallucination in Large Vision-Language Models.EMNLP, 2023
Y . Li et al.Evaluating Object Hallucination in Large Vision-Language Models.EMNLP, 2023
2023
-
[11]
Min et al.FActScore: Fine-grained Atomic Evaluation of Factual Precision in Long Form Text Generation.EMNLP, 2023
S. Min et al.FActScore: Fine-grained Atomic Evaluation of Factual Precision in Long Form Text Generation.EMNLP, 2023
2023
-
[12]
Gero et al.Self-Verification Improves Few-Shot Clinical Information Extraction.ACL Workshop on Clinical NLP, 2023
K. Gero et al.Self-Verification Improves Few-Shot Clinical Information Extraction.ACL Workshop on Clinical NLP, 2023
2023
- [13]
-
[14]
M. Rombach and M. Mehdiyev.Beyond Accuracy: Understanding Model Confidence in Key Informa- tion Extraction with Conformal Prediction.IJDAR, 2026; doi:10.1007/s10032-026-00572-y
-
[15]
Hemmer et al.Confidence-Aware Document OCR Error Detection.DAS/ICDAR, 2024; arXiv:2409.04117
A. Hemmer et al.Confidence-Aware Document OCR Error Detection.DAS/ICDAR, 2024; arXiv:2409.04117
-
[16]
C. L. Willis et al.Automated Information Extraction from Plant Specimen Labels using OCR and Large Language Models.PMC12835874, 2025
2025
- [17]
- [18]
-
[19]
Farquhar et al.Detecting Hallucinations in Large Language Models using Semantic Entropy
S. Farquhar et al.Detecting Hallucinations in Large Language Models using Semantic Entropy. Nature, 630, 2024
2024
-
[20]
Language Models (Mostly) Know What They Know
S. Kadavath et al.Language Models (Mostly) Know What They Know.arXiv:2207.05221, 2022
work page internal anchor Pith review Pith/arXiv arXiv 2022
-
[21]
K. Tian et al.Just Ask for Calibration.EMNLP, 2023; arXiv:2305.14975
work page Pith review arXiv 2023
-
[22]
A. Jagannatha and H. Yu.Calibrating Structured Output Predictors for NLP .ACL, 2020; arXiv:2004.04361
-
[23]
Nixon et al.Measuring Calibration in Deep Learning.CVPR Workshops, 2019
J. Nixon et al.Measuring Calibration in Deep Learning.CVPR Workshops, 2019
2019
-
[24]
Kull et al.Beyond Temperature Scaling.NeurIPS, 2019
M. Kull et al.Beyond Temperature Scaling.NeurIPS, 2019
2019
-
[25]
Park et al.CORD: A Consolidated Receipt Dataset for Post-OCR Parsing.NeurIPS Workshop, 2019
S. Park et al.CORD: A Consolidated Receipt Dataset for Post-OCR Parsing.NeurIPS Workshop, 2019. 10
2019
-
[26]
Huang et al.ICDAR 2019 Competition on Scanned Receipt OCR and Information Extraction.ICDAR, 2019
Z. Huang et al.ICDAR 2019 Competition on Scanned Receipt OCR and Information Extraction.ICDAR, 2019
2019
-
[27]
Prokhorenkova et al.CatBoost: Unbiased Boosting with Categorical Features.NeurIPS, 2018
L. Prokhorenkova et al.CatBoost: Unbiased Boosting with Categorical Features.NeurIPS, 2018
2018
-
[28]
Wang et al.Self-Consistency Improves Chain of Thought Reasoning.ICLR, 2023
X. Wang et al.Self-Consistency Improves Chain of Thought Reasoning.ICLR, 2023
2023
-
[29]
Feature names correspond to column headers in the pipeline output and to the feature importance plot in Figure 4a
Feature Reference Table Table 3 provides a complete reference for all features used in EXTRACTCONF, grouped by signal category. Feature names correspond to column headers in the pipeline output and to the feature importance plot in Figure 4a. Table 3:Complete feature reference for EXTRACTCONF. H =Huntercall, M =Mappercall. Feature Name Group Description G...
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.