Spaces:
Sleeping
Sleeping
File size: 12,828 Bytes
e70050b | 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 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 | # -*- coding: utf-8 -*-
"""
TREC Benchmark Script - SysCRED
================================
Run TREC-style evaluation on the fact-checking system.
This script:
1. Loads TREC AP88-90 topics and qrels
2. Runs retrieval with multiple models (BM25, QLD, TF-IDF)
3. Evaluates using pytrec_eval metrics
4. Generates comparison tables and visualizations
Usage:
python run_trec_benchmark.py --index /path/to/index --qrels /path/to/qrels
(c) Dominique S. Loyer - PhD Thesis Prototype
Citation Key: loyerEvaluationModelesRecherche2025
"""
import os
import sys
import json
import argparse
import time
from pathlib import Path
from typing import Dict, List, Any, Tuple
from collections import defaultdict
# Add parent directory to path
sys.path.insert(0, str(Path(__file__).parent))
from syscred.trec_retriever import TRECRetriever, RetrievalResult
from syscred.trec_dataset import TRECDataset, SAMPLE_TOPICS
from syscred.eval_metrics import EvaluationMetrics
class TRECBenchmark:
"""
TREC-style benchmark runner for SysCRED.
Runs multiple retrieval configurations and compares performance
using standard IR metrics.
"""
# Configurations to test
CONFIGURATIONS = [
{"name": "BM25", "model": "bm25", "prf": False},
{"name": "BM25+PRF", "model": "bm25", "prf": True},
{"name": "QLD", "model": "qld", "prf": False},
{"name": "QLD+PRF", "model": "qld", "prf": True},
]
# Metrics to evaluate
METRICS = ["map", "ndcg", "P_10", "P_20", "recall_100", "recip_rank"]
def __init__(
self,
index_path: str = None,
corpus_path: str = None,
topics_path: str = None,
qrels_path: str = None,
output_dir: str = None
):
"""
Initialize the benchmark runner.
Args:
index_path: Path to Lucene index
corpus_path: Path to JSONL corpus
topics_path: Path to TREC topics
qrels_path: Path to TREC qrels
output_dir: Directory for output files
"""
self.index_path = index_path
self.corpus_path = corpus_path
self.topics_path = topics_path
self.qrels_path = qrels_path
self.output_dir = Path(output_dir) if output_dir else Path("benchmark_results")
# Create output directory
self.output_dir.mkdir(parents=True, exist_ok=True)
# Initialize components
self.dataset = TRECDataset(
topics_dir=topics_path,
qrels_dir=qrels_path,
corpus_path=corpus_path
)
self.retriever = TRECRetriever(
index_path=index_path,
corpus_path=corpus_path,
use_stemming=True
)
self.metrics = EvaluationMetrics()
# Results storage
self.results: Dict[str, Dict[str, Any]] = {}
def load_data(self):
"""Load topics and qrels."""
print("\n" + "=" * 60)
print("Loading TREC Data")
print("=" * 60)
# Load topics
if self.topics_path:
self.dataset.load_topics(self.topics_path)
else:
# Use sample topics
print("[Benchmark] Using sample topics (no topics file provided)")
self.dataset.topics = SAMPLE_TOPICS.copy()
# Load qrels
if self.qrels_path:
self.dataset.load_qrels(self.qrels_path)
else:
print("[Benchmark] No qrels provided - evaluation will be limited")
# Load corpus if available
if self.corpus_path:
self.dataset.load_corpus_jsonl(self.corpus_path)
stats = self.dataset.get_statistics()
print(f"\nDataset Statistics:")
for key, value in stats.items():
print(f" {key}: {value}")
def run_configuration(
self,
config: Dict[str, Any],
query_type: str = "short",
k: int = 100
) -> Tuple[str, Dict[str, Any]]:
"""
Run a single retrieval configuration.
Returns:
(run_tag, results_dict)
"""
config_name = config["name"]
model = config["model"]
use_prf = config["prf"]
run_tag = f"syscred_{config_name}_{query_type}"
print(f"\n--- Running: {run_tag} ---")
queries = self.dataset.get_topic_queries(query_type)
if not queries:
print(f" No queries available!")
return run_tag, {}
# Run retrieval
start_time = time.time()
all_results = []
run_lines = []
for topic_id, query_text in queries.items():
result = self.retriever.retrieve_evidence(
claim=query_text,
k=k,
model=model,
use_prf=use_prf
)
for evidence in result.evidences:
all_results.append({
"topic_id": topic_id,
"doc_id": evidence.doc_id,
"score": evidence.score,
"rank": evidence.rank
})
run_lines.append(
f"{topic_id} Q0 {evidence.doc_id} {evidence.rank} {evidence.score:.6f} {run_tag}"
)
elapsed = time.time() - start_time
# Save run file
run_file = self.output_dir / f"{run_tag}.run"
with open(run_file, 'w') as f:
f.write("\n".join(run_lines))
print(f" Queries: {len(queries)}")
print(f" Total results: {len(all_results)}")
print(f" Time: {elapsed:.2f}s")
print(f" Saved: {run_file}")
return run_tag, {
"config": config,
"query_type": query_type,
"results": all_results,
"run_file": str(run_file),
"elapsed_time": elapsed
}
def evaluate_run(self, run_tag: str, results: Dict[str, Any]) -> Dict[str, float]:
"""
Evaluate a run using pytrec_eval.
Returns dictionary of metric -> value (aggregated across queries).
"""
if not self.dataset.qrels:
print(f" [Skip evaluation - no qrels]")
return {}
# Convert results to pytrec format: {query_id: [(doc_id, score), ...]}
run = defaultdict(list)
for r in results["results"]:
run[r["topic_id"]].append((r["doc_id"], r["score"]))
# Sort each query's results by score descending
for qid in run:
run[qid].sort(key=lambda x: x[1], reverse=True)
# Convert qrels to pytrec format
qrels = {}
for topic_id, docs in self.dataset.qrels.items():
qrels[topic_id] = {doc_id: rel for doc_id, rel in docs.items()}
# Evaluate
try:
per_query_results = self.metrics.evaluate_run(dict(run), qrels, self.METRICS)
# Aggregate results across queries
aggregated = self.metrics.compute_aggregate(per_query_results)
return aggregated
except Exception as e:
print(f" [Evaluation error: {e}]")
return {}
def run_full_benchmark(self, query_types: List[str] = None, k: int = 100):
"""
Run the complete benchmark suite.
Args:
query_types: List of query types to test ("short", "long")
k: Number of results per query
"""
if query_types is None:
query_types = ["short", "long"]
print("\n" + "=" * 60)
print("TREC Benchmark - SysCRED")
print("=" * 60)
# Load data
self.load_data()
# Run all configurations
print("\n" + "=" * 60)
print("Running Retrieval Experiments")
print("=" * 60)
for query_type in query_types:
for config in self.CONFIGURATIONS:
run_tag, results = self.run_configuration(
config, query_type, k
)
if results:
self.results[run_tag] = results
# Evaluate
metrics = self.evaluate_run(run_tag, results)
self.results[run_tag]["metrics"] = metrics
# Generate report
self.generate_report()
return self.results
def generate_report(self):
"""Generate summary report."""
print("\n" + "=" * 60)
print("Benchmark Results Summary")
print("=" * 60)
# Table header
header = ["Configuration", "Query", "MAP", "NDCG", "P@10", "MRR", "Time(s)"]
print("\n" + " | ".join(f"{h:^12}" for h in header))
print("-" * 100)
# Table rows
for run_tag, data in self.results.items():
metrics = data.get("metrics", {})
row = [
data["config"]["name"][:12],
data["query_type"][:5],
f"{metrics.get('map', 0):.4f}",
f"{metrics.get('ndcg', 0):.4f}",
f"{metrics.get('P_10', 0):.4f}",
f"{metrics.get('recip_rank', 0):.4f}",
f"{data.get('elapsed_time', 0):.2f}"
]
print(" | ".join(f"{v:^12}" for v in row))
# Save detailed results
results_file = self.output_dir / "benchmark_results.json"
# Make results JSON serializable
serializable_results = {}
for run_tag, data in self.results.items():
serializable_results[run_tag] = {
"config": data["config"],
"query_type": data["query_type"],
"metrics": data.get("metrics", {}),
"elapsed_time": data.get("elapsed_time", 0),
"num_results": len(data.get("results", []))
}
with open(results_file, 'w') as f:
json.dump(serializable_results, f, indent=2)
print(f"\nDetailed results saved to: {results_file}")
# Generate LaTeX table
self._generate_latex_table()
def _generate_latex_table(self):
"""Generate LaTeX table for paper."""
latex_file = self.output_dir / "results_table.tex"
lines = [
r"\begin{table}[ht]",
r"\centering",
r"\caption{TREC AP88-90 Retrieval Results}",
r"\label{tab:trec-results}",
r"\begin{tabular}{l|l|cccc}",
r"\toprule",
r"Model & Query & MAP & NDCG & P@10 & MRR \\",
r"\midrule"
]
for run_tag, data in self.results.items():
metrics = data.get("metrics", {})
row = (
f"{data['config']['name']} & {data['query_type']} & "
f"{metrics.get('map', 0):.4f} & "
f"{metrics.get('ndcg', 0):.4f} & "
f"{metrics.get('P_10', 0):.4f} & "
f"{metrics.get('recip_rank', 0):.4f} \\\\"
)
lines.append(row)
lines.extend([
r"\bottomrule",
r"\end{tabular}",
r"\end{table}"
])
with open(latex_file, 'w') as f:
f.write("\n".join(lines))
print(f"LaTeX table saved to: {latex_file}")
def main():
"""Main entry point."""
parser = argparse.ArgumentParser(
description="Run TREC benchmark for SysCRED"
)
parser.add_argument(
"--index", "-i",
help="Path to Lucene index"
)
parser.add_argument(
"--corpus", "-c",
help="Path to JSONL corpus"
)
parser.add_argument(
"--topics", "-t",
help="Path to TREC topics file/directory"
)
parser.add_argument(
"--qrels", "-q",
help="Path to TREC qrels file/directory"
)
parser.add_argument(
"--output", "-o",
default="benchmark_results",
help="Output directory for results"
)
parser.add_argument(
"--k",
type=int,
default=100,
help="Number of results per query"
)
args = parser.parse_args()
# Run benchmark
benchmark = TRECBenchmark(
index_path=args.index,
corpus_path=args.corpus,
topics_path=args.topics,
qrels_path=args.qrels,
output_dir=args.output
)
results = benchmark.run_full_benchmark(k=args.k)
print("\n" + "=" * 60)
print("Benchmark Complete!")
print("=" * 60)
if __name__ == "__main__":
main()
|