Skip to content

Commit

Permalink
runelo start
Browse files Browse the repository at this point in the history
  • Loading branch information
jakep-allenai committed Jan 14, 2025
1 parent ef4167d commit 834e91c
Showing 1 changed file with 88 additions and 0 deletions.
88 changes: 88 additions & 0 deletions pdelfin/eval/runelo.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
import argparse
import boto3
import dataclasses
import random

from itertools import combinations
from pdelfin.s3_utils import parse_s3_path, expand_s3_glob, get_s3_bytes
from dolma_refine.evaluate.metrics import DocumentEditSimilarity
from dolma_refine.evaluate.segmenters import SpacySegmenter
from dolma_refine.evaluate.aligners import HirschbergAligner

s3_client = boto3.client('s3')

@dataclasses.dataclass
class Comparison:
pdf_path: str

comparison_a_path: str
comparison_b_path: str

alignment: float

def build_review_page(args):
pass

if __name__ == "__main__":
parser = argparse.ArgumentParser(
description="Generates comparison voting pages between different pairs of parses for a PDF."
)
parser.add_argument(
'--name',
default="review_page",
help="What name to give to this evaluation/comparison"
)
parser.add_argument(
'--review_size',
default=20,
type=int,
help="Number of entries to show on the generated review page",
)
parser.add_argument(
'--comparisons',
default=["pdelf", "gotocr", "gotocr_format"],
help="Different variants to compare against"
)
parser.add_argument(
's3_path',
type=str,
help='Path to the folder where you keep your data files, expecting to see *.md files in there along with *.png and *.pdf'
)

args = parser.parse_args()

segmenter = SpacySegmenter("spacy")
aligner = HirschbergAligner(match_score=1,
mismatch_score=-1,
indel_score=-1)
comparer = DocumentEditSimilarity(segmenter=segmenter, aligner=aligner)

all_comps = []
all_pdfs = set(expand_s3_glob(s3_client, args.s3_path + "/*.pdf"))
all_mds = set(expand_s3_glob(s3_client, args.s3_path + "/*.md"))

for pdf_path in all_pdfs:
pdf_comps = []
for comp in args.comparisons:
comp_path = pdf_path.replace(".pdf", f"_{comp}.md")
if comp_path in all_mds:
pdf_comps.append(comp_path)

for (compa, compb) in combinations(pdf_comps, 2):
if random.choice([True, False]):
compa, compb = compb, compa

text_a = get_s3_bytes(s3_client, compa).decode("utf-8")
text_b = get_s3_bytes(s3_client, compb).decode("utf-8")

all_comps.append(
Comparison(pdf_path=pdf_path,
comparison_a_path=compa,
comparison_b_path=compb,
alignment=comparer.compute(text_a, text_b)
)
)

print(all_comps[-1])

result = build_review_page(args)

0 comments on commit 834e91c

Please # to comment.