c81b0fc1
tangwang
scripts/evaluatio...
|
1
2
3
4
5
6
7
8
9
10
|
"""SQLite persistence for evaluation corpus, labels, rerank scores, and run metadata."""
from __future__ import annotations
import json
import sqlite3
from dataclasses import dataclass
from pathlib import Path
from typing import Any, Dict, List, Optional, Sequence
|
6e3e6770
tangwang
suggest文档维护
|
11
|
from .constants import VALID_LABELS
|
c81b0fc1
tangwang
scripts/evaluatio...
|
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
from .utils import ensure_dir, safe_json_dumps, utc_now_iso
@dataclass
class QueryBuildResult:
query: str
tenant_id: str
search_total: int
search_depth: int
rerank_corpus_size: int
annotated_count: int
output_json_path: Path
|
d73ca84a
tangwang
refine eval case ...
|
26
27
28
29
30
31
32
33
34
35
36
37
|
def _compact_batch_metadata(metadata: Dict[str, Any]) -> Dict[str, Any]:
return {
"batch_id": metadata.get("batch_id"),
"created_at": metadata.get("created_at"),
"tenant_id": metadata.get("tenant_id"),
"top_k": metadata.get("top_k"),
"query_count": len(metadata.get("queries") or []),
"aggregate_metrics": dict(metadata.get("aggregate_metrics") or {}),
"metric_context": dict(metadata.get("metric_context") or {}),
}
|
c81b0fc1
tangwang
scripts/evaluatio...
|
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
|
class EvalStore:
def __init__(self, db_path: Path):
self.db_path = db_path
ensure_dir(db_path.parent)
self.conn = sqlite3.connect(str(db_path), check_same_thread=False)
self.conn.row_factory = sqlite3.Row
self._init_schema()
def _init_schema(self) -> None:
self.conn.executescript(
"""
CREATE TABLE IF NOT EXISTS corpus_docs (
tenant_id TEXT NOT NULL,
spu_id TEXT NOT NULL,
title_json TEXT,
vendor_json TEXT,
category_path_json TEXT,
category_name_json TEXT,
image_url TEXT,
skus_json TEXT,
tags_json TEXT,
raw_json TEXT NOT NULL,
updated_at TEXT NOT NULL,
PRIMARY KEY (tenant_id, spu_id)
);
CREATE TABLE IF NOT EXISTS rerank_scores (
tenant_id TEXT NOT NULL,
query_text TEXT NOT NULL,
spu_id TEXT NOT NULL,
score REAL NOT NULL,
model_name TEXT,
updated_at TEXT NOT NULL,
PRIMARY KEY (tenant_id, query_text, spu_id)
);
CREATE TABLE IF NOT EXISTS relevance_labels (
tenant_id TEXT NOT NULL,
query_text TEXT NOT NULL,
spu_id TEXT NOT NULL,
label TEXT NOT NULL,
judge_model TEXT,
raw_response TEXT,
updated_at TEXT NOT NULL,
PRIMARY KEY (tenant_id, query_text, spu_id)
);
CREATE TABLE IF NOT EXISTS build_runs (
run_id TEXT PRIMARY KEY,
tenant_id TEXT NOT NULL,
query_text TEXT NOT NULL,
output_json_path TEXT NOT NULL,
metadata_json TEXT NOT NULL,
created_at TEXT NOT NULL
);
CREATE TABLE IF NOT EXISTS batch_runs (
batch_id TEXT PRIMARY KEY,
tenant_id TEXT NOT NULL,
output_json_path TEXT NOT NULL,
report_markdown_path TEXT NOT NULL,
config_snapshot_path TEXT NOT NULL,
metadata_json TEXT NOT NULL,
created_at TEXT NOT NULL
);
CREATE TABLE IF NOT EXISTS query_profiles (
tenant_id TEXT NOT NULL,
query_text TEXT NOT NULL,
prompt_version TEXT NOT NULL,
judge_model TEXT,
profile_json TEXT NOT NULL,
raw_response TEXT NOT NULL,
updated_at TEXT NOT NULL,
PRIMARY KEY (tenant_id, query_text, prompt_version)
);
"""
)
self.conn.commit()
def upsert_corpus_docs(self, tenant_id: str, docs: Sequence[Dict[str, Any]]) -> None:
now = utc_now_iso()
rows = []
for doc in docs:
rows.append(
(
tenant_id,
str(doc.get("spu_id") or ""),
safe_json_dumps(doc.get("title")),
safe_json_dumps(doc.get("vendor")),
safe_json_dumps(doc.get("category_path")),
safe_json_dumps(doc.get("category_name")),
str(doc.get("image_url") or ""),
safe_json_dumps(doc.get("skus") or []),
safe_json_dumps(doc.get("tags") or []),
safe_json_dumps(doc),
now,
)
)
self.conn.executemany(
"""
INSERT INTO corpus_docs (
tenant_id, spu_id, title_json, vendor_json, category_path_json, category_name_json,
image_url, skus_json, tags_json, raw_json, updated_at
) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
ON CONFLICT(tenant_id, spu_id) DO UPDATE SET
title_json=excluded.title_json,
vendor_json=excluded.vendor_json,
category_path_json=excluded.category_path_json,
category_name_json=excluded.category_name_json,
image_url=excluded.image_url,
skus_json=excluded.skus_json,
tags_json=excluded.tags_json,
raw_json=excluded.raw_json,
updated_at=excluded.updated_at
""",
rows,
)
self.conn.commit()
def get_corpus_docs(self, tenant_id: str) -> List[Dict[str, Any]]:
rows = self.conn.execute(
"SELECT raw_json FROM corpus_docs WHERE tenant_id=? ORDER BY spu_id",
(tenant_id,),
).fetchall()
return [json.loads(row["raw_json"]) for row in rows]
def get_corpus_docs_by_spu_ids(self, tenant_id: str, spu_ids: Sequence[str]) -> Dict[str, Dict[str, Any]]:
keys = [str(spu_id) for spu_id in spu_ids if str(spu_id).strip()]
if not keys:
return {}
placeholders = ",".join("?" for _ in keys)
rows = self.conn.execute(
f"""
SELECT spu_id, raw_json
FROM corpus_docs
WHERE tenant_id=? AND spu_id IN ({placeholders})
""",
[tenant_id, *keys],
).fetchall()
return {
str(row["spu_id"]): json.loads(row["raw_json"])
for row in rows
}
def has_corpus(self, tenant_id: str) -> bool:
row = self.conn.execute(
"SELECT COUNT(1) AS n FROM corpus_docs WHERE tenant_id=?",
(tenant_id,),
).fetchone()
return bool(row and row["n"] > 0)
def get_rerank_scores(self, tenant_id: str, query_text: str) -> Dict[str, float]:
rows = self.conn.execute(
"""
SELECT spu_id, score
FROM rerank_scores
WHERE tenant_id=? AND query_text=?
""",
(tenant_id, query_text),
).fetchall()
return {str(row["spu_id"]): float(row["score"]) for row in rows}
def upsert_rerank_scores(
self,
tenant_id: str,
query_text: str,
scores: Dict[str, float],
model_name: str,
) -> None:
now = utc_now_iso()
rows = [
(tenant_id, query_text, spu_id, float(score), model_name, now)
for spu_id, score in scores.items()
]
self.conn.executemany(
"""
INSERT INTO rerank_scores (tenant_id, query_text, spu_id, score, model_name, updated_at)
VALUES (?, ?, ?, ?, ?, ?)
ON CONFLICT(tenant_id, query_text, spu_id) DO UPDATE SET
score=excluded.score,
model_name=excluded.model_name,
updated_at=excluded.updated_at
""",
rows,
)
self.conn.commit()
def get_labels(self, tenant_id: str, query_text: str) -> Dict[str, str]:
rows = self.conn.execute(
"""
SELECT spu_id, label
FROM relevance_labels
WHERE tenant_id=? AND query_text=?
""",
(tenant_id, query_text),
).fetchall()
|
6e3e6770
tangwang
suggest文档维护
|
235
|
return {str(row["spu_id"]): str(row["label"]) for row in rows}
|
c81b0fc1
tangwang
scripts/evaluatio...
|
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
|
def upsert_labels(
self,
tenant_id: str,
query_text: str,
labels: Dict[str, str],
judge_model: str,
raw_response: str,
) -> None:
now = utc_now_iso()
rows = []
for spu_id, label in labels.items():
if label not in VALID_LABELS:
raise ValueError(f"invalid label: {label}")
rows.append((tenant_id, query_text, spu_id, label, judge_model, raw_response, now))
self.conn.executemany(
"""
INSERT INTO relevance_labels (tenant_id, query_text, spu_id, label, judge_model, raw_response, updated_at)
VALUES (?, ?, ?, ?, ?, ?, ?)
ON CONFLICT(tenant_id, query_text, spu_id) DO UPDATE SET
label=excluded.label,
judge_model=excluded.judge_model,
raw_response=excluded.raw_response,
updated_at=excluded.updated_at
""",
rows,
)
self.conn.commit()
def get_query_profile(self, tenant_id: str, query_text: str, prompt_version: str) -> Optional[Dict[str, Any]]:
row = self.conn.execute(
"""
SELECT profile_json
FROM query_profiles
WHERE tenant_id=? AND query_text=? AND prompt_version=?
""",
(tenant_id, query_text, prompt_version),
).fetchone()
if not row:
return None
return json.loads(row["profile_json"])
def upsert_query_profile(
self,
tenant_id: str,
query_text: str,
prompt_version: str,
judge_model: str,
profile: Dict[str, Any],
raw_response: str,
) -> None:
self.conn.execute(
"""
INSERT OR REPLACE INTO query_profiles
(tenant_id, query_text, prompt_version, judge_model, profile_json, raw_response, updated_at)
VALUES (?, ?, ?, ?, ?, ?, ?)
""",
(
tenant_id,
query_text,
prompt_version,
judge_model,
safe_json_dumps(profile),
raw_response,
utc_now_iso(),
),
)
self.conn.commit()
def insert_build_run(self, run_id: str, tenant_id: str, query_text: str, output_json_path: Path, metadata: Dict[str, Any]) -> None:
self.conn.execute(
"""
INSERT OR REPLACE INTO build_runs (run_id, tenant_id, query_text, output_json_path, metadata_json, created_at)
VALUES (?, ?, ?, ?, ?, ?)
""",
(run_id, tenant_id, query_text, str(output_json_path), safe_json_dumps(metadata), utc_now_iso()),
)
self.conn.commit()
def insert_batch_run(
self,
batch_id: str,
tenant_id: str,
output_json_path: Path,
report_markdown_path: Path,
config_snapshot_path: Path,
metadata: Dict[str, Any],
) -> None:
self.conn.execute(
"""
INSERT OR REPLACE INTO batch_runs
(batch_id, tenant_id, output_json_path, report_markdown_path, config_snapshot_path, metadata_json, created_at)
VALUES (?, ?, ?, ?, ?, ?, ?)
""",
(
batch_id,
tenant_id,
str(output_json_path),
str(report_markdown_path),
str(config_snapshot_path),
safe_json_dumps(metadata),
utc_now_iso(),
),
)
self.conn.commit()
def list_batch_runs(self, limit: int = 20) -> List[Dict[str, Any]]:
rows = self.conn.execute(
"""
SELECT batch_id, tenant_id, output_json_path, report_markdown_path, config_snapshot_path, metadata_json, created_at
FROM batch_runs
ORDER BY created_at DESC
LIMIT ?
""",
(limit,),
).fetchall()
items: List[Dict[str, Any]] = []
for row in rows:
|
d73ca84a
tangwang
refine eval case ...
|
354
|
metadata = json.loads(row["metadata_json"])
|
c81b0fc1
tangwang
scripts/evaluatio...
|
355
356
357
358
359
360
361
|
items.append(
{
"batch_id": row["batch_id"],
"tenant_id": row["tenant_id"],
"output_json_path": row["output_json_path"],
"report_markdown_path": row["report_markdown_path"],
"config_snapshot_path": row["config_snapshot_path"],
|
d73ca84a
tangwang
refine eval case ...
|
362
|
"metadata": _compact_batch_metadata(metadata),
|
c81b0fc1
tangwang
scripts/evaluatio...
|
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
|
"created_at": row["created_at"],
}
)
return items
def get_batch_run(self, batch_id: str) -> Optional[Dict[str, Any]]:
row = self.conn.execute(
"""
SELECT batch_id, tenant_id, output_json_path, report_markdown_path, config_snapshot_path, metadata_json, created_at
FROM batch_runs
WHERE batch_id = ?
""",
(batch_id,),
).fetchone()
if row is None:
return None
return {
"batch_id": row["batch_id"],
"tenant_id": row["tenant_id"],
"output_json_path": row["output_json_path"],
"report_markdown_path": row["report_markdown_path"],
"config_snapshot_path": row["config_snapshot_path"],
"metadata": json.loads(row["metadata_json"]),
"created_at": row["created_at"],
}
def list_query_label_stats(self, tenant_id: str) -> List[Dict[str, Any]]:
rows = self.conn.execute(
"""
SELECT
query_text,
COUNT(*) AS total,
|
6e3e6770
tangwang
suggest文档维护
|
395
396
|
SUM(CASE WHEN label='Fully Relevant' THEN 1 ELSE 0 END) AS exact_count,
SUM(CASE WHEN label='Mostly Relevant' THEN 1 ELSE 0 END) AS high_relevant_count,
|
441f049d
tangwang
评测体系优化,以及
|
397
|
SUM(CASE WHEN label='Weakly Relevant' THEN 1 ELSE 0 END) AS low_relevant_count,
|
c81b0fc1
tangwang
scripts/evaluatio...
|
398
399
400
401
402
403
404
405
406
407
408
409
410
411
|
SUM(CASE WHEN label='Irrelevant' THEN 1 ELSE 0 END) AS irrelevant_count,
MAX(updated_at) AS updated_at
FROM relevance_labels
WHERE tenant_id=?
GROUP BY query_text
ORDER BY query_text
""",
(tenant_id,),
).fetchall()
return [
{
"query": str(row["query_text"]),
"total": int(row["total"]),
"exact_count": int(row["exact_count"] or 0),
|
a345b01f
tangwang
eval framework
|
412
413
|
"high_relevant_count": int(row["high_relevant_count"] or 0),
"low_relevant_count": int(row["low_relevant_count"] or 0),
|
c81b0fc1
tangwang
scripts/evaluatio...
|
414
415
416
417
418
419
420
421
422
423
424
|
"irrelevant_count": int(row["irrelevant_count"] or 0),
"updated_at": row["updated_at"],
}
for row in rows
]
def get_query_label_stats(self, tenant_id: str, query_text: str) -> Dict[str, Any]:
row = self.conn.execute(
"""
SELECT
COUNT(*) AS total,
|
6e3e6770
tangwang
suggest文档维护
|
425
426
|
SUM(CASE WHEN label='Fully Relevant' THEN 1 ELSE 0 END) AS exact_count,
SUM(CASE WHEN label='Mostly Relevant' THEN 1 ELSE 0 END) AS high_relevant_count,
|
441f049d
tangwang
评测体系优化,以及
|
427
|
SUM(CASE WHEN label='Weakly Relevant' THEN 1 ELSE 0 END) AS low_relevant_count,
|
c81b0fc1
tangwang
scripts/evaluatio...
|
428
429
430
431
432
433
434
435
436
437
438
|
SUM(CASE WHEN label='Irrelevant' THEN 1 ELSE 0 END) AS irrelevant_count,
MAX(updated_at) AS updated_at
FROM relevance_labels
WHERE tenant_id=? AND query_text=?
""",
(tenant_id, query_text),
).fetchone()
return {
"query": query_text,
"total": int((row["total"] or 0) if row else 0),
"exact_count": int((row["exact_count"] or 0) if row else 0),
|
a345b01f
tangwang
eval framework
|
439
440
|
"high_relevant_count": int((row["high_relevant_count"] or 0) if row else 0),
"low_relevant_count": int((row["low_relevant_count"] or 0) if row else 0),
|
c81b0fc1
tangwang
scripts/evaluatio...
|
441
442
443
|
"irrelevant_count": int((row["irrelevant_count"] or 0) if row else 0),
"updated_at": row["updated_at"] if row else None,
}
|