AIToday
Open-Source AIAI Business & IndustryDaily Dose of Data SciencePublished: Aug 31, 2026, 06:01 JST2 min read

Marker v2: 23.7 pages/sec on one B200 GPU

Marker v2: 23.7 pages/sec on one B200 GPU

Key takeaway

  • Datalab's Marker v2 parses 23.7 pages per second on one B200 GPU, using shared inference.

  • It beats MinerU on quality and speed.

  • Fast mode cuts costs but hurts math accuracy.

3 Key Points

  1. What happened

    Datalab released Marker v2, an open-source parsing pipeline that processes up to 23.7 pages per second on a single B200 GPU. It outputs Markdown, JSON, or HTML and runs on Surya 2, a single 650M parameter model handling OCR, layout, reading order, and table recognition across 90+ languages.

  2. Why it matters

    Traditionally, scaling parsing meant adding workers, each loading its own model copy, leading to idle GPU time and paying for multiple copies while getting throughput of one. Marker v2 instead uses many lightweight CPU workers sharing one Surya inference server, so pages batch together, keeping the GPU busy and throughput scaling with the server, not VRAM.

  3. What to watch

    The trade-off modes matter: balanced (highest quality, best on GPU), fast (cheaper per page but math accuracy drops sharply because equations read from text layer), and disable_ocr (CPU-only for clean digital files). On Allen AI's olmOCR-bench (1,403 PDFs), balanced scores 76.0% versus MinerU's 72.7% while running over 5x more pages per second.

Ask the AI about this article →

Context & Analysis

Marker v2 tackles a classic bottleneck in document parsing: GPU underutilization. Traditional scaling adds workers, each with a private model copy, leading to idle time and redundant memory. By centralizing inference on a shared server, Marker v2 ensures the GPU processes many pages in one pass, achieving 23.7 pages per second on a single B200 with OCR off. This design also decouples throughput from VRAM, making scaling more cost-effective for businesses.

The benchmark results provide concrete evidence of its efficiency. On olmOCR-bench, balanced mode scores 76.0% against MinerU's 72.7%, while running over 5x more pages per second. However, the mode choice is critical: fast mode sacrifices math accuracy because it reads equations from the text layer instead of the page, so math-heavy corpora should stick to balanced. This trade-off is typical of optimization strategies that prioritize speed over fidelity.

For non-technical readers, the takeaway is that Marker v2 offers a practical way to reduce parsing costs and improve throughput without sacrificing quality, provided the right mode is selected. The open-source nature allows adoption without vendor lock-in, though teams should validate performance on their own document types.

FAQ

What are the three modes and their trade-offs?
Balanced mode runs the model for layout and re-OCRs bad pages, offering highest quality on GPU. Fast mode relies on the text layer with minimal model calls, being cheaper per page. Disable_ocr skips the model entirely and runs on CPU for clean digital files.
How does Marker v2 scale throughput?
It runs many lightweight CPU workers that all talk to one shared Surya inference server, so pages from every worker batch together on one model instance that stays busy. The parent process reads the server's capacity and splits it across workers, so adding workers fills the pipeline instead of flooding it.
Does Marker v2 support non-English documents?
Yes, Surya 2 handles OCR, layout, reading order, and table recognition across more than 90 languages.
Daily Dose of Data ScienceRead Original Article

Get the latest Open-Source AI news every morning

For example, today's edition would include:

  • Developer builds Kimi K3 from scratch in PyTorchr/MachineLearning · 4h ago
  • Open-source tool checks RAG access controlr/MachineLearning · 21h ago
  • Chatbot on Your Own PC: Privacy, Offline, FreeWIRED AI · 1d ago

AI-summarized, only the topics you pick — one digest a day via Email, Slack, or Discord.

Free · takes 30 seconds · unsubscribe anytimeWhat is AIToday? →

Ask AI

Ask AI anything about this article. Q&As are published on this page for other readers too.

Related Articles

Next articleRakuten AI boost adds ¥25.5B profit, 17% higher spend