[EMNLP 2026] OCR-MetaReasoning Benchmark: Evaluating the Meta-Reasoning Ability of MLLMs in Text-Rich Image Understanding
See the code
Overview · Benchmark · Quick start · Evaluation · Results · Citation
OCR-MetaReasoning is a controlled benchmark for testing whether multimodal large language models (MLLMs) can organize OCR-grounded visual evidence according to the required reasoning direction—not merely read text from an image.
| 1,500 single-image samples | 3 × 5 balanced taxonomy | 15 taxonomy cells | 2 answer / process metrics |
2026/09]: Our paper is now accessible at arXiv.2026/08]: We are delighted that OCR-MetaReasoning has been accepted to EMNLP 2026 Findings!2026/08]: Release the dataset and evaluation script.Text-rich images encode meaning through words, tables, charts, fields, layout, constraints, legends, and cross-region correspondences. A model can therefore produce a plausible answer while still failing to bind the right visual evidence to the intended reasoning process.
OCR-MetaReasoning evaluates this distinction directly. Every item contains one text-rich image and one question whose dominant bottleneck is explicitly organized as one of three meta-reasoning directions:
The benchmark reports both final-answer correctness and reasoning-process compliance, making it possible to distinguish “the model answered correctly” from “the model used the intended OCR-grounded reasoning path.”
| Property | OCR-MetaReasoning |
|---|---|
| Primary target | Meta-reasoning ability of MLLMs in OCR-grounded, text-rich image understanding |
| Input | One image $I$ and one question $q$ |
| Output | Numbered reasoning steps followed by a standalone final answer |
| Scale | 1,500 samples; 500 per reasoning direction |
| Balance | 3 reasoning types × 5 OCR-object categories; 100 samples per cell |
| Answer formats | String, integer, floating-point, and JSON |
| Scoring | Normalized exact match, numeric match, and JSON micro-F1 |
| Primary metric | MRMS — Meta-Reasoning Macro Score |
| Process diagnostic | RPCS — Reasoning Process Compliance Score |
| Image setting | Single-image, text-rich visual reasoning |
OCR-MetaReasoning is designed around three evaluation requirements:
The benchmark uses a hypothesis–rule–observation view of reasoning. Let $H$ denote a hypothesis, candidate state, or hidden premise; $R$ a rule, constraint, mapping, or regularity; and $O$ an observation, result, or consequence grounded in the image.
| Direction | Formal view | What the model must do | Typical failure mode |
|---|---|---|---|
| Meta-deductive | $H + R \rightarrow O$ | Extract an explicit rule, bind it to image evidence, test candidate conditions, and derive the supported conclusion. | Copies a salient value without checking all clauses, thresholds, units, or exceptions. |
| Meta-inductive | $H + O \rightarrow R$ | Align multiple visible examples, infer an unstated pattern, validate it, and apply it to a target. | Matches a local field or example without identifying the stable rule. |
| Meta-abductive | $O + R \rightarrow H$ | Start from a result, anomaly, or goal; trace constraints backward; compare hypotheses; recover the unique or minimal hidden premise. | Gives a plausible explanation that is weakly grounded or does not cover all observations. |
The evaluator prompts a model to produce a transparent, machine-readable answer structure:
Step 1: ...
Step 2: ...
...
Final Answer: ...
For numeric answers, the final line should contain a number only. For structured answers, it should contain valid JSON. The scorer reads the standalone final-answer line and preserves the preceding steps for RPCS evaluation.
The benchmark crosses the three meta-reasoning directions with five OCR-object categories. This balanced design prevents performance on a familiar document type or a single reasoning pattern from hiding localized weaknesses.
| OCR-object category | Scope |
|---|---|
| Transaction analysis | Receipts and invoices; quantities, prices, totals, discounts, taxes, and units. |
| Data interpretation | Tables and charts; trends, comparisons, derived values, and visual encodings. |
| Field dependency | Forms and certificates; relations among fields, labels, values, and cross-field constraints. |
| Document logic | Notices, policies, and document-like pages; clauses, eligibility, exceptions, and conditions. |
| Layout semantics | Posters, webpages, infographics, and spatially organized text; grouping, alignment, legends, and non-adjacent evidence. |
| Transaction analysis | Data interpretation | Field dependency | Document logic | Layout semantics | |
|---|---|---|---|---|---|
| Meta-deductive | 100 | 100 | 100 | 100 | 100 |
| Meta-inductive | 100 | 100 | 100 | 100 | 100 |
| Meta-abductive | 100 | 100 | 100 | 100 | 100 |
| Total | 300 | 300 | 300 | 300 | 300 |
The released dataset is hosted on Hugging Face:
Load the hosted dataset with 🤗 Datasets:
from datasets import load_dataset
dataset = load_dataset("GengxuLi123/OCR-MetaReasoning")
print(dataset)
The repository also contains the JSONL benchmark splits and their referenced images:
dataset/
├── meta_deductive/
│ ├── benchmark_meta_deductive.jsonl
│ └── images/
├── meta_inductive/
│ ├── benchmark_meta_inductive.jsonl
│ └── images/
└── meta_abductive/
├── benchmark_meta_abductive.jsonl
└── images/
To load the local JSONL files directly:
from datasets import load_dataset
data_files = {
"meta_deductive": "dataset/meta_deductive/benchmark_meta_deductive.jsonl",
"meta_inductive": "dataset/meta_inductive/benchmark_meta_inductive.jsonl",
"meta_abductive": "dataset/meta_abductive/benchmark_meta_abductive.jsonl",
}
dataset = load_dataset("json", data_files=data_files)
Each JSONL record follows the same schema:
| Field | Description |
|---|---|
sample_id | Unique sample identifier. |
image | Image path relative to the corresponding reasoning split. |
question | Text-rich image reasoning question. |
meta_reasoning_type | meta_deductive, meta_inductive, or meta_abductive. |
reasoning_taxonomy | One of the five OCR-object categories. |
answer_type | string, integer, float, or json. |
answer | Canonical answer used for scoring. |
reasoning_steps | Reference reasoning path, with at least two steps per released item. |
metric | exact_match, numeric, or json_f1. |
| Statistic | Value |
|---|---|
| String answers | 513 |
| Integer answers | 561 |
| Floating-point answers | 146 |
| JSON answers | 280 |
| Average question length | 75.77 tokens |
| Question length range | 21–201 tokens |
| Average reference reasoning steps | 4.22 |
| Reference reasoning step range | 2–8 |
| Images per sample | 1 |
The released benchmark has complete annotations and automatic scoring specifications for all 1,500 samples. Human verification and a blinded re-annotation study reported 96.0% agreement for meta-reasoning type and 92.7% agreement for OCR-object category.
The Meta-Reasoning Macro Score (MRMS) is the primary leaderboard metric:
MRMS = (Acc_deductive + Acc_inductive + Acc_abductive) / 3
It averages final-answer performance across the three reasoning directions, so a strong result in one direction cannot dominate the overall score.
Final answers are scored per sample using:
| Answer type | Metric |
|---|---|
| String | Normalized exact match |
| Integer / float | Normalized numeric match |
| JSON | JSON micro-F1 over flattened key–value items |
The Reasoning Process Compliance Score (RPCS) is a separate diagnostic over the visible reasoning steps:
RPCS = (capability_match + groundedness + step_completeness + non_hallucination) / 4
| Criterion | Meaning |
|---|---|
capability_match | The dominant reasoning direction matches the target task. |
groundedness | Key claims are tied to image evidence or question constraints. |
step_completeness | Necessary intermediate reasoning nodes are covered. |
non_hallucination | The process avoids unsupported rules, entities, fields, and values. |
RPCS is a visible-process diagnostic, not a claim about hidden internal reasoning. In the reported evaluation, the judge receives the image, question, target labels, reference steps, and model process with the standalone final-answer line removed; the gold answer and MRMS result are withheld.
The following snapshot is reported in the manuscript. Scores are percentage points.
| Model | MRMS | RPCS (avg.) | Setting |
|---|---|---|---|
| Gemini-3.1-Pro-Preview | 89.3 | 96.2 | Closed-source |
| GPT-5.4-Medium | 87.7 | 95.2 | Closed-source |
| Doubao-Seed-2.0-Pro | 86.4 | 93.0 | Closed-source |
| Qwen3-VL-235B-A22B-Thinking | 81.5 | 89.6 | Open-source |
| Kimi-K2.5 | 79.6 | 91.1 | Open-source |
Key observations:
The following figures and tables are included as SVG assets under assets/. The source locations use the current manuscript's figure/table numbering and pagination.
git clone https://github.com/gengxuli/OCR-MetaReasoning.git
cd OCR-MetaReasoning
python -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install openai pillow pydantic requests tqdm
Install datasets as well if you want to load the Hugging Face or local JSONL data through 🤗 Datasets:
python -m pip install datasets
The inference and RPCS clients use an OpenAI-compatible chat-completions interface. Keep credentials in environment variables or pass them through the command line; do not hard-code keys in source files.
export MODEL_API_KEY="YOUR_API_KEY"
export MODEL_BASE_URL="https://openrouter.ai/v1"
export PYTHONPATH="$(pwd):${PYTHONPATH:-}"
--sample_num is applied per selected reasoning type. Thus, 500 with all evaluates up to 500 samples for each of the three splits.
export MODEL_NAME="your-model-name"
python OCR_MetaReasoning/evaluation/openai_infer.py \
--model_name "${MODEL_NAME}" \
--base_url "${MODEL_BASE_URL}" \
--meta_reasoning_types all \
--sample_num 500 \
--batch_size 32 \
--workers 8 \
--temperature 0.0 \
--top_p 1.0 \
--timeout 600
Inference files are written to:
OCR_MetaReasoning/evaluation/result/${MODEL_NAME}_result/
The processor resumes from successful existing records by default. Add --retry_all when a complete rerun is intended.
python OCR_MetaReasoning/evaluation/stats.py \
--model_name "${MODEL_NAME}"
This writes score_summary.json in the model's result directory and reports scores by reasoning direction, answer type, OCR-object category, and the full 3 × 5 interaction.
RPCS is computed from a completed inference result using a configurable judge model. The default mode includes the original image; use --no_image only for a text-only control.
export JUDGE_MODEL_NAME="your-judge-model-name"
python OCR_MetaReasoning/evaluation/rpcs_judge.py \
--source_model_name "${MODEL_NAME}" \
--judge_model_name "${JUDGE_MODEL_NAME}" \
--base_url "${MODEL_BASE_URL}" \
--meta_reasoning_types all \
--workers 8 \
--batch_size 32 \
--temperature 0.0 \
--timeout 600 \
--max_retries 3
RPCS files are written to:
OCR_MetaReasoning/evaluation/rpcs_result/${MODEL_NAME}_result/
| Path | Purpose |
|---|---|
dataset/meta_deductive/ | Meta-deductive JSONL split and images. |
dataset/meta_inductive/ | Meta-inductive JSONL split and images. |
dataset/meta_abductive/ | Meta-abductive JSONL split and images. |
OCR_MetaReasoning/evaluation/openai_infer.py | Multimodal inference and answer scoring. |
OCR_MetaReasoning/evaluation/rpcs_judge.py | Process-level RPCS judging. |
OCR_MetaReasoning/evaluation/stats.py | Result aggregation and optional rescoring. |
OCR_MetaReasoning/evaluation/answer_utils.py | Final-answer extraction and exact/numeric/JSON scorers. |
OCR_MetaReasoning/evaluation/config.py | Dataset, result, model, and endpoint configuration. |
OCR_MetaReasoning/llms/ | OpenAI-compatible text/image client utilities. |
OCR_MetaReasoning/schemas/ | Dataset record schema definitions. |
OCR_MetaReasoning/utils/ | Shared image conversion helpers. |
assets/ | README figures and table screenshots in SVG format. |
LICENSE | Project license. |
OCR-MetaReasoning Benchmark: Evaluating the Meta-Reasoning Ability of MLLMs in Text-Rich Image Understanding
Gengxu Li, Yuan Wu, and Yi Chang
arXiv preprint: arXiv:2608.30678
If you use OCR-MetaReasoning, please cite:
@misc{li2026ocrmetareasoningbenchmarkevaluatingmetareasoning,
title = {OCR-MetaReasoning Benchmark: Evaluating the Meta-Reasoning Ability of MLLMs in Text-Rich Image Understanding},
author = {Gengxu Li and Yuan Wu and Yi Chang},
year = {2026},
eprint = {2608.30678},
archivePrefix = {arXiv},
primaryClass = {cs.CL},
url = {https://arxiv.org/abs/2608.30678}
}
OCR-MetaReasoning focuses on controlled, single-image, OCR-grounded meta-reasoning. It does not evaluate multi-page evidence chains, cross-image aggregation, retrieval-augmented document reasoning, or interactive clarification. The balanced taxonomy is intended for controlled comparison rather than modeling natural task frequencies. RPCS evaluates visible solution processes and should be interpreted as a diagnostic rather than direct evidence of internal reasoning.
This work is supported by the National Key Research and Development Program of China (No. 2023YFF0905400), the National Natural Science Foundation of China (No. U2341229), and the Reform Commission Foundation of Jilin Province (No. 2024C003).
See LICENSE for the project license. Please also consult the Hugging Face dataset card and the licenses of any upstream resources before redistributing derived data.
OCR-MetaReasoning · an OCR-grounded benchmark for measuring what models read, how they reason, and whether the two stay connected.
11 commits
Python
98.9%
Shell
1.1%
[EMNLP 2026] OCR-MetaReasoning Benchmark: Evaluating the Meta-Reasoning Ability of MLLMs in Text-Rich Image Understanding
See the code
Overview · Benchmark · Quick start · Evaluation · Results · Citation
OCR-MetaReasoning is a controlled benchmark for testing whether multimodal large language models (MLLMs) can organize OCR-grounded visual evidence according to the required reasoning direction—not merely read text from an image.
| 1,500 single-image samples | 3 × 5 balanced taxonomy | 15 taxonomy cells | 2 answer / process metrics |
2026/09]: Our paper is now accessible at arXiv.2026/08]: We are delighted that OCR-MetaReasoning has been accepted to EMNLP 2026 Findings!2026/08]: Release the dataset and evaluation script.Text-rich images encode meaning through words, tables, charts, fields, layout, constraints, legends, and cross-region correspondences. A model can therefore produce a plausible answer while still failing to bind the right visual evidence to the intended reasoning process.
OCR-MetaReasoning evaluates this distinction directly. Every item contains one text-rich image and one question whose dominant bottleneck is explicitly organized as one of three meta-reasoning directions:
The benchmark reports both final-answer correctness and reasoning-process compliance, making it possible to distinguish “the model answered correctly” from “the model used the intended OCR-grounded reasoning path.”
| Property | OCR-MetaReasoning |
|---|---|
| Primary target | Meta-reasoning ability of MLLMs in OCR-grounded, text-rich image understanding |
| Input | One image $I$ and one question $q$ |
| Output | Numbered reasoning steps followed by a standalone final answer |
| Scale | 1,500 samples; 500 per reasoning direction |
| Balance | 3 reasoning types × 5 OCR-object categories; 100 samples per cell |
| Answer formats | String, integer, floating-point, and JSON |
| Scoring | Normalized exact match, numeric match, and JSON micro-F1 |
| Primary metric | MRMS — Meta-Reasoning Macro Score |
| Process diagnostic | RPCS — Reasoning Process Compliance Score |
| Image setting | Single-image, text-rich visual reasoning |
OCR-MetaReasoning is designed around three evaluation requirements:
The benchmark uses a hypothesis–rule–observation view of reasoning. Let $H$ denote a hypothesis, candidate state, or hidden premise; $R$ a rule, constraint, mapping, or regularity; and $O$ an observation, result, or consequence grounded in the image.
| Direction | Formal view | What the model must do | Typical failure mode |
|---|---|---|---|
| Meta-deductive | $H + R \rightarrow O$ | Extract an explicit rule, bind it to image evidence, test candidate conditions, and derive the supported conclusion. | Copies a salient value without checking all clauses, thresholds, units, or exceptions. |
| Meta-inductive | $H + O \rightarrow R$ | Align multiple visible examples, infer an unstated pattern, validate it, and apply it to a target. | Matches a local field or example without identifying the stable rule. |
| Meta-abductive | $O + R \rightarrow H$ | Start from a result, anomaly, or goal; trace constraints backward; compare hypotheses; recover the unique or minimal hidden premise. | Gives a plausible explanation that is weakly grounded or does not cover all observations. |
The evaluator prompts a model to produce a transparent, machine-readable answer structure:
Step 1: ...
Step 2: ...
...
Final Answer: ...
For numeric answers, the final line should contain a number only. For structured answers, it should contain valid JSON. The scorer reads the standalone final-answer line and preserves the preceding steps for RPCS evaluation.
The benchmark crosses the three meta-reasoning directions with five OCR-object categories. This balanced design prevents performance on a familiar document type or a single reasoning pattern from hiding localized weaknesses.
| OCR-object category | Scope |
|---|---|
| Transaction analysis | Receipts and invoices; quantities, prices, totals, discounts, taxes, and units. |
| Data interpretation | Tables and charts; trends, comparisons, derived values, and visual encodings. |
| Field dependency | Forms and certificates; relations among fields, labels, values, and cross-field constraints. |
| Document logic | Notices, policies, and document-like pages; clauses, eligibility, exceptions, and conditions. |
| Layout semantics | Posters, webpages, infographics, and spatially organized text; grouping, alignment, legends, and non-adjacent evidence. |
| Transaction analysis | Data interpretation | Field dependency | Document logic | Layout semantics | |
|---|---|---|---|---|---|
| Meta-deductive | 100 | 100 | 100 | 100 | 100 |
| Meta-inductive | 100 | 100 | 100 | 100 | 100 |
| Meta-abductive | 100 | 100 | 100 | 100 | 100 |
| Total | 300 | 300 | 300 | 300 | 300 |
The released dataset is hosted on Hugging Face:
Load the hosted dataset with 🤗 Datasets:
from datasets import load_dataset
dataset = load_dataset("GengxuLi123/OCR-MetaReasoning")
print(dataset)
The repository also contains the JSONL benchmark splits and their referenced images:
dataset/
├── meta_deductive/
│ ├── benchmark_meta_deductive.jsonl
│ └── images/
├── meta_inductive/
│ ├── benchmark_meta_inductive.jsonl
│ └── images/
└── meta_abductive/
├── benchmark_meta_abductive.jsonl
└── images/
To load the local JSONL files directly:
from datasets import load_dataset
data_files = {
"meta_deductive": "dataset/meta_deductive/benchmark_meta_deductive.jsonl",
"meta_inductive": "dataset/meta_inductive/benchmark_meta_inductive.jsonl",
"meta_abductive": "dataset/meta_abductive/benchmark_meta_abductive.jsonl",
}
dataset = load_dataset("json", data_files=data_files)
Each JSONL record follows the same schema:
| Field | Description |
|---|---|
sample_id | Unique sample identifier. |
image | Image path relative to the corresponding reasoning split. |
question | Text-rich image reasoning question. |
meta_reasoning_type | meta_deductive, meta_inductive, or meta_abductive. |
reasoning_taxonomy | One of the five OCR-object categories. |
answer_type | string, integer, float, or json. |
answer | Canonical answer used for scoring. |
reasoning_steps | Reference reasoning path, with at least two steps per released item. |
metric | exact_match, numeric, or json_f1. |
| Statistic | Value |
|---|---|
| String answers | 513 |
| Integer answers | 561 |
| Floating-point answers | 146 |
| JSON answers | 280 |
| Average question length | 75.77 tokens |
| Question length range | 21–201 tokens |
| Average reference reasoning steps | 4.22 |
| Reference reasoning step range | 2–8 |
| Images per sample | 1 |
The released benchmark has complete annotations and automatic scoring specifications for all 1,500 samples. Human verification and a blinded re-annotation study reported 96.0% agreement for meta-reasoning type and 92.7% agreement for OCR-object category.
The Meta-Reasoning Macro Score (MRMS) is the primary leaderboard metric:
MRMS = (Acc_deductive + Acc_inductive + Acc_abductive) / 3
It averages final-answer performance across the three reasoning directions, so a strong result in one direction cannot dominate the overall score.
Final answers are scored per sample using:
| Answer type | Metric |
|---|---|
| String | Normalized exact match |
| Integer / float | Normalized numeric match |
| JSON | JSON micro-F1 over flattened key–value items |
The Reasoning Process Compliance Score (RPCS) is a separate diagnostic over the visible reasoning steps:
RPCS = (capability_match + groundedness + step_completeness + non_hallucination) / 4
| Criterion | Meaning |
|---|---|
capability_match | The dominant reasoning direction matches the target task. |
groundedness | Key claims are tied to image evidence or question constraints. |
step_completeness | Necessary intermediate reasoning nodes are covered. |
non_hallucination | The process avoids unsupported rules, entities, fields, and values. |
RPCS is a visible-process diagnostic, not a claim about hidden internal reasoning. In the reported evaluation, the judge receives the image, question, target labels, reference steps, and model process with the standalone final-answer line removed; the gold answer and MRMS result are withheld.
The following snapshot is reported in the manuscript. Scores are percentage points.
| Model | MRMS | RPCS (avg.) | Setting |
|---|---|---|---|
| Gemini-3.1-Pro-Preview | 89.3 | 96.2 | Closed-source |
| GPT-5.4-Medium | 87.7 | 95.2 | Closed-source |
| Doubao-Seed-2.0-Pro | 86.4 | 93.0 | Closed-source |
| Qwen3-VL-235B-A22B-Thinking | 81.5 | 89.6 | Open-source |
| Kimi-K2.5 | 79.6 | 91.1 | Open-source |
Key observations:
The following figures and tables are included as SVG assets under assets/. The source locations use the current manuscript's figure/table numbering and pagination.
git clone https://github.com/gengxuli/OCR-MetaReasoning.git
cd OCR-MetaReasoning
python -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install openai pillow pydantic requests tqdm
Install datasets as well if you want to load the Hugging Face or local JSONL data through 🤗 Datasets:
python -m pip install datasets
The inference and RPCS clients use an OpenAI-compatible chat-completions interface. Keep credentials in environment variables or pass them through the command line; do not hard-code keys in source files.
export MODEL_API_KEY="YOUR_API_KEY"
export MODEL_BASE_URL="https://openrouter.ai/v1"
export PYTHONPATH="$(pwd):${PYTHONPATH:-}"
--sample_num is applied per selected reasoning type. Thus, 500 with all evaluates up to 500 samples for each of the three splits.
export MODEL_NAME="your-model-name"
python OCR_MetaReasoning/evaluation/openai_infer.py \
--model_name "${MODEL_NAME}" \
--base_url "${MODEL_BASE_URL}" \
--meta_reasoning_types all \
--sample_num 500 \
--batch_size 32 \
--workers 8 \
--temperature 0.0 \
--top_p 1.0 \
--timeout 600
Inference files are written to:
OCR_MetaReasoning/evaluation/result/${MODEL_NAME}_result/
The processor resumes from successful existing records by default. Add --retry_all when a complete rerun is intended.
python OCR_MetaReasoning/evaluation/stats.py \
--model_name "${MODEL_NAME}"
This writes score_summary.json in the model's result directory and reports scores by reasoning direction, answer type, OCR-object category, and the full 3 × 5 interaction.
RPCS is computed from a completed inference result using a configurable judge model. The default mode includes the original image; use --no_image only for a text-only control.
export JUDGE_MODEL_NAME="your-judge-model-name"
python OCR_MetaReasoning/evaluation/rpcs_judge.py \
--source_model_name "${MODEL_NAME}" \
--judge_model_name "${JUDGE_MODEL_NAME}" \
--base_url "${MODEL_BASE_URL}" \
--meta_reasoning_types all \
--workers 8 \
--batch_size 32 \
--temperature 0.0 \
--timeout 600 \
--max_retries 3
RPCS files are written to:
OCR_MetaReasoning/evaluation/rpcs_result/${MODEL_NAME}_result/
| Path | Purpose |
|---|---|
dataset/meta_deductive/ | Meta-deductive JSONL split and images. |
dataset/meta_inductive/ | Meta-inductive JSONL split and images. |
dataset/meta_abductive/ | Meta-abductive JSONL split and images. |
OCR_MetaReasoning/evaluation/openai_infer.py | Multimodal inference and answer scoring. |
OCR_MetaReasoning/evaluation/rpcs_judge.py | Process-level RPCS judging. |
OCR_MetaReasoning/evaluation/stats.py | Result aggregation and optional rescoring. |
OCR_MetaReasoning/evaluation/answer_utils.py | Final-answer extraction and exact/numeric/JSON scorers. |
OCR_MetaReasoning/evaluation/config.py | Dataset, result, model, and endpoint configuration. |
OCR_MetaReasoning/llms/ | OpenAI-compatible text/image client utilities. |
OCR_MetaReasoning/schemas/ | Dataset record schema definitions. |
OCR_MetaReasoning/utils/ | Shared image conversion helpers. |
assets/ | README figures and table screenshots in SVG format. |
LICENSE | Project license. |
OCR-MetaReasoning Benchmark: Evaluating the Meta-Reasoning Ability of MLLMs in Text-Rich Image Understanding
Gengxu Li, Yuan Wu, and Yi Chang
arXiv preprint: arXiv:2608.30678
If you use OCR-MetaReasoning, please cite:
@misc{li2026ocrmetareasoningbenchmarkevaluatingmetareasoning,
title = {OCR-MetaReasoning Benchmark: Evaluating the Meta-Reasoning Ability of MLLMs in Text-Rich Image Understanding},
author = {Gengxu Li and Yuan Wu and Yi Chang},
year = {2026},
eprint = {2608.30678},
archivePrefix = {arXiv},
primaryClass = {cs.CL},
url = {https://arxiv.org/abs/2608.30678}
}
OCR-MetaReasoning focuses on controlled, single-image, OCR-grounded meta-reasoning. It does not evaluate multi-page evidence chains, cross-image aggregation, retrieval-augmented document reasoning, or interactive clarification. The balanced taxonomy is intended for controlled comparison rather than modeling natural task frequencies. RPCS evaluates visible solution processes and should be interpreted as a diagnostic rather than direct evidence of internal reasoning.
This work is supported by the National Key Research and Development Program of China (No. 2023YFF0905400), the National Natural Science Foundation of China (No. U2341229), and the Reform Commission Foundation of Jilin Province (No. 2024C003).
See LICENSE for the project license. Please also consult the Hugging Face dataset card and the licenses of any upstream resources before redistributing derived data.
OCR-MetaReasoning · an OCR-grounded benchmark for measuring what models read, how they reason, and whether the two stay connected.
11 commits
Python
98.9%
Shell
1.1%