Spaces:
Running
Running
File size: 12,310 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 | # -*- coding: utf-8 -*-
"""
IR Engine Module - SysCRED
===========================
Information Retrieval engine extracted from TREC AP88-90 project.
Features:
- TF-IDF calculation (custom and via Pyserini)
- BM25 scoring (via Lucene/Pyserini)
- Query Likelihood Dirichlet (QLD)
- Pseudo-Relevance Feedback (PRF)
- Porter Stemming integration
Based on: TREC_AP88-90_5juin2025.py
(c) Dominique S. Loyer - PhD Thesis Prototype
Citation Key: loyerEvaluationModelesRecherche2025
"""
import re
import math
from typing import Dict, List, Tuple, Optional, Any
from dataclasses import dataclass
from collections import Counter
# Check for optional dependencies
try:
import nltk
from nltk.corpus import stopwords
from nltk.stem import PorterStemmer
from nltk.tokenize import word_tokenize
HAS_NLTK = True
except ImportError:
HAS_NLTK = False
try:
from pyserini.search.lucene import LuceneSearcher
HAS_PYSERINI = True
except ImportError:
HAS_PYSERINI = False
# --- Data Classes ---
@dataclass
class SearchResult:
"""A single search result."""
doc_id: str
score: float
rank: int
snippet: Optional[str] = None
@dataclass
class SearchResponse:
"""Complete search response."""
query_id: str
query_text: str
results: List[SearchResult]
model: str # 'bm25', 'qld', 'tfidf'
total_hits: int
search_time_ms: float
class IREngine:
"""
Information Retrieval engine with multiple scoring methods.
Supports:
- Built-in TF-IDF/BM25 (no dependencies)
- Pyserini/Lucene BM25 and QLD (if pyserini installed)
- Query expansion with Pseudo-Relevance Feedback
"""
# BM25 default parameters
BM25_K1 = 0.9
BM25_B = 0.4
def __init__(self, index_path: str = None, use_stemming: bool = True):
"""
Initialize the IR engine.
Args:
index_path: Path to Lucene/Pyserini index (optional)
use_stemming: Whether to apply Porter stemming
"""
self.index_path = index_path
self.use_stemming = use_stemming
self.searcher = None
# Initialize NLTK components
if HAS_NLTK:
try:
self.stopwords = set(stopwords.words('english'))
self.stemmer = PorterStemmer() if use_stemming else None
except LookupError:
print("[IREngine] Downloading NLTK resources...")
nltk.download('stopwords', quiet=True)
nltk.download('punkt', quiet=True)
nltk.download('punkt_tab', quiet=True)
self.stopwords = set(stopwords.words('english'))
self.stemmer = PorterStemmer() if use_stemming else None
else:
# Fallback stopwords
self.stopwords = {
'the', 'a', 'an', 'and', 'or', 'but', 'in', 'on', 'at', 'to',
'for', 'of', 'with', 'by', 'from', 'as', 'is', 'was', 'are',
'were', 'been', 'be', 'have', 'has', 'had', 'do', 'does',
'did', 'will', 'would', 'could', 'should', 'may', 'might',
'must', 'shall', 'can', 'need', 'this', 'that', 'these',
'those', 'it', 'its', 'they', 'them', 'he', 'she', 'him',
'her', 'his', 'we', 'you', 'i', 'my', 'your', 'our', 'their'
}
self.stemmer = None
# Initialize Pyserini searcher if available
if HAS_PYSERINI and index_path:
try:
self.searcher = LuceneSearcher(index_path)
print(f"[IREngine] Pyserini searcher initialized with index: {index_path}")
except Exception as e:
print(f"[IREngine] Failed to initialize Pyserini: {e}")
def preprocess(self, text: str) -> str:
"""
Preprocess text with tokenization, stopword removal, and optional stemming.
This matches the TREC preprocessing pipeline.
"""
if not isinstance(text, str):
return ""
text = text.lower()
if HAS_NLTK:
try:
tokens = word_tokenize(text)
except LookupError:
# Fallback tokenization
tokens = re.findall(r'\b[a-z]+\b', text)
else:
tokens = re.findall(r'\b[a-z]+\b', text)
# Filter stopwords and non-alpha
filtered = [t for t in tokens if t.isalpha() and t not in self.stopwords]
# Apply stemming if enabled
if self.stemmer:
filtered = [self.stemmer.stem(t) for t in filtered]
return ' '.join(filtered)
def calculate_tf(self, tokens: List[str]) -> Dict[str, float]:
"""Calculate term frequency."""
if not tokens:
return {}
counts = Counter(tokens)
total = len(tokens)
return {term: count / total for term, count in counts.items()}
def calculate_bm25_score(
self,
query_terms: List[str],
doc_terms: List[str],
doc_length: int,
avg_doc_length: float,
doc_freq: Dict[str, int],
corpus_size: int
) -> float:
"""
Calculate BM25 score for a document.
BM25(D, Q) = Σ IDF(qi) × (f(qi,D) × (k1 + 1)) / (f(qi,D) + k1 × (1 - b + b × |D|/avgdl))
"""
doc_term_counts = Counter(doc_terms)
score = 0.0
for term in query_terms:
if term not in doc_term_counts:
continue
tf = doc_term_counts[term]
df = doc_freq.get(term, 1)
idf = math.log((corpus_size - df + 0.5) / (df + 0.5) + 1)
numerator = tf * (self.BM25_K1 + 1)
denominator = tf + self.BM25_K1 * (1 - self.BM25_B + self.BM25_B * doc_length / avg_doc_length)
score += idf * (numerator / denominator)
return score
def search_pyserini(
self,
query: str,
model: str = 'bm25',
k: int = 100,
query_id: str = "Q1"
) -> SearchResponse:
"""
Search using Pyserini/Lucene.
Args:
query: Query text
model: 'bm25' or 'qld'
k: Number of results
query_id: Query identifier
"""
import time
start = time.time()
if not self.searcher:
raise RuntimeError("Pyserini searcher not initialized. Provide index_path.")
# Configure similarity
if model == 'bm25':
self.searcher.set_bm25(k1=self.BM25_K1, b=self.BM25_B)
elif model == 'qld':
self.searcher.set_qld()
else:
self.searcher.set_bm25()
# Preprocess query
processed_query = self.preprocess(query)
# Search
hits = self.searcher.search(processed_query, k=k)
results = []
for i, hit in enumerate(hits):
results.append(SearchResult(
doc_id=hit.docid,
score=hit.score,
rank=i + 1
))
elapsed = (time.time() - start) * 1000
return SearchResponse(
query_id=query_id,
query_text=query,
results=results,
model=model,
total_hits=len(results),
search_time_ms=elapsed
)
def pseudo_relevance_feedback(
self,
query: str,
top_docs_texts: List[str],
num_expansion_terms: int = 10
) -> str:
"""
Expand query using Pseudo-Relevance Feedback (PRF).
Uses top-k retrieved documents to find expansion terms.
"""
query_tokens = self.preprocess(query).split()
# Collect terms from top documents
expansion_candidates = Counter()
for doc_text in top_docs_texts:
doc_tokens = self.preprocess(doc_text).split()
# Count terms not in original query
for token in doc_tokens:
if token not in query_tokens:
expansion_candidates[token] += 1
# Get top expansion terms
expansion_terms = [term for term, _ in expansion_candidates.most_common(num_expansion_terms)]
# Create expanded query
expanded_query = query + ' ' + ' '.join(expansion_terms)
return expanded_query
def format_trec_run(
self,
responses: List[SearchResponse],
run_tag: str
) -> str:
"""
Format results in TREC run file format.
Format: query_id Q0 doc_id rank score run_tag
"""
lines = []
for response in responses:
for result in response.results:
lines.append(
f"{response.query_id} Q0 {result.doc_id} "
f"{result.rank} {result.score:.6f} {run_tag}"
)
return '\n'.join(lines)
# --- Kaggle/Colab Utilities ---
def setup_kaggle_environment():
"""Setup environment for Kaggle notebooks."""
import subprocess
import sys
print("=" * 60)
print("SysCRED - Kaggle Environment Setup")
print("=" * 60)
# Check for GPU/TPU
import torch
if torch.cuda.is_available():
print(f"✓ GPU available: {torch.cuda.get_device_name(0)}")
else:
print("✗ No GPU detected")
# Install required packages
packages = [
'pyserini',
'transformers',
'pytrec_eval',
'nltk',
'rdflib'
]
print("\nInstalling packages...")
for pkg in packages:
try:
subprocess.run(
[sys.executable, '-m', 'pip', 'install', '-q', pkg],
check=True,
capture_output=True
)
print(f" ✓ {pkg}")
except:
print(f" ✗ {pkg} - install failed")
# Download NLTK resources
import nltk
for resource in ['stopwords', 'punkt', 'punkt_tab', 'wordnet']:
try:
nltk.download(resource, quiet=True)
except:
pass
print("\n✓ Environment setup complete")
def load_kaggle_dataset(dataset_path: str) -> str:
"""
Load a Kaggle dataset.
Args:
dataset_path: Path like '/kaggle/input/trec-ap88-90'
"""
import os
if os.path.exists(dataset_path):
print(f"✓ Dataset found: {dataset_path}")
return dataset_path
else:
print(f"✗ Dataset not found: {dataset_path}")
print("Make sure to add the dataset to your Kaggle notebook.")
return None
# --- Testing ---
if __name__ == "__main__":
print("=" * 60)
print("SysCRED IR Engine - Tests")
print("=" * 60)
engine = IREngine(use_stemming=True)
# Test preprocessing
print("\n1. Testing preprocessing...")
sample = "Information Retrieval systems help users find relevant documents."
processed = engine.preprocess(sample)
print(f" Original: {sample}")
print(f" Processed: {processed}")
# Test BM25
print("\n2. Testing BM25 calculation...")
query_terms = engine.preprocess("information retrieval").split()
doc_terms = engine.preprocess(sample).split()
score = engine.calculate_bm25_score(
query_terms=query_terms,
doc_terms=doc_terms,
doc_length=len(doc_terms),
avg_doc_length=10,
doc_freq={'inform': 5, 'retriev': 3},
corpus_size=100
)
print(f" BM25 Score: {score:.4f}")
# Test PRF
print("\n3. Testing Pseudo-Relevance Feedback...")
expanded = engine.pseudo_relevance_feedback(
query="information retrieval",
top_docs_texts=[
"Information retrieval is finding relevant documents in a collection.",
"Search engines use retrieval models like BM25 and TF-IDF.",
"Query expansion improves retrieval effectiveness."
]
)
print(f" Original query: information retrieval")
print(f" Expanded query: {expanded}")
print("\n" + "=" * 60)
print("Tests complete!")
print("=" * 60)
|