@jerryjliu0: A new set of open-weight models is topping the leaderboard for document understanding INF just released two models: Inf…
Summary
Infinity releases two open-weight models, Infinity-Parser2-Pro (35B) and Infinity-Parser2-Flash (2B), which top the ParseBench leaderboard for document understanding, leveraging a synthetic data engine and a novel joint RL algorithm.
View Cached Full Text
Cached at: 05/15/26, 11:09 PM
A new set of open-weight models is topping the leaderboard for document understanding INF just released two models: Infinity-Parser2-Pro (35B) and Infinity-Parser2-Flash (2B) that top our @huggingface leaderboard for ParseBench. Two key insights: An expanded synthetic data engine over 5 million diverse parsing samples A novel Joint RL algorithm that co-optimizes multiple complex tasks: document parsing, element parsing, chart parsing, and more. ParseBench is an open benchmark designed to test semantic document understanding over real-world enterprise documents; it has comprehensive metrics over tables, charts, semantic formatting, and more. Come check out the results on ParseBench! HuggingFace : https://huggingface.co/datasets/llamaindex/ParseBench… Site: https://parsebench.ai Infinity-Parser Flash model: https://huggingface.co/infly/Infinity-Parser2-Flash…
llamaindex/ParseBench · Datasets at Hugging Face
Source: https://huggingface.co/datasets/llamaindex/ParseBench
![]()
Quick links:[🌐 Website][📜 Paper][💻 Code]
ParseBenchis a benchmark for evaluating document parsing systems on real-world enterprise documents, with the following characteristics:
- **Multi-dimensional evaluation.**The benchmark is stratified into five capability dimensions — tables, charts, content faithfulness, semantic formatting, and visual grounding — each with task-specific metrics designed to capture what agentic workflows depend on.
- **Real-world enterprise documents.**The evaluation set contains ~2,000 human-verified pages from over 1,200 publicly available documents spanning insurance, finance, government, and other domains, ranging from straightforward to adversarially hard.
- **Dense test coverage.**Over 169K test rules across the five dimensions, providing fine-grained diagnostic power over precisely where a parser breaks down.
- **Human-verified annotations.**All annotations are produced through a two-pass pipeline: frontier VLM auto-labeling followed by targeted human correction.
- **Evaluation code suite.**The benchmark ships with a full evaluation framework supporting end-to-end pipeline evaluation, per-dimension scoring, and cross-pipeline comparison. The evaluation code can be found atParseBench.
https://huggingface.co/datasets/llamaindex/ParseBench#dataset-introductionDataset Introduction
ParseBench comprises ~2,000 human-verified, annotated pages drawn from publicly available enterprise documents spanning insurance, finance, government, and other domains. The benchmark is stratified into five capability dimensions, each targeting a failure mode that consistently breaks production agentic workflows:
- **Tables.**Structural fidelity of merged cells and hierarchical headers. A single shifted header or merged-cell error causes an agent to extract values from the wrong column, silently corrupting financial analysis.
- **Charts.**Exact data point extraction with correct labels from bar, line, pie, and compound charts. Agents need precise numerical values rather than natural-language descriptions.
- **Content Faithfulness.**Omissions, hallucinations, and reading-order violations. Dropped or fabricated content means the agent acts on wrong context.
- **Semantic Formatting.**Preservation of inline formatting that carries meaning: strikethrough (marks superseded content), superscript/subscript (footnote references, chemical formulae), bold (defined terms, key values), titles, LaTeX, and code blocks.
- **Visual Grounding.**Tracing every extracted element back to its precise source location on the page. Required for auditability in regulated workflows.
DimensionMetricPagesDocsRulesTablesGTRM (GriTS + TableRecordMatch)503284---ChartsChartDataPointMatch568994,864Content FaithfulnessContent Faithfulness Score506506141,322Semantic FormattingSemantic Formatting Score4764765,997Layout (Visual Grounding)Element Pass Rate50032116,325Total (unique)2,0781,211****169,011 Content Faithfulness and Semantic Formatting share the same 507 underlying text documents, evaluated with different rule sets. Totals reflect unique pages and documents. Tables uses a continuous metric (no discrete rules).
https://huggingface.co/datasets/llamaindex/ParseBench#usageUsage
You can use ourevaluation frameworkto run evaluations across the five dimensions:
- Tables— GTRM (average of GriTS and TableRecordMatch): GriTS measures structural similarity; TableRecordMatch treats tables as bags of records and scores structural fidelity
- Charts— ChartDataPointMatch: verifies annotated data points against the parser’s table output
- Content Faithfulness— Rule-based detection of omissions, hallucinations, and reading-order violations at word, sentence, and digit granularities
- Semantic Formatting— Verification of formatting preservation (bold, strikethrough, superscript/subscript, titles, LaTeX, code blocks)
- Visual Grounding— Joint evaluation of localization (IoA), classification, and attribution
The evaluation dataset files include:
- chart.jsonl— 4,864 chart data point spot-check rules across 568 pages
- table.jsonl— 503 ground-truth HTML tables for structural evaluation
- text_content.jsonl— 141,322 content faithfulness rules (omission, hallucination, reading order) across 506 pages
- text_formatting.jsonl— 5,997 formatting preservation rules across 476 pages
- layout.jsonl— 16,325 layout element and reading order rules across 500 pages
- docs/— Source documents (PDF, JPG, PNG) organized by category
Dataset FormatThe dataset format is JSONL, with one line per test rule. The structure and field explanations:
{
"pdf": "docs/chart/report_p41.pdf", // Relative path to the source document (PDF, JPG, or PNG)
"category": "chart", // Evaluation category
"id": "unique_rule_id", // Unique identifier for this test rule
"type": "chart_data_point", // Rule type (see below)
"rule": "{...}", // JSON-encoded rule payload with evaluation parameters
"page": null, // Page number (1-indexed), used by layout rules
"expected_markdown": null, // Ground-truth HTML/markdown, used by table rules
"tags": ["need_estimate"] // Document-level tags for filtering and grouping
}
Tags by category:
- chart:
need\_estimate(value requires visual estimation),3d\_chart(3D chart rendering) - table: difficulty (
easy,hard) - text_content / text_formatting: difficulty (
easy,hard) and document type (dense,sparse,simple,multicolumns,ocr,multilang,misc,handwritting) - layout: difficulty (
easy,hard)
Rule types by category:
- chart:
chart\_data\_point— a spot-check data point specifying a numerical value and one or more labels (series name, x-axis category) that should be locatable in the parser’s table output, with a configurable tolerance. - table:
expected\_markdown— ground-truth HTML table structure. Evaluation treats tables as bags of records (rows keyed by column headers). - layout:
layout(bounding box + semantic class + content + reading order index),order(pairwise reading order assertion). - text_content:
missing\_word\_percent,unexpected\_word\_percent,too\_many\_word\_occurence\_percent,missing\_sentence\_percent,unexpected\_sentence\_percent,too\_many\_sentence\_occurence\_percent,bag\_of\_digit\_percent,order,missing\_specific\_word,missing\_specific\_sentence,is\_footer,is\_header - text_formatting:
is\_bold,is\_italic,is\_underline,is\_strikeout,is\_mark,is\_sup,is\_sub,is\_title,title\_hierarchy\_percent,is\_latex,is\_code\_block
Evaluation CategoriesChartrule type —chart\_data\_point:
Each rule specifies an expected numerical value and one or more labels (series name, x-axis category, chart title). A data point is verified if its value and all associated labels can be located in the parser’s table output. Evaluation is insensitive to table orientation (rows and columns can be swapped) and tolerant of numeric formatting differences (currency symbols, unit suffixes, thousands separators). Each data point includes a configurable tolerance since exact value retrieval from charts is often imprecise.
chart_data_point # Spot-check data point: value + labels matched against parser's table output
# Rule fields: labels (list), value (string), max_diffs (int), normalize_numbers (bool)
Table—expected\_markdown:
Each rule provides a ground-truth HTML table. Evaluation uses theTableRecordMatchmetric, which treats a table as a bag of records: each row is a record whose cell values are keyed by their column headers. Ground-truth records are matched to predicted records, and each matched pair is scored by binary cell-level agreement. TableRecordMatch is insensitive to column and row order (which don’t alter key-value relationships), while dropped or transposed headers cause large mismatches and are penalized accordingly.
expected_markdown # Ground-truth HTML table for TableRecordMatch evaluation
# Rule fields: {} (ground truth stored in expected_markdown field)
Text Content rule typesmeasure whether the parser faithfully reproduces textual content:
# Text correctness — omissions and hallucinations
missing_word_percent # Fraction of ground-truth words missing from output
unexpected_word_percent # Fraction of output words not in ground truth (hallucinations)
too_many_word_occurence_percent # Excess word duplications
missing_sentence_percent # Fraction of ground-truth sentences missing
unexpected_sentence_percent # Fraction of output sentences not in ground truth
too_many_sentence_occurence_percent # Excess sentence duplications
bag_of_digit_percent # Digit frequency distribution match (catches OCR errors like 6→8)
missing_specific_word # Binary: specific word present or absent
missing_specific_sentence # Binary: specific sentence present or absent
# Structural
order # Pairwise reading order assertion (before/after)
is_footer # Footer detection
is_header # Header detection
Text Formatting rule typesverify preservation of semantically meaningful formatting:
# Text styling
is_bold # Bold formatting preserved
is_italic # Italic formatting preserved
is_underline # Underline formatting preserved
is_strikeout # Strikethrough preserved (marks superseded content)
is_mark # Highlight/mark preserved
is_sup # Superscript preserved (footnotes, exponents)
is_sub # Subscript preserved (chemical formulae)
# Document structure
is_title # Text appears as heading at correct level
title_hierarchy_percent # Title parent-child hierarchy score
# Special content
is_latex # Mathematical formula in LaTeX notation
is_code_block # Fenced code block with language annotation
Layout rule typesevaluate visual grounding:
layout # Element annotation: bounding box (normalized [0,1]),
# semantic class (Text, Table, Picture, Page-Header, Page-Footer),
# content association, and reading order index
order # Layout-level reading order assertion
Document CategoriesChart documents(568 pages) — bar, line, pie, and compound charts from corporate reports, financial filings, and government publications. The dataset ensures diversity across charts with/without explicit value labels, discrete and continuous series, varying data density, and single vs. multi-chart pages.
Table documents(503 pages) — sourced primarily from insurance filings (SERFF), public financial documents, and government reports. Tables remain embedded in their original PDF pages, preserving the full visual context. The dataset includes merged cells, hierarchical headers, spanning rows, and multi-page tables.
Text documents(508 pages, shared by Content Faithfulness and Semantic Formatting) — one page per document, categorized by tag:
TagDescriptionDocssimpleSimple text with some styling170ocrScanned/image documents, various quality119multicolumns1–8 columns, different layouts97multilang20+ languages, all major scripts47miscUnusual content/layout/reading order33denseDense, large documents (e.g., newspapers)14sparseSparse text content, minimal text per page14handwrittingSignificant handwritten text13
Layout documents(500 pages) — single-column, multi-column, and complex layouts with mixed media (text, images, tables, charts). Includes PDF, JPG, and PNG inputs. Evaluation uses a compact label set: Text, Table, Picture, Page-Header, and Page-Footer.
https://huggingface.co/datasets/llamaindex/ParseBench#submit-results-to-the-leaderboardSubmit Results to the Leaderboard
We welcome and appreciate community contributions to the ParseBenchleaderboard!
To contribute a model’s score, open a PR on the model’s HuggingFace repo adding a\.eval\_results/parsebench\.yamlfile following the format inthis example PR. SeeHuggingFace eval-results docsfor more details.
https://huggingface.co/datasets/llamaindex/ParseBench#data-displayData Display
https://huggingface.co/datasets/llamaindex/ParseBench#chartsCharts
![]()
![]()
![]()
![]()
![]()
### https://huggingface.co/datasets/llamaindex/ParseBench#tablesTables
![]()
![]()
![]()
![]()
![]()
### https://huggingface.co/datasets/llamaindex/ParseBench#layout–visual-groundingLayout & Visual Grounding
![]()
![]()
![]()
![]()
![]()
### https://huggingface.co/datasets/llamaindex/ParseBench#text-content-faithfulness–semantic-formattingText (Content Faithfulness & Semantic Formatting)
![]()
![]()
![]()
![]()
![]()
## https://huggingface.co/datasets/llamaindex/ParseBench#copyright-statementCopyright Statement
All documents are sourced from public online channels. The dataset is released under theApache 2.0 License. If there are any copyright concerns, please contact us via the GitHub repository.
https://huggingface.co/datasets/llamaindex/ParseBench#citationCitation
@misc{zhang2026parsebench,
title={ParseBench: A Document Parsing Benchmark for AI Agents},
author={Boyang Zhang and Sebastián G. Acosta and Preston Carlson and Sacha Bron and Pierre-Loïc Doulcet and Daniel B. Ospina and Simon Suo},
year={2026},
eprint={2604.08538},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2604.08538},
}
https://huggingface.co/datasets/llamaindex/ParseBench#linksLinks
- Website:parsebench.ai
- Paper:arXiv:2604.08538
- GitHub:run-llama/ParseBench
- HuggingFace Dataset:llamaindex/ParseBench
Downloads last month37,342## Paper forllamaindex/ParseBench
Similar Articles
Infinity-Parser2 Technical Report
The Infinity-Parser2 technical report presents a large multimodal model for end-to-end document parsing, featuring a scalable data synthesis pipeline and multi-task reinforcement learning. It achieves state-of-the-art results on multiple benchmarks while releasing open-source model variants and a 5-million-sample bilingual corpus.
@FinanceYF5: 阅读文章:https://openrouter.ai/blog/insights/the-open-weight-models-that-matter-june-2026/…
The article highlights the growing importance of open-weight AI models as of June 2026, with DeepSeek V4 Flash emerging as a cost-effective, high-performance model that rivals frontier models like GPT-5.5 for agentic tasks.
@jerryjliu0: LiteParse is the best open-source, model-free document parser for AI agents. Run it over over 50+ document types, and i…
LlamaIndex releases liteparse-server, a self-hosted, model-free HTTP API for parsing diverse document types with high spatial fidelity and privacy preservation.
@jerryjliu0: There are a lot of coding and reasoning benchmarks for AI agents, but not a lot for document understanding - which is a…
LlamaIndex released ParseBench, a comprehensive benchmark for evaluating document understanding in AI agents, covering complex enterprise documents with tables, charts, and layouts. A live webinar will discuss the benchmark methodology and results.
@mr_r0b0t: Big week for open-weights! inclusionAI just dropped LLaDA2.2-flash100B MoE diffusion LLM built for agents Levenshtein E…
inclusionAI released LLaDA2.2-flash, a 100B MoE diffusion LLM built for agents with Levenshtein Editing, 128K context, and up to 2.3× higher throughput, achieving strong scores on agentic benchmarks like τ²-Bench and PinchBench under Apache 2.0.