You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: olmocr/bench/benchmark.py
+42-3
Original file line number
Diff line number
Diff line change
@@ -172,6 +172,7 @@ def main():
172
172
help="Run benchmark even if some files are missing",
173
173
)
174
174
parser.add_argument("--candidate", type=str, default=None, help="Run test only for a single candidate")
175
+
parser.add_argument("--skip_baseline", action="store_true", help="Skip running baseline tests (ex. that check that basic content is present on each page)")
175
176
parser.add_argument(
176
177
"--bootstrap_samples",
177
178
type=int,
@@ -226,8 +227,12 @@ def main():
226
227
sys.exit(1)
227
228
228
229
all_tests= []
230
+
test_to_jsonl= {} # Map test IDs to their source jsonl files
0 commit comments