917eedffcf
Main / Python 3.11 - Docs (push) Waiting to run
Main / Python 3.11 - Build (push) Waiting to run
Main / Python 3.11 - Lint (push) Waiting to run
Main / Python 3.11 - Style (push) Waiting to run
Main / Python 3.11 - Test (push) Waiting to run
Main / GPU CI (push) Blocked by required conditions
Main / Release (push) Blocked by required conditions
Main / Build and Push Docker Images (push) Blocked by required conditions
301 lines
12 KiB
Python
301 lines
12 KiB
Python
import glob
|
|
import os
|
|
from typing import Dict, List, Optional, Tuple
|
|
|
|
from tqdm import tqdm
|
|
|
|
from olmocr.data.renderpdf import render_pdf_to_base64webp
|
|
|
|
from .tests import BasePDFTest
|
|
|
|
|
|
def _filter_by_max_reports(
|
|
test_results_by_candidate: Dict[str, Dict[str, Dict[int, List[Tuple[BasePDFTest, bool, str]]]]],
|
|
test_to_jsonl: Dict[str, str],
|
|
max_reports: int,
|
|
) -> Dict[str, Dict[str, Dict[int, List[Tuple[BasePDFTest, bool, str]]]]]:
|
|
"""Filter test results to include at most max_reports unique PDFs per .jsonl file."""
|
|
filtered = {}
|
|
for candidate, pdf_results in test_results_by_candidate.items():
|
|
# Track which unique PDFs we've included per jsonl file
|
|
jsonl_pdfs: Dict[str, set] = {}
|
|
filtered_pdfs: Dict[str, Dict[int, List[Tuple[BasePDFTest, bool, str]]]] = {}
|
|
|
|
for pdf_name in sorted(pdf_results.keys()):
|
|
pages = pdf_results[pdf_name]
|
|
for page in sorted(pages.keys()):
|
|
for test_tuple in pages[page]:
|
|
test, passed, explanation = test_tuple
|
|
jsonl_file = test_to_jsonl.get(test.id, "unknown")
|
|
jsonl_pdfs.setdefault(jsonl_file, set())
|
|
# If this PDF is new for this jsonl file, check the limit
|
|
if pdf_name not in jsonl_pdfs[jsonl_file]:
|
|
if len(jsonl_pdfs[jsonl_file]) >= max_reports:
|
|
continue
|
|
jsonl_pdfs[jsonl_file].add(pdf_name)
|
|
filtered_pdfs.setdefault(pdf_name, {}).setdefault(page, []).append(test_tuple)
|
|
|
|
filtered[candidate] = filtered_pdfs
|
|
return filtered
|
|
|
|
|
|
def generate_html_report(
|
|
test_results_by_candidate: Dict[str, Dict[str, Dict[int, List[Tuple[BasePDFTest, bool, str]]]]],
|
|
pdf_folder: str,
|
|
output_file: str,
|
|
max_reports: Optional[int] = None,
|
|
test_to_jsonl: Optional[Dict[str, str]] = None,
|
|
) -> None:
|
|
"""
|
|
Generate a simple static HTML report of test results.
|
|
|
|
Args:
|
|
test_results_by_candidate: Dictionary mapping candidate name to dictionary mapping PDF name to dictionary
|
|
mapping page number to list of (test, passed, explanation) tuples.
|
|
pdf_folder: Path to the folder containing PDF files.
|
|
output_file: Path to the output HTML file.
|
|
max_reports: If set, limit to at most N tests per .jsonl file in the report.
|
|
test_to_jsonl: Dictionary mapping test IDs to their source jsonl filenames.
|
|
"""
|
|
# If max_reports is set, filter test_results_by_candidate to limit per jsonl file
|
|
if max_reports is not None and test_to_jsonl is not None:
|
|
test_results_by_candidate = _filter_by_max_reports(test_results_by_candidate, test_to_jsonl, max_reports)
|
|
candidates = list(test_results_by_candidate.keys())
|
|
|
|
# Create HTML report
|
|
html = """<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>OLMOCR Bench Test Report</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 20px;
|
|
color: #333;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
h1, h2, h3, h4 {
|
|
margin-top: 20px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.test-block {
|
|
border: 1px solid #ddd;
|
|
margin-bottom: 30px;
|
|
padding: 15px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.test-block.pass {
|
|
border-left: 5px solid #4CAF50;
|
|
}
|
|
|
|
.test-block.fail {
|
|
border-left: 5px solid #F44336;
|
|
}
|
|
|
|
.pdf-image {
|
|
max-width: 100%;
|
|
border: 1px solid #ddd;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
.markdown-content {
|
|
background: #f5f5f5;
|
|
padding: 15px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 5px;
|
|
font-family: monospace;
|
|
white-space: pre-wrap;
|
|
overflow-x: auto;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
.markdown-content table {
|
|
border-collapse: collapse;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
.markdown-content th,
|
|
.markdown-content td {
|
|
border: 1px solid #999;
|
|
padding: 4px 8px;
|
|
}
|
|
|
|
.markdown-content th {
|
|
background-color: #e0e0e0;
|
|
}
|
|
|
|
.status {
|
|
display: inline-block;
|
|
padding: 3px 8px;
|
|
border-radius: 3px;
|
|
font-weight: bold;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.pass-status {
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
}
|
|
|
|
.fail-status {
|
|
background-color: #F44336;
|
|
color: white;
|
|
}
|
|
|
|
.test-details {
|
|
margin: 10px 0;
|
|
}
|
|
|
|
.test-explanation {
|
|
margin-top: 10px;
|
|
padding: 10px;
|
|
background: #fff9c4;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
hr {
|
|
border: 0;
|
|
border-top: 1px solid #ddd;
|
|
margin: 30px 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>OLMOCR Bench Test Report</h1>
|
|
"""
|
|
|
|
# Process all candidates
|
|
print("Generating test report...")
|
|
for candidate in candidates:
|
|
html += f"<h2>Candidate: {candidate}</h2>\n"
|
|
|
|
# Get all PDFs for this candidate
|
|
all_pdfs = sorted(test_results_by_candidate[candidate].keys())
|
|
|
|
for pdf_name in tqdm(all_pdfs, desc=f"Processing {candidate}"):
|
|
pages = sorted(test_results_by_candidate[candidate][pdf_name].keys())
|
|
|
|
for page in pages:
|
|
# Get tests for this PDF page
|
|
tests = test_results_by_candidate[candidate][pdf_name][page]
|
|
|
|
for test, passed, explanation in tests:
|
|
result_class = "pass" if passed else "fail"
|
|
status_text = "PASSED" if passed else "FAILED"
|
|
status_class = "pass-status" if passed else "fail-status"
|
|
|
|
# Begin test block
|
|
html += f"""
|
|
<div class="test-block {result_class}">
|
|
<h3>Test ID: {test.id} <span class="status {status_class}">{status_text}</span></h3>
|
|
<p><strong>PDF:</strong> {pdf_name} | <strong>Page:</strong> {page} | <strong>Type:</strong> {test.type}</p>
|
|
|
|
<div class="test-details">
|
|
"""
|
|
|
|
# Add test details based on type
|
|
test_type = getattr(test, "type", "").lower()
|
|
if test_type == "present" and hasattr(test, "text"):
|
|
text = getattr(test, "text", "")
|
|
html += f""" <p><strong>Text to find:</strong> "{text}"</p>\n"""
|
|
elif test_type == "absent" and hasattr(test, "text"):
|
|
text = getattr(test, "text", "")
|
|
html += f""" <p><strong>Text should not appear:</strong> "{text}"</p>\n"""
|
|
elif test_type == "order" and hasattr(test, "before") and hasattr(test, "after"):
|
|
before = getattr(test, "before", "")
|
|
after = getattr(test, "after", "")
|
|
html += f""" <p><strong>Text order:</strong> "{before}" should appear before "{after}"</p>\n"""
|
|
elif test_type == "table":
|
|
if hasattr(test, "cell"):
|
|
cell = getattr(test, "cell", "")
|
|
html += f""" <p><strong>Table cell:</strong> "{cell}"</p>\n"""
|
|
if hasattr(test, "up") and getattr(test, "up", None):
|
|
up = getattr(test, "up")
|
|
html += f""" <p><strong>Above:</strong> "{up}"</p>\n"""
|
|
if hasattr(test, "down") and getattr(test, "down", None):
|
|
down = getattr(test, "down")
|
|
html += f""" <p><strong>Below:</strong> "{down}"</p>\n"""
|
|
if hasattr(test, "left") and getattr(test, "left", None):
|
|
left = getattr(test, "left")
|
|
html += f""" <p><strong>Left:</strong> "{left}"</p>\n"""
|
|
if hasattr(test, "right") and getattr(test, "right", None):
|
|
right = getattr(test, "right")
|
|
html += f""" <p><strong>Right:</strong> "{right}"</p>\n"""
|
|
elif test_type == "math" and hasattr(test, "math"):
|
|
math = getattr(test, "math", "")
|
|
html += f""" <p><strong>Math equation:</strong> {math}</p>\n"""
|
|
elif test_type == "format" and hasattr(test, "text"):
|
|
text = getattr(test, "text", "")
|
|
fmt = getattr(test, "format", "")
|
|
html += f""" <p><strong>Text:</strong> "{text}" should be formatted as <strong>{fmt}</strong></p>\n"""
|
|
elif test_type == "footnote" and hasattr(test, "marker"):
|
|
marker = getattr(test, "marker", "")
|
|
html += f""" <p><strong>Footnote marker:</strong> {marker}</p>\n"""
|
|
before = getattr(test, "appears_before_marker", None)
|
|
after = getattr(test, "appears_after_marker", None)
|
|
if before:
|
|
html += f""" <p><strong>Text before marker:</strong> "{before}"</p>\n"""
|
|
if after:
|
|
html += f""" <p><strong>Text after marker:</strong> "{after}"</p>\n"""
|
|
elif test_type == "baseline":
|
|
max_length = getattr(test, "max_length", None)
|
|
if max_length is not None:
|
|
html += f""" <p><strong>Baseline check:</strong> max length {max_length} (blank page check)</p>\n"""
|
|
else:
|
|
html += f""" <p><strong>Baseline check:</strong> non-blank, no repeats, valid characters</p>\n"""
|
|
|
|
html += """ </div>\n"""
|
|
|
|
# Add explanation for failed tests
|
|
if not passed:
|
|
html += f""" <div class="test-explanation">
|
|
<strong>Explanation:</strong> {explanation}
|
|
</div>\n"""
|
|
|
|
# Render PDF page
|
|
pdf_path = os.path.join(pdf_folder, pdf_name)
|
|
try:
|
|
html += """ <h4>PDF Render:</h4>\n"""
|
|
image_data = render_pdf_to_base64webp(pdf_path, page, 1024)
|
|
html += f""" <img class="pdf-image" alt="PDF Page {page}" src="data:image/webp;base64,{image_data}" />\n"""
|
|
except Exception as e:
|
|
html += f""" <p>Error rendering PDF: {str(e)}</p>\n"""
|
|
|
|
# Get the Markdown content for this page
|
|
md_content = None
|
|
try:
|
|
md_base = os.path.splitext(pdf_name)[0]
|
|
md_files = list(glob.glob(os.path.join(os.path.dirname(pdf_folder), candidate, f"{md_base}_pg{page}_repeat*.md")))
|
|
if md_files:
|
|
md_file_path = md_files[0] # Use the first repeat as an example
|
|
with open(md_file_path, "r", encoding="utf-8") as f:
|
|
md_content = f.read()
|
|
except Exception as e:
|
|
md_content = f"Error loading Markdown content: {str(e)}"
|
|
|
|
if md_content:
|
|
html += """ <h4>Markdown Content:</h4>\n"""
|
|
html += f""" <div class="markdown-content">{md_content}</div>\n"""
|
|
|
|
# End test block
|
|
html += """ </div>\n"""
|
|
|
|
# Add separator between pages
|
|
html += """ <hr>\n"""
|
|
|
|
# Close HTML
|
|
html += """</body>
|
|
</html>
|
|
"""
|
|
|
|
with open(output_file, "w", encoding="utf-8") as f:
|
|
f.write(html)
|
|
|
|
print(f"Simple HTML report generated: {output_file}")
|