Large language models (LLMs) excel at processing and generating textual content, with capabilities spanning code writing and logical reasoning. Retrieval-Augmented Generation (RAG) extends their reach by linking to external knowledge bases, enabling responses beyond training data. However, a critical bottleneck persists: LLMs often struggle with visual enformation embedded in unstructured documents like PDFs, scanned reports, handwritten notes, or historical texts. Without accurate Optical Character Recognition (OCR), these documants remain inaccessible, undermining RAG effectiveness. Low-quality OCR outputs lead to erroneous inputs, adhering to the principle of garbage in, garbage out, which compromises LLM reliability.
PaddleOCR-VL addresses this by introducing multimodal document parsing. Unlike traditional OCR models focused solely on text extraction, it interprets complex layouts, extracting tabular data, mathematical formulas, and handwritten content while preserving logical reading order. It distinguishes headings, body text, images, and captions, ensuring comprehensive information retention. Built on the ERNIE-4.5-0.3B language model with 0.9B parameters, it achieves state-of-the-art performance, topping the OmniBenchDoc V1.5 global benchmark with a 92.6 composite score.
Performance Evaluation Across Key Tasks
Handwritten Chinese Text Recognition
Using a slanted, edited student essay image, PaddleOCR-VL accurately identified all handwritten characters and segmented natural paragraphs. In contrast, models like ChatGPT and Gemini introduced errors or unwarranted edits, such as filling in missing characters. Ranking: 1. PaddleOCR-VL, 2. Gemini, 3. Doubao, 4. ChatGPT.
Reading Order Restoration
A classical Chinese poem excerpt in vertical, right-to-left layout without punctuation tested layout understanding. PaddleOCR-VL perfectly reconstructed the original sequence and formatting. Other models converted text to simplified Chinese or added punctuation, deviating from source fidelity. Ranking: 1. PaddleOCR-VL, 2. Doubao, 3. ChatGPT and Gemini tied.
Table Comprehension
A challenging photo of a folded, shadowed table with merged cells evaluated structural analysis. PaddleOCR-VL output structured HTML, accurately handling merged cells and overlapping text. ChatGPT and Gemini missed headers and struggled with merged cells, while Doubao failed entirely. Ranking: 1. PaddleOCR-VL, 2. ChatGPT, 3. Gemini, 4. Doubao.
Blurred Table Extraction
A low-quality image with moiré patterns and reflections simulated real-world scenarios. PaddleOCR-VL produced a well-structured HTML table, with minor indentation issues due to missing cell borders. Gemini and Doubao made formatting adjustments, while ChatGPT erroneously split bilingual content. Ranking: 1. PaddleOCR-VL, 2. Gemini, 3. Doubao, 4. ChatGPT.
Mathematical Formula Recognition
A printed formula with special symbols and subscripts was processed. PaddleOCR-VL, Gemini, and Doubao returned renderable outputs, while ChatGPT provided LaTeX code requiring conversion. All achieved high accuracy, with PaddleOCR-VL offering direct usability.
Multilingual Handwritten Note Parsing
A note mixing Japanese and English handwriting tested language versatility. Doubao excelled in accuracy and layout preservation, followed closely by PaddleOCR-VL. ChatGPT and Gemini introduced formatting errors or unnecessary additions. Ranking: 1. Doubao, 2. PaddleOCR-VL, 3. ChatGPT, 4. Gemini.
Additional Document Processing
PaddleOCR-VL successfully parsed certification documents, extracting standard fonts, handwritten signatures, and logos in a single pass, a task where general-purpose LLMs often falter.
PaddleOCR-VL’s lightwieght architecture enables efficient deployment on edge devices like smartphones, offering a specialized solution for OCR tasks. By excelling in visual perception, it complements larger LLMs, adhering to the principle that division of labor enhances system efficacy. For projects requiring robust document intelligence, PaddleOCR-VL provides a reliable alternative to general-purpose models prone to hallucinations in OCR contexts.