Overview
Results are promising but based on a small (100-image) invoice dataset and free-tier API constraints; verify on larger, real-world data before production rollout.
Citations1
Evidence Strength0.55
Confidence0.60
Risk Signals10
Trust Signals
Findings with numeric evidence: 3/3
Findings with evidence refs: 3/3
Results with explicit delta: 2/2
Reproducibility
Status: Code + data available
Open source: Partial
At A Glance
Cost impact: 60%
Production readiness: 50%
Novelty: 60%
Why It Matters For Business
Combining multiple OCR engines with LLM-based JSON conversion and majority voting can cut extraction errors and improve throughput for invoice automation, reducing manual fixes and speeding up batch processing.
Who Should Care
Summary TLDR
LMV-RPA is a production-style pipeline that runs four OCR engines (PaddleOCR, Tesseract, EasyOCR, DocTR), sends each OCR output to two Large Language Models (LLMs) to convert text into JSON, and picks the final structured result by majority voting. On a 100-image invoice test set the authors report 99% extraction accuracy versus a 94% baseline and an average runtime of 121.27s versus 212–218s for UiPath/Automation Anywhere. The study is promising but uses a small invoice-focused dataset and constrained free-tier APIs, so expect more validation before deploying at scale.
Problem Statement
Standard OCR in RPA struggles with ambiguous characters and complex layouts. Single-engine OCR often misreads noisy or varied invoices and manual fixes are expensive. The paper seeks a reliable, automated pipeline that both improves accuracy of extracted fields and outputs structured JSON for downstream RPA tasks.
Main Contribution
LMV-RPA pipeline: multi-OCR (PaddleOCR, Tesseract, EasyOCR, DocTR) + two LLMs to convert each OCR output to JSON, then majority-vote across JSON outputs.
Empirical comparison showing higher extraction accuracy (reported 99% vs 94%) on a 100-image invoice dataset.
Key Findings
LMV-RPA achieved higher extraction accuracy than the baseline.
LMV-RPA ran faster, on average, than two commercial RPA platforms in authors' tests.
Results
| Metric | Value | Baseline | Delta | Split / Dataset | Evidence | Evidence Ref |
|---|---|---|---|---|---|---|
| Accuracy | 99% | Traditional (1 OCR + 1-layer LLM) | +5 percentage points | 100-image invoice test set | Table 2 reports 99% for LMV-RPA vs 94% for traditional model | Table 2 |
| Average runtime | 121.27 sec | UiPath 212.33 sec; Automation Anywhere 217.80 sec | ~43–44% faster than UiPath/Automation Anywhere | Benchmark tasks (same hardware, paper's test) | Table 1 reports runtimes per platform | Table 1 |
What To Try In 7 Days
Run LMV-RPA on a small sample of your invoices (50–200) and compare field-level accuracy to your current tool.
Log per-file runtimes to check throughput under your hardware and adjust polling interval.
Test failure cases: low-quality scans, unusual layouts, and non-invoice documents to map limitations.
Agent Features
Memory
Planning
Tool Use
Frameworks
Is Agentic
Yes
Architectures
Collaboration
Optimization Features
System Optimization
Inference Optimization
Reproducibility
Code URLs
Data URLs
Risks & Boundaries
Limitations
Small dataset (100 images) focused on invoices only.
Authors used free-tier OCR/APIs and added a 5s delay, which may alter runtime behavior.
When Not To Use
For non-invoice or very different document types without retesting.
When strict, provable privacy constraints forbid sending text to external LLMs.
Failure Modes
Majority voting can reinforce a common OCR misread if all engines err the same way.
LLMs may alter or hallucinate critical field text when converting to JSON.

