Spaces:
Sleeping
Sleeping
File size: 20,127 Bytes
d82f721 77df376 d82f721 77df376 d82f721 77df376 d82f721 77df376 d82f721 4c643cf d82f721 | 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 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 | """
Evaluation pipeline for the UI GreenMetric RAG system — powered by DeepEval.
v1.0 — replaces the RAGAS-based evaluate_ragas.py with DeepEval metrics:
- Faithfulness -> FaithfulnessMetric
- Context Recall -> ContextualRecallMetric
- NDCG@K -> ContextualPrecisionMetric
- G-Eval -> GEval (compares generated answer to ground truth, 0-1)
- Router Accuracy -> RouterAccuracyMetric (custom, checks route vs label)
"""
import glob
import os
import time
from dataclasses import dataclass
import pandas as pd
from dotenv import load_dotenv
from openai import OpenAI
from deepeval.test_case import LLMTestCase, LLMTestCaseParams
from deepeval.metrics import (
BaseMetric,
FaithfulnessMetric,
ContextualRecallMetric,
ContextualPrecisionMetric,
GEval,
)
from deepeval import evaluate
from deepeval.models.base_model import DeepEvalBaseLLM
from deepeval.evaluate.configs import DisplayConfig
from src.pipeline import ask
from src.router import route, paraphrase
load_dotenv()
# Save JSON results per run (avoids "no results_folder" warning)
os.environ.setdefault("DEEPEVAL_RESULTS_FOLDER", "./data")
# ---------------------------------------------------------------------------
# Custom LLM judge — wraps DeepSeek for DeepEval
# ---------------------------------------------------------------------------
class DeepSeekEvalLLM(DeepEvalBaseLLM):
"""Custom LLM judge backed by the DeepSeek API."""
def __init__(self, model_name: str = "deepseek-v4-flash"):
self.model_name = model_name
self._client = OpenAI(
api_key=os.getenv("DEEPSEEK_API_KEY"),
base_url="https://api.deepseek.com",
)
def load_model(self):
return self._client
def generate(self, prompt: str) -> str:
resp = self._client.chat.completions.create(
model=self.model_name,
messages=[{"role": "user", "content": prompt}],
extra_body={"thinking": {"type": "disabled"}},
max_tokens=8192,
temperature=0.0,
)
return resp.choices[0].message.content
async def a_generate(self, prompt: str) -> str:
import asyncio
return await asyncio.to_thread(self.generate, prompt)
def get_model_name(self) -> str:
return f"DeepSeek {self.model_name}"
EVAL_MODEL = DeepSeekEvalLLM("deepseek-v4-flash")
# ---------------------------------------------------------------------------
# Router Accuracy — custom DeepEval metric
# ---------------------------------------------------------------------------
class RouterAccuracyMetric(BaseMetric):
"""Measures whether the pipeline router returned the expected source."""
def __init__(
self,
threshold: float = 0.5,
include_reason: bool = True,
strict_mode: bool = False,
async_mode: bool = True,
):
super().__init__()
self.threshold = threshold
self.include_reason = include_reason
self.strict_mode = strict_mode
self.async_mode = async_mode
self.error = None
@staticmethod
def _compare(expected: str, route: dict) -> bool:
if expected == "none":
return route["source"] == "none"
if expected == "pdf":
return route["source"] == "pdf"
if expected.startswith("both_pdf_"):
csv = expected[len("both_pdf_"):]
return route["source"] == "both" and route.get("csv_source") == csv
if expected.startswith("csv_"):
return route["source"] == "csv" and route.get("csv_source") == expected
return False
def measure(self, test_case: LLMTestCase) -> float:
try:
expected = test_case.additional_metadata["expected_source"]
route = test_case.additional_metadata["route"]
self.score = 1.0 if self._compare(expected, route) else 0.0
if self.include_reason:
r_src = route["source"]
r_csv = route.get("csv_source")
actual = r_src + (f"/{r_csv}" if r_csv else "")
self.reason = (
f"matched (expected={expected})"
if self.score == 1.0
else f"mismatch: expected={expected}, got={actual}"
)
self.success = self.score >= self.threshold
return self.score
except Exception as e:
self.error = str(e)
raise
async def a_measure(self, test_case: LLMTestCase) -> float:
return self.measure(test_case)
def is_successful(self) -> bool:
if self.error is not None:
self.success = False
else:
try:
self.success = self.score >= self.threshold
except TypeError:
self.success = False
return self.success
@property
def __name__(self):
return "Router Accuracy"
# ---------------------------------------------------------------------------
# RAG metrics
# ---------------------------------------------------------------------------
FAITHFULNESS = FaithfulnessMetric(
threshold=0.7,
model=EVAL_MODEL,
include_reason=True,
)
CONTEXT_RECALL = ContextualRecallMetric(
threshold=0.7,
model=EVAL_MODEL,
include_reason=True,
)
CONTEXT_PRECISION = ContextualPrecisionMetric(
threshold=0.7,
model=EVAL_MODEL,
include_reason=True,
)
STRICT_CORRECTNESS = GEval(
name="Strict Answer Correctness",
criteria=(
"Compare the 'actual_output' against the 'expected_output'. "
"Evaluate how accurately the actual output captures the core facts, "
"numeric thresholds, and logical constraints strictly defined in the "
"expected output. Score on a continuous spectrum from 0 to 1, where 1 "
"means a perfect factual match, and 0 means complete failure, "
"contradiction, or an 'I don't know' fallback. Treat answers in "
"English and Bahasa Indonesia as equivalent if they are semantically "
"identical. Do not penalize language differences."
),
evaluation_params=[
LLMTestCaseParams.ACTUAL_OUTPUT,
LLMTestCaseParams.EXPECTED_OUTPUT,
],
threshold=0.7,
model=EVAL_MODEL,
)
ROUTER_ACCURACY = RouterAccuracyMetric(threshold=0.5)
ALL_METRICS = [
FAITHFULNESS,
CONTEXT_RECALL,
CONTEXT_PRECISION,
STRICT_CORRECTNESS,
]
_METRIC_LABELS = {
"Faithfulness": "F",
"Contextual Recall": "CR",
"Contextual Precision": "CP",
"Strict Answer Correctness": "GE",
"Router Accuracy": "RT",
}
# ---------------------------------------------------------------------------
# Test case loading
# ---------------------------------------------------------------------------
@dataclass
class TestCase:
"""One row from the test case xlsx — raw data before running ask()."""
idx: int
question: str
ground_truth: str
expected_source: str
notes: str = ""
def load_test_cases(path: str = "test_cases/test_cases.xlsx") -> list[TestCase]:
"""Load test cases from the Excel file."""
df = pd.read_excel(path)
cases: list[TestCase] = []
for i, row in df.iterrows():
cases.append(
TestCase(
idx=i,
question=row["question"],
ground_truth=row["ground_truth"],
expected_source=row["source"],
notes=str(row.get("notes", ""))
if pd.notna(row.get("notes", ""))
else "",
)
)
return cases
# ---------------------------------------------------------------------------
# Run evaluation
# ---------------------------------------------------------------------------
def run_evaluation(path: str = "test_cases/test_cases.xlsx") -> None:
test_cases = load_test_cases(path=path)
deep_eval_cases: list[LLMTestCase] = []
none_idxs: set[int] = set()
case_route_marks: dict[int, bool] = {}
case_contexts: dict[int, list[str]] = {} # case.idx -> retrieved chunks
case_answers: dict[int, str] = {} # case.idx -> generated answer
# ---- Phase 0: pre-compute routes and paraphrases ----
case_routes_cache: dict[int, dict] = {}
case_queries_cache: dict[int, list[str]] = {}
for case in test_cases:
r, _ = route(case.question)
case_routes_cache[case.idx] = r
if r["source"] != "none" and r["query_type"] != "aggregate":
try:
vars_, _ = paraphrase(case.question)
case_queries_cache[case.idx] = [case.question] + vars_
except Exception:
case_queries_cache[case.idx] = [case.question]
# ---- Phase 1: run all test cases through ask() ----
case_routes: dict[int, dict] = {} # case.idx -> route dict
case_timing: dict[int, float] = {} # case.idx -> total seconds
case_rerank_ms: dict[int, float] = {} # case.idx -> reranker ms
for case in test_cases:
t0 = time.perf_counter()
result = ask(
case.question,
_route_result=case_routes_cache.get(case.idx),
_fusion_queries=case_queries_cache.get(case.idx),
)
elapsed = time.perf_counter() - t0
case_timing[case.idx] = elapsed
case_rerank_ms[case.idx] = result.get("rerank_ms", 0.0)
route_ok = RouterAccuracyMetric._compare(
case.expected_source, result["route"]
)
case_route_marks[case.idx] = route_ok
case_routes[case.idx] = result["route"]
case_contexts[case.idx] = result["contexts"]
case_answers[case.idx] = result["answer"]
if result["route"]["source"] == "none":
none_idxs.add(case.idx)
else:
deep_eval_cases.append(
LLMTestCase(
name=str(case.idx),
input=case.question,
actual_output=result["answer"],
expected_output=case.ground_truth,
retrieval_context=result["contexts"],
additional_metadata={
"expected_source": case.expected_source,
"route": result["route"],
},
)
)
# ---- Phase 2: batch DeepEval scoring (with retry) ----
json_path: str | None = None
if deep_eval_cases:
succeeded = False
for attempt in range(3):
try:
evaluate(
test_cases=deep_eval_cases,
metrics=ALL_METRICS,
display_config=DisplayConfig(
print_results=False,
show_indicator=True,
results_folder="./data",
),
)
succeeded = True
break
except Exception as exc:
if attempt < 2:
print(f"\n[RETRY {attempt+1}/2] DeepEval failed: {exc}")
else:
print(f"\n[WARNING] DeepEval evaluate() failed after 3 attempts: {exc}")
print(" Continuing with report (scores will be N/A).")
if succeeded:
files = sorted(glob.glob(os.path.join("./data", "test_run_*.json")))
if files:
json_path = files[-1]
else:
print("\n[WARNING] No JSON saved — report will show N/A.")
# ---- Phase 3: report (reads from JSON for guaranteed consistency) ----
_print_report(test_cases, json_path, none_idxs, case_route_marks,
case_routes, case_contexts, case_answers,
case_timing, case_rerank_ms)
# ---------------------------------------------------------------------------
# Report
# ---------------------------------------------------------------------------
def _print_report(
test_cases: list[TestCase],
json_path: str | None,
none_idxs: set[int],
case_route_marks: dict[int, bool],
case_routes: dict[int, dict],
case_contexts: dict[int, list[str]],
case_answers: dict[int, str],
case_timing: dict[int, float],
case_rerank_ms: dict[int, float],
) -> None:
import json as _json
total = len(test_cases)
SEP = "=" * 70
# Build scored lookup from JSON (not from eval_result — guaranteed match)
scored_lookup: dict[int, dict[str, float]] = {}
metric_names: list[str] = []
if json_path is None:
print(f"\n[WARNING] No test run JSON available — scores are N/A.")
if json_path:
with open(json_path) as f:
data = _json.load(f)
for tc_data in data.get("testCases", []):
name = tc_data.get("name", "")
if name.isdigit():
case_idx = int(name)
scored_lookup[case_idx] = {}
for md in tc_data.get("metricsData", []):
score = md.get("score")
if score is not None:
scored_lookup[case_idx][md["name"]] = score
# Derive metric names from first scored case
if scored_lookup:
first_scores = next(iter(scored_lookup.values()))
metric_names = list(first_scores.keys())
# ---- 1. Aggregate scores ----
print(f"\n{SEP}")
print(" 1. AGGREGATE DEEPEVAL SCORES")
print(SEP)
for name in metric_names:
vals = [scores.get(name) for scores in scored_lookup.values()]
vals = [v for v in vals if v is not None]
mean = sum(vals) / len(vals) if vals else float("nan")
label = _METRIC_LABELS.get(name, name[:2])
print(f" {label:>4} {name:<32} {mean:.2f}")
# Router accuracy computed from all 40 cases (not just scored subset)
route_correct = sum(1 for v in case_route_marks.values() if v)
route_mean = route_correct / total if total else 0.0
print(f" {'RT':>4} {'Router Accuracy':<32} {route_mean:.2f}")
print()
# Timing
timings = [case_timing[i] for i in case_timing]
avg_total = sum(timings) / len(timings) * 1000 if timings else 0
rerank_times = [case_rerank_ms[i] for i in case_rerank_ms if case_rerank_ms[i] > 0]
avg_rerank = sum(rerank_times) / len(rerank_times) if rerank_times else 0
print(f" {'':>4} {'Avg total per case (ms)':<32} {avg_total:.0f}")
print(f" {'':>4} {'Avg reranker per case (ms)':<32} {avg_rerank:.0f}")
print()
# ---- 2. Router accuracy (aggregate from all 40 cases, + misroute list) ----
route_correct = sum(1 for v in case_route_marks.values() if v)
print(SEP)
print(" 2. ROUTER ACCURACY")
print(SEP)
print(f" {route_correct}/{total} ({route_correct / total:.1%})")
misrouted = [
c for c in test_cases
if not case_route_marks.get(c.idx, False)
]
if misrouted:
print()
for case in misrouted:
# We don't store routes separately anymore; print expected only
print(f" no #{case.idx} expected={case.expected_source}")
print(f" Q: {case.question[:100]}...")
print()
# ---- 3. Per-question table ----
print(SEP)
print(" 3. PER-QUESTION RESULTS")
print(SEP)
short_names = [
_METRIC_LABELS.get(n, n[:2]) for n in metric_names
] if metric_names else ["F", "CR", "CP", "GE", "RT"]
header = (
f" {'#':>3} {'Question':<48}"
+ "".join(f" {s:>6}" for s in short_names)
+ f" {'Route':>6} {'Time':>8} {'Rerank':>7}"
)
print(header)
print(f" {'-' * (96 + len(short_names) * 7)}")
for case in test_cases:
q = (
case.question[:45] + "..."
if len(case.question) > 48
else case.question.ljust(48)
)
idx = case.idx
route_mark = "yes" if case_route_marks.get(idx, False) else "no"
elapsed_s = case_timing.get(idx, 0.0)
rerank = case_rerank_ms.get(idx, 0.0)
time_str = f"{elapsed_s * 1000:>7.0f}ms"
rerank_str = f"{rerank:>6.0f}ms" if rerank > 0 else " -"
if idx in none_idxs:
blanks = "".join(" " * 7 for _ in short_names)
print(f" {idx:>3} {q}{blanks} NONE {route_mark:>6} {time_str} {rerank_str}")
elif idx in scored_lookup:
scores = scored_lookup[idx]
score_strs = ""
for n in metric_names:
v = scores.get(n)
if v is not None:
score_strs += f" {v:>6.2f}"
else:
score_strs += f" {'N/A':>6}"
print(f" {idx:>3} {q}{score_strs} {route_mark:>6} {time_str} {rerank_str}")
else:
blanks = "".join(" " * 7 for _ in short_names)
print(f" {idx:>3} {q}{blanks} MISS {route_mark:>6} {time_str} {rerank_str}")
# ---- 4. Context dump for retrieval failures (CR = 0.00) ----
_CR_ZERO = "Contextual Recall"
if scored_lookup:
cr_zero_idxs = {
idx for idx, scores in scored_lookup.items()
if scores.get(_CR_ZERO, 1.0) == 0.0
}
if cr_zero_idxs:
print()
print(SEP)
print(" 4. RETRIEVED CONTEXTS (CR = 0.00 — retrieval failures)")
print(SEP)
for idx in sorted(cr_zero_idxs):
case = next((c for c in test_cases if c.idx == idx), None)
if case is None:
continue
contexts = case_contexts.get(idx, [])
answer = case_answers.get(idx, "")
route = case_routes.get(idx, {})
actual_route = (
f"{route.get('source', '?')}"
+ (f"/{route['csv_source']}" if route.get('csv_source') else "")
)
print(f"\n --- #{idx} Q: {case.question[:100]}")
print(f" Expected route: {case.expected_source}")
print(f" Actual route: {actual_route}")
print(f" Answer: {answer[:120]}")
print(f" Contexts retrieved: {len(contexts)}")
if not contexts:
print(f" (empty — no chunks retrieved)")
for i, c in enumerate(contexts):
truncated = c[:200].replace('\n', ' ')
print(f" [{i}] ({len(c)} chars) {truncated}...")
print()
# ---------------------------------------------------------------------------
# JSON result reader
# ---------------------------------------------------------------------------
def read_results(folder: str = "./data") -> dict | None:
"""Read the most recent test run JSON from *folder* and print a summary.
Returns the parsed JSON dict, or ``None`` if no results found.
"""
import glob
import json
files = sorted(glob.glob(os.path.join(folder, "test_run_*.json")))
if not files:
print(f"No test run JSON files found in {folder}")
return None
path = files[-1] # latest run
with open(path) as f:
data = json.load(f)
test_results = data.get("testCases", [])
if not test_results:
print(f"No test cases in {path}")
return data
# Collect per-metric scores
metric_totals: dict[str, list[float]] = {}
for tr in test_results:
for md in tr.get("metricsData", []):
name = md.get("name", "unknown")
score = md.get("score")
if score is not None:
metric_totals.setdefault(name, []).append(score)
print(f"\nResults loaded from {os.path.basename(path)}")
print(f" Test cases: {len(test_results)}")
for name, scores in metric_totals.items():
avg = sum(scores) / len(scores)
print(f" {name:<35} {avg:.2f} (n={len(scores)})")
return data
# ---------------------------------------------------------------------------
# CLI entry point
# ---------------------------------------------------------------------------
if __name__ == "__main__":
run_evaluation()
|