Spaces:
Sleeping
Sleeping
File size: 9,183 Bytes
a3ae00a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 | """
evaluation/eval.py
Runs the full pipeline against test_queries.jsonl and computes retrieval metrics.
"""
from __future__ import annotations
import argparse
import csv
import json
import sys
import traceback
from pathlib import Path
from typing import List
# ββ Run from current_spring2026/ ββββββββββββββββββββββββββββββββββββββββββββββ
sys.path.insert(0, str(Path(__file__).parent.parent))
from pipeline import run_query, PipelineResult
# ββ Metric helpers ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def hit_at_k(retrieved: List[str], ground_truths: List[str], k: int) -> int:
return int(any(gt in retrieved[:k] for gt in ground_truths))
def reciprocal_rank(retrieved: List[str], ground_truths: List[str]) -> float:
for i, ark_id in enumerate(retrieved, start=1):
if ark_id in ground_truths:
return 1.0 / i
return 0.0
def recall_at_k(retrieved: List[str], ground_truths: List[str], k: int) -> float:
if not ground_truths:
return 0.0
hits = sum(1 for gt in ground_truths if gt in retrieved[:k])
return hits / len(ground_truths)
def precision_at_k(retrieved: List[str], ground_truths: List[str], k: int) -> float:
if k == 0:
return 0.0
hits = sum(1 for ark in retrieved[:k] if ark in ground_truths)
return hits / k
# ββ Main ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def main():
parser = argparse.ArgumentParser()
parser.add_argument(
"--queries",
default=str(Path(__file__).parent.parent / "test_queries.jsonl"),
help="Path to test_queries.jsonl",
)
parser.add_argument(
"--out",
default=str(Path(__file__).parent / "eval_results.csv"),
help="Path to save per-query CSV results",
)
args = parser.parse_args()
K_VALUES = [10, 30, 50]
MAX_K = max(K_VALUES)
queries_path = Path(args.queries)
if not queries_path.exists():
print(f"ERROR: test queries file not found at {queries_path}")
sys.exit(1)
with open(queries_path) as f:
entries = [json.loads(line) for line in f if line.strip()]
print(f"Loaded {len(entries)} queries from {queries_path}")
print(f"Evaluating top-{K_VALUES} retrieved results\n")
rows = []
for i, entry in enumerate(entries):
question = entry["question"]
qtype = entry["question_type"]
ground_truths = [
g["ark_id"].removeprefix("commonwealth:")
for g in entry.get("ground_truths", [])
]
reference_answer = entry.get("answer", "")
print(f"[{i+1:02d}/{len(entries)}] ({qtype}) {question[:70]}...")
try:
result: PipelineResult = run_query(question, top_k=MAX_K)
retrieved_ids = [doc.ark_id for doc in result.documents]
mrr = reciprocal_rank(retrieved_ids, ground_truths)
# Hallucination test: pipeline should return no docs (or say "no results")
if qtype == "hallucination_test":
hallucination_pass = int(
len(retrieved_ids) == 0
or "no relevant" in result.generation.response.lower()
or "not found" in result.generation.response.lower()
)
else:
hallucination_pass = ""
row = {
"question": question,
"question_type": qtype,
"rewritten_query": result.intent.rewritten_query,
"num_ground_truths": len(ground_truths),
"num_retrieved": len(retrieved_ids),
"mrr": round(mrr, 4),
"hallucination_pass": hallucination_pass,
"response_preview": result.generation.response[:150].replace("\n", " "),
"retrieved_ids": "|".join(retrieved_ids),
"ground_truth_ids": "|".join(ground_truths),
"latency_ms": result.latency_ms,
"error": "",
}
for k in K_VALUES:
row[f"hit_at_{k}"] = hit_at_k(retrieved_ids, ground_truths, k)
row[f"recall_at_{k}"] = round(recall_at_k(retrieved_ids, ground_truths, k), 4)
row[f"precision_at_{k}"] = round(precision_at_k(retrieved_ids, ground_truths, k), 4)
status = " " + " ".join(f"hit@{k}={row[f'hit_at_{k}']}" for k in K_VALUES)
status += f" mrr={mrr:.3f}"
if qtype == "hallucination_test":
status += f" hallucination_pass={hallucination_pass}"
print(status)
except Exception as e:
traceback.print_exc()
print(f" ERROR: {e}")
row = {
"question": question,
"question_type": qtype,
"classified_as": "",
"rewritten_query": "",
"num_ground_truths": len(ground_truths),
"num_retrieved": 0,
"mrr": "",
"hallucination_pass": "",
"response_preview": "",
"retrieved_ids": "",
"ground_truth_ids": "|".join(ground_truths),
"latency_ms": "",
"error": str(e),
}
for k in K_VALUES:
row[f"hit_at_{k}"] = ""
row[f"recall_at_{k}"] = ""
row[f"precision_at_{k}"] = ""
rows.append(row)
# ββ Save CSV ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
out_path = Path(args.out)
out_path.parent.mkdir(parents=True, exist_ok=True)
fieldnames = list(rows[0].keys())
with open(out_path, "w", newline="", encoding="utf-8") as f:
writer = csv.DictWriter(f, fieldnames=fieldnames)
writer.writeheader()
writer.writerows(rows)
print(f"\nPer-query results saved to {out_path}")
# ββ Summary by query type βββββββββββββββββββββββββββββββββββββββββββββββββ
print("\n" + "=" * 55)
print("SUMMARY")
print("=" * 55)
summary_rows = []
for qtype in ["metadata", "full_text", "hallucination_test"]:
subset = [r for r in rows if r["question_type"] == qtype and r["mrr"] != ""]
if not subset:
continue
n = len(subset)
avg = lambda key: sum(r[key] for r in subset) / n # noqa: E731
print(f"\n{qtype} (n={n})")
print(f" MRR : {avg('mrr'):.3f}")
summary_row = {
"question_type": qtype,
"n": n,
"mrr": round(avg("mrr"), 4),
"hallucination_pass_rate": "",
}
for k in K_VALUES:
print(f" Hit@{k:<2} : {avg(f'hit_at_{k}'):.3f}")
print(f" Recall@{k:<2} : {avg(f'recall_at_{k}'):.3f}")
print(f" Precision@{k:<2} : {avg(f'precision_at_{k}'):.3f}")
summary_row[f"hit_at_{k}"] = round(avg(f"hit_at_{k}"), 4)
summary_row[f"recall_at_{k}"] = round(avg(f"recall_at_{k}"), 4)
summary_row[f"precision_at_{k}"] = round(avg(f"precision_at_{k}"), 4)
if qtype == "hallucination_test":
hall_subset = [r for r in rows if r["question_type"] == qtype and r["hallucination_pass"] != ""]
if hall_subset:
pass_rate = sum(r["hallucination_pass"] for r in hall_subset) / len(hall_subset)
print(f" Hallucination pass : {pass_rate:.3f}")
summary_row["hallucination_pass_rate"] = round(pass_rate, 4)
summary_rows.append(summary_row)
errors = [r for r in rows if r["error"]]
if errors:
print(f"\nFailed queries: {len(errors)}")
for r in errors:
print(f" - {r['question'][:60]}: {r['error']}")
print()
# ββ Save summary CSV ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if summary_rows:
summary_path = out_path.with_name(out_path.stem + "_summary.csv")
summary_fieldnames = list(summary_rows[0].keys())
with open(summary_path, "w", newline="", encoding="utf-8") as f:
writer = csv.DictWriter(f, fieldnames=summary_fieldnames)
writer.writeheader()
writer.writerows(summary_rows)
print(f"Summary results saved to {summary_path}")
if __name__ == "__main__":
main()
|