File size: 588 Bytes
d423504 67495fe d423504 67495fe d423504 67495fe d423504 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | """pdfsys-bench — evaluation harness and MVP closed-loop runner.
Runs a PDF directory through router → parser → OCR-quality scorer and
writes one JSONL row per PDF. This is the minimal end-to-end harness; a
richer benchmark (throughput, F1 against gold Markdown, cross-backend
comparison) will layer on top of it.
"""
from __future__ import annotations
from .loop import LoopResult, run_loop
from .quality import OcrQualityScorer, QualityScore
__version__ = "0.0.1"
__all__ = [
"__version__",
"LoopResult",
"run_loop",
"OcrQualityScorer",
"QualityScore",
]
|