Search papers, labs, and topics across Lattice.
The authors introduce Multimodal OCR (MOCR), a document parsing paradigm that jointly parses text and graphics into unified textual representations, treating visual elements as first-class parsing targets. They built a comprehensive data engine from PDFs, rendered webpages, and native SVG assets, and trained a compact 3B-parameter model through staged pretraining and supervised fine-tuning. The resulting model, dots.mocr, achieves state-of-the-art performance on document parsing benchmarks and surpasses Gemini 3 Pro in structured graphics parsing, demonstrating a scalable path toward building large-scale image-to-code corpora for multimodal pretraining.
Forget treating graphics as just cropped pixels: this new OCR system parses documents by reconstructing both text *and* visual elements into structured outputs, outperforming existing open-source systems and even Gemini 3 Pro on some tasks.
We present Multimodal OCR (MOCR), a document parsing paradigm that jointly parses text and graphics into unified textual representations. Unlike conventional OCR systems that focus on text recognition and leave graphical regions as cropped pixels, our method, termed dots.mocr, treats visual elements such as charts, diagrams, tables, and icons as first-class parsing targets, enabling systems to parse documents while preserving semantic relationships across elements. It offers several advantages: (1) it reconstructs both text and graphics as structured outputs, enabling more faithful document reconstruction; (2) it supports end-to-end training over heterogeneous document elements, allowing models to exploit semantic relations between textual and visual components; and (3) it converts previously discarded graphics into reusable code-level supervision, unlocking multimodal supervision embedded in existing documents. To make this paradigm practical at scale, we build a comprehensive data engine from PDFs, rendered webpages, and native SVG assets, and train a compact 3B-parameter model through staged pretraining and supervised fine-tuning. We evaluate dots.mocr from two perspectives: document parsing and structured graphics parsing. On document parsing benchmarks, it ranks second only to Gemini 3 Pro on our OCR Arena Elo leaderboard, surpasses existing open-source document parsing systems, and sets a new state of the art of 83.9 on olmOCR Bench. On structured graphics parsing, dots.mocr achieves higher reconstruction quality than Gemini 3 Pro across image-to-SVG benchmarks, demonstrating strong performance on charts, UI layouts, scientific figures, and chemical diagrams. These results show a scalable path toward building large-scale image-to-code corpora for multimodal pretraining. Code and models are publicly available at https://github.com/rednote-hilab/dots.mocr.