Most high-accuracy document parsing systems use multi-stage pipelines (layout detection → OCR → table/figure post-processing). OvisOCR2 flips that trend: a compact 0.8B end-to-end model demonstrates that a single multimodal LLM can generate page-level Markdown in natural reading order and match or exceed pipeline performance on major benchmarks.
Key Capabilities
- End-to-end page parsing: produces a single Markdown document per page that preserves reading order, transcribes text, formats formulas as LaTeX, and renders tables as HTML — so you get a ready-to-render textual representation without stitching outputs from separate tools.
- Compact footprint with strong accuracy: at 0.8B parameters and a vLLM-compatible inference recipe, it scored 96.58 on OmniDocBench v1.6 and 75.06 Avg3 on PureDocBench, becoming the first end-to-end model to top OmniDocBench previously dominated by pipeline methods — so it’s practical for deployments with constrained resources.
- Training & robustness measures: post-trained from Qwen3.5-0.8B using a data engine mixing real and synthetic pages and a multi-stage recipe (SFT, RL, OPD); includes output filtering and repeat-cleaning heuristics to reduce truncated/repeated outputs — so common end-to-end failure modes are explicitly mitigated.
- Integration-ready output format: outputs use Markdown plus HTML for tables and image tags for visual regions, with example utilities for extracting referenced image crops — so the model’s outputs can be directly consumed by document workflows or static-site renderers.
Who it's for and trade-offs
Great fit if you need page-level structured text quickly and want to avoid maintaining separate OCR + post-processing pipelines (researchers prototyping document understanding, teams deploying lightweight parsers, or services needing direct Markdown outputs). Look elsewhere if you require the absolute best raw OCR character accuracy on heavily degraded scans or if your workflow demands per-token alignment and fine-grained correction tooling that dedicated OCR engines and specialized table-extraction pipelines still handle better. OvisOCR2 simplifies end-to-end engineering at the cost of occasional parsing errors; manual verification is recommended for critical documents.
Where it fits
OvisOCR2 sits between heavyweight multi-model pipelines and large multimodal giants: it trades some per-token OCR perfection for a much simpler integration path and smaller runtime footprint. If your primary goal is structured, readable export (Markdown/HTML) from diverse document pages, OvisOCR2 is a strong candidate.
Practical notes
The model’s inference examples use vLLM and include heuristics to remove truncated repeats and optionally export image crops referenced by HTML img tags. Licensed under Apache-2.0. The authors note remaining error modes (incomplete outputs, invalid table structures, reading-order inconsistencies), so pipeline fallback or human review is recommended for high-stakes use.