Spaces:
Sleeping
Sleeping
File size: 8,223 Bytes
3b3f405 bc0d6ab 3b3f405 bc0d6ab 3b3f405 bc0d6ab 3b3f405 bc0d6ab 3b3f405 bc0d6ab 3b3f405 bc0d6ab 3b3f405 bc0d6ab 3b3f405 bc0d6ab 3b3f405 bc0d6ab 3b3f405 | 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 | """Train a lightweight claim verifier checkpoint from the sampled datasets."""
from __future__ import annotations
import argparse
import json
import random
from datetime import datetime, timezone
from dataclasses import dataclass
from pathlib import Path
import platform
import shlex
import subprocess
import sys
import joblib
import sklearn
from sklearn.feature_extraction.text import TfidfVectorizer
from sklearn.linear_model import LogisticRegression
from sklearn.metrics import accuracy_score, f1_score
from sklearn.pipeline import Pipeline
from data.schemas import EvidenceSpan
from evaluation.reporting import write_report
from evaluation.sample_benchmarks import load_records
@dataclass(frozen=True)
class TrainingExample:
text: str
label: str
def build_parser() -> argparse.ArgumentParser:
parser = argparse.ArgumentParser(description="Train a lightweight verifier checkpoint.")
parser.add_argument("--data-dir", default="data/processed")
parser.add_argument("--checkpoint-dir", default="checkpoints/verifier")
parser.add_argument("--reports-dir", default="reports")
parser.add_argument("--seed", type=int, default=42)
return parser
def main() -> None: # pragma: no cover - script entrypoint
args = build_parser().parse_args()
data_dir = Path(args.data_dir)
checkpoint_dir = Path(args.checkpoint_dir)
reports_dir = Path(args.reports_dir)
checkpoint_dir.mkdir(parents=True, exist_ok=True)
reports_dir.mkdir(parents=True, exist_ok=True)
records_by_split = load_records(data_dir)
train_records = list(records_by_split.get("fever_train", [])) + list(records_by_split.get("scifact_train", []))
val_records = list(records_by_split.get("fever_val", [])) + list(records_by_split.get("scifact_val", []))
test_records = list(records_by_split.get("fever_test", [])) + list(records_by_split.get("scifact_test", []))
train_examples = _build_examples(train_records, seed=args.seed)
val_examples = _build_examples(val_records, seed=args.seed + 1)
test_examples = _build_examples(test_records, seed=args.seed + 2)
if not train_examples:
raise RuntimeError("no training examples were built from the processed data")
pipeline = Pipeline(
steps=[
("tfidf", TfidfVectorizer(ngram_range=(1, 2), max_features=5000)),
("clf", LogisticRegression(max_iter=500, random_state=args.seed)),
]
)
pipeline.fit([example.text for example in train_examples], [example.label for example in train_examples])
checkpoint_path = checkpoint_dir / "model.joblib"
joblib.dump({"pipeline": pipeline, "label_order": list(pipeline.classes_)}, checkpoint_path)
metadata = _build_metadata(
checkpoint_path=checkpoint_path,
args=args,
train_examples=train_examples,
val_examples=val_examples,
test_examples=test_examples,
)
report = {
"checkpoint_path": str(checkpoint_path),
"train": _evaluate_split(pipeline, train_examples),
"validation": _evaluate_split(pipeline, val_examples),
"test": _evaluate_split(pipeline, test_examples),
"class_labels": list(pipeline.classes_),
"train_example_count": len(train_examples),
"validation_example_count": len(val_examples),
"test_example_count": len(test_examples),
"metadata": metadata,
}
write_report(report, reports_dir / "verifier_training.json")
(reports_dir / "verifier_training.md").write_text(_to_markdown(report), encoding="utf-8")
(checkpoint_dir / "metadata.json").write_text(json.dumps(metadata, indent=2, sort_keys=True), encoding="utf-8")
print(f"Saved verifier checkpoint to {checkpoint_path}")
def _build_examples(records, *, seed: int) -> list[TrainingExample]:
rng = random.Random(seed)
evidence_pool = [span.text for record in records for span in record.evidence if span.text]
examples: list[TrainingExample] = []
for record in records:
positive_spans = [span for span in record.evidence if span.text]
if positive_spans:
for span in positive_spans:
examples.append(TrainingExample(text=_format_input(record.claim, span.text), label=_normalize_label(record.label)))
if _normalize_label(record.label) != "NOT ENOUGH INFO" and evidence_pool:
negative_text = _sample_negative_text(rng, evidence_pool, positive_spans)
examples.append(TrainingExample(text=_format_input(record.claim, negative_text), label="NOT ENOUGH INFO"))
else:
examples.append(TrainingExample(text=_format_input(record.claim, ""), label="NOT ENOUGH INFO"))
return examples
def _sample_negative_text(rng: random.Random, evidence_pool: list[str], positive_spans: list[EvidenceSpan]) -> str:
positive_texts = {span.text for span in positive_spans}
candidates = [text for text in evidence_pool if text not in positive_texts]
if not candidates:
candidates = evidence_pool
return rng.choice(candidates) if candidates else ""
def _normalize_label(label: str) -> str:
normalized = label.strip().upper().replace("_", " ")
if normalized in {"SUPPORTED", "SUPPORTS"}:
return "SUPPORTED"
if normalized in {"REFUTED", "REFUTES", "CONTRADICT", "CONTRADICTS"}:
return "REFUTED"
return "NOT ENOUGH INFO"
def _format_input(claim: str, evidence_text: str) -> str:
return f"claim: {claim}\nevidence: {evidence_text}"
def _evaluate_split(pipeline: Pipeline, examples: list[TrainingExample]) -> dict[str, float]:
if not examples:
return {"accuracy": 0.0, "macro_f1": 0.0, "example_count": 0.0}
predictions = pipeline.predict([example.text for example in examples])
labels = [example.label for example in examples]
return {
"accuracy": float(accuracy_score(labels, predictions)),
"macro_f1": float(f1_score(labels, predictions, average="macro")),
"example_count": float(len(examples)),
}
def _to_markdown(report: dict[str, object]) -> str:
metadata = report.get("metadata", {})
lines = [
"# Verifier Training",
"",
f"- Checkpoint: `{report['checkpoint_path']}`",
f"- Classes: {', '.join(report['class_labels'])}",
f"- Sklearn version: {metadata.get('sklearn_version', 'unknown')}",
f"- Python version: {metadata.get('python_version', 'unknown')}",
f"- Git commit: {metadata.get('git_commit', 'unknown')}",
f"- Training command: `{metadata.get('training_command', 'unknown')}`",
"",
"| split | examples | accuracy | macro_f1 |",
"| --- | --- | --- | --- |",
]
for split_name in ("train", "validation", "test"):
metrics = report[split_name]
lines.append(
f"| {split_name} | {int(metrics['example_count'])} | {metrics['accuracy']:.3f} | {metrics['macro_f1']:.3f} |"
)
return "\n".join(lines) + "\n"
def _build_metadata(
*,
checkpoint_path: Path,
args: argparse.Namespace,
train_examples: list[TrainingExample],
val_examples: list[TrainingExample],
test_examples: list[TrainingExample],
) -> dict[str, object]:
command = shlex.join([Path(sys.executable).name, "scripts/train_verifier.py", *sys.argv[1:]])
return {
"checkpoint_path": str(checkpoint_path),
"python_version": platform.python_version(),
"sklearn_version": sklearn.__version__,
"timestamp_utc": datetime.now(timezone.utc).isoformat(),
"git_commit": _git_commit_hash(),
"training_command": command,
"seed": args.seed,
"data_dir": str(Path(args.data_dir)),
"sample_sizes": {
"train_examples": len(train_examples),
"validation_examples": len(val_examples),
"test_examples": len(test_examples),
},
}
def _git_commit_hash() -> str | None:
try:
result = subprocess.run(["git", "rev-parse", "HEAD"], capture_output=True, text=True, check=True)
except Exception:
return None
commit = result.stdout.strip()
return commit or None
if __name__ == "__main__": # pragma: no cover - script entrypoint
main()
|