Spaces:
Sleeping
Sleeping
File size: 13,895 Bytes
7f105c8 | 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 | """
evaluate_compare_v3_20260505.py
================================
담당: 경이 (kyeongyi)
작성일: 2026-05-05
목적:
split_v5_20260505.csv (4992행 v5 데이터) 기준으로
두 모델의 성능을 비교·저장·출력한다.
[비교 모델]
1. Simple : TF-IDF + Logistic Regression (베이스라인)
2. KcELECTRA: 파인튜닝 모델 v3 (05_train_kcelectra_v3_20260505.ipynb 실행 후)
[공정 비교 원칙]
- 두 모델 모두 split_v5_20260505.csv의 동일한 test 세트로 평가
- Simple은 동일한 train 세트(v5)로 재학습
- KcELECTRA JSON이 없으면 checkpoints/kcelectra-category-v3/에서 직접 추론
[출력 파일 - data/20260505/ 폴더]
eval_results_simple_v3_20260505.json
eval_results_kcelectra_v3_20260505.json
eval_comparison_summary_v3_20260505.csv
실행:
cd model/classification
python scripts/evaluate_compare_v3_20260505.py
python scripts/evaluate_compare_v3_20260505.py --split val
python scripts/evaluate_compare_v3_20260505.py --retrain # Simple 강제 재학습
"""
import argparse
import json
import pickle
import sys
from pathlib import Path
import pandas as pd
from sklearn.feature_extraction.text import TfidfVectorizer
from sklearn.linear_model import LogisticRegression
from sklearn.metrics import (
classification_report,
confusion_matrix,
f1_score,
)
from sklearn.pipeline import Pipeline
_BASE = Path(__file__).parent.parent
sys.path.insert(0, str(_BASE / "src"))
SPLIT_CSV = _BASE / "data" / "split_v5_20260505.csv"
SIMPLE_PKL = _BASE / "checkpoints" / "simple_tfidf_logreg_v3_20260505.pkl"
KCELECTRA_CKPT = _BASE / "checkpoints" / "kcelectra-category-v3"
OUT_DIR = _BASE / "data" / "20260505"
TS = "v3_20260505"
LABELS = ["일정", "준비물", "제출", "비용", "건강·안전", "기타"]
# ──────────────────────────────────────────────────────────────────
# 데이터 로드
# ──────────────────────────────────────────────────────────────────
def load_split(split: str = "test") -> tuple[list[str], list[str]]:
if not SPLIT_CSV.exists():
raise FileNotFoundError(
f"{SPLIT_CSV} 없음 - split_dataset_v5_20260505.py 먼저 실행하세요."
)
df = pd.read_csv(SPLIT_CSV, encoding="utf-8-sig")
df = df[df["split"] == split]
df = df[df["category"].isin(LABELS)]
return df["text"].tolist(), df["category"].tolist()
# ──────────────────────────────────────────────────────────────────
# Simple 모델 (TF-IDF + LogReg)
# ──────────────────────────────────────────────────────────────────
def train_simple() -> Pipeline:
"""v5 train 데이터(~3994개)로 베이스라인 재학습."""
texts, labels = load_split("train")
print(f"[simple] train 데이터: {len(texts)}개")
pipe = Pipeline([
("tfidf", TfidfVectorizer(
analyzer="char_wb",
ngram_range=(2, 4),
max_features=50_000, # v3: max_features 증가 (데이터 많아졌으므로)
sublinear_tf=True,
)),
("clf", LogisticRegression(
C=1.0,
max_iter=1000,
class_weight="balanced",
random_state=42,
solver="lbfgs",
)),
])
pipe.fit(texts, labels)
SIMPLE_PKL.parent.mkdir(parents=True, exist_ok=True)
with open(SIMPLE_PKL, "wb") as f:
pickle.dump(pipe, f)
print(f"[simple] 모델 저장: {SIMPLE_PKL.name}")
return pipe
def _load_simple() -> Pipeline:
if SIMPLE_PKL.exists():
with open(SIMPLE_PKL, "rb") as f:
return pickle.load(f)
return train_simple()
def evaluate_simple(split: str = "test") -> dict:
texts, true_labels = load_split(split)
pipe = _load_simple()
pred_labels = pipe.predict(texts)
report = classification_report(
true_labels, pred_labels,
labels=LABELS, output_dict=True, zero_division=0,
)
cm = confusion_matrix(true_labels, pred_labels, labels=LABELS)
macro_f1 = f1_score(true_labels, pred_labels, labels=LABELS,
average="macro", zero_division=0)
print("\n[Simple - TF-IDF + LogReg] 분류 리포트")
print(classification_report(true_labels, pred_labels, labels=LABELS, zero_division=0))
return {
"model": "simple",
"version": "v3",
"macro_f1": round(macro_f1, 4),
"macro_precision": round(report["macro avg"]["precision"], 4),
"macro_recall": round(report["macro avg"]["recall"], 4),
"per_class": {
lbl: {
"precision": round(report[lbl]["precision"], 4),
"recall": round(report[lbl]["recall"], 4),
"f1": round(report[lbl]["f1-score"], 4),
"support": report[lbl]["support"],
}
for lbl in LABELS
},
"confusion_matrix": cm.tolist(),
"labels": LABELS,
"split_used": split,
"data_version": "v5_20260505",
"train_size": len(load_split("train")[0]),
"test_size": len(texts),
}
# ──────────────────────────────────────────────────────────────────
# KcELECTRA 모델
# ──────────────────────────────────────────────────────────────────
def _kcelectra_ready() -> bool:
try:
import torch # noqa: F401
from transformers import AutoTokenizer # noqa: F401
except ImportError:
print("[kcelectra] torch/transformers 미설치 - 스킵")
return False
required = [
KCELECTRA_CKPT / "config.json",
KCELECTRA_CKPT / "label2id.json",
]
model_file = (
(KCELECTRA_CKPT / "model.safetensors").exists()
or (KCELECTRA_CKPT / "pytorch_model.bin").exists()
)
return all(f.exists() for f in required) and model_file
def evaluate_kcelectra(split: str = "test") -> dict:
"""
KcELECTRA v3 평가.
eval_results_kcelectra_v3_20260505.json이 있으면 재활용 (Colab 결과 복붙 시).
"""
json_path = OUT_DIR / f"eval_results_kcelectra_{TS}.json"
if json_path.exists():
print(f"[kcelectra] 기존 JSON 재활용: {json_path.name}")
with open(json_path, encoding="utf-8") as f:
return json.load(f)
if not _kcelectra_ready():
print("[kcelectra] 체크포인트 없음 - 05_train_kcelectra_v3_20260505.ipynb 실행 후 재시도")
return {}
import torch
from transformers import AutoModelForSequenceClassification, AutoTokenizer
texts, true_labels = load_split(split)
with open(KCELECTRA_CKPT / "label2id.json", encoding="utf-8") as f:
label2id: dict[str, int] = json.load(f)
id2label = {v: k for k, v in label2id.items()}
device = "cuda" if torch.cuda.is_available() else "cpu"
tokenizer = AutoTokenizer.from_pretrained(str(KCELECTRA_CKPT))
model = AutoModelForSequenceClassification.from_pretrained(
str(KCELECTRA_CKPT), num_labels=len(LABELS), ignore_mismatched_sizes=True
).to(device)
model.eval()
pred_labels = []
with torch.no_grad():
for text in texts:
enc = tokenizer(text, return_tensors="pt",
truncation=True, padding=True, max_length=128).to(device)
logits = model(**enc).logits
idx = int(logits.argmax(dim=-1).item())
pred_labels.append(id2label.get(idx, "기타"))
report = classification_report(
true_labels, pred_labels,
labels=LABELS, output_dict=True, zero_division=0,
)
cm = confusion_matrix(true_labels, pred_labels, labels=LABELS)
macro_f1 = f1_score(true_labels, pred_labels, labels=LABELS,
average="macro", zero_division=0)
print("\n[KcELECTRA v3] 분류 리포트")
print(classification_report(true_labels, pred_labels, labels=LABELS, zero_division=0))
result = {
"model": "kcelectra",
"version": "v3",
"macro_f1": round(macro_f1, 4),
"macro_precision": round(report["macro avg"]["precision"], 4),
"macro_recall": round(report["macro avg"]["recall"], 4),
"per_class": {
lbl: {
"precision": round(report[lbl]["precision"], 4),
"recall": round(report[lbl]["recall"], 4),
"f1": round(report[lbl]["f1-score"], 4),
"support": report[lbl]["support"],
}
for lbl in LABELS
},
"confusion_matrix": cm.tolist(),
"labels": LABELS,
"split_used": split,
"data_version": "v5_20260505",
}
return result
# ──────────────────────────────────────────────────────────────────
# 저장 + 비교 출력
# ──────────────────────────────────────────────────────────────────
def save_and_compare(simple_res: dict, kcelectra_res: dict) -> None:
OUT_DIR.mkdir(parents=True, exist_ok=True)
simple_path = OUT_DIR / f"eval_results_simple_{TS}.json"
with open(simple_path, "w", encoding="utf-8") as f:
json.dump(simple_res, f, ensure_ascii=False, indent=2)
print(f"\n[저장] {simple_path.name}")
kc_path = OUT_DIR / f"eval_results_kcelectra_{TS}.json"
if kcelectra_res:
with open(kc_path, "w", encoding="utf-8") as f:
json.dump(kcelectra_res, f, ensure_ascii=False, indent=2)
print(f"[저장] {kc_path.name}")
rows = [{"model": "Simple (TF-IDF + LR)", **_summary_row(simple_res)}]
if kcelectra_res:
rows.append({"model": "KcELECTRA v3 (fine-tuned)", **_summary_row(kcelectra_res)})
summary_df = pd.DataFrame(rows)
summary_path = OUT_DIR / f"eval_comparison_summary_{TS}.csv"
summary_df.to_csv(summary_path, index=False, encoding="utf-8-sig")
print(f"[저장] {summary_path.name}")
# 비교 출력
print("\n" + "=" * 55)
print(" 성능 비교 결과 (v5 데이터 - 4992행)")
print("=" * 55)
print(f" Simple Macro F1 : {simple_res['macro_f1']:.4f}")
if kcelectra_res:
delta = kcelectra_res["macro_f1"] - simple_res["macro_f1"]
print(f" KcELECTRA Macro F1 : {kcelectra_res['macro_f1']:.4f}")
print(f" Delta : {delta:+.4f}")
print()
if delta >= 0.05:
print(" ★ KcELECTRA 5%+ 향상 - 채택 확정!")
elif delta >= 0:
print(" ~ KcELECTRA 소폭 향상 - 추가 데이터/튜닝 권장")
else:
print(" ✗ Simple이 더 높음 - 05_train_kcelectra_v3 재실행 필요")
print("\n [카테고리별 F1 비교]")
print(f" {'카테고리':10s} {'Simple':>8s} {'KcELECTRA':>10s} {'차이':>8s}")
print(" " + "-" * 40)
for lbl in LABELS:
s_f1 = simple_res["per_class"].get(lbl, {}).get("f1", 0)
k_f1 = kcelectra_res["per_class"].get(lbl, {}).get("f1", 0)
diff = k_f1 - s_f1
mark = "↑" if diff > 0.02 else ("↓" if diff < -0.02 else "~")
print(f" {lbl:10s} {s_f1:>8.4f} {k_f1:>10.4f} {diff:>+7.4f} {mark}")
else:
print(" KcELECTRA: 평가 미완료 - 05_train_kcelectra_v3_20260505.ipynb 실행 후 재시도")
print(f"\n[출력 폴더] {OUT_DIR}")
def _summary_row(res: dict) -> dict:
row = {
"macro_f1": res.get("macro_f1", "-"),
"macro_precision": res.get("macro_precision", "-"),
"macro_recall": res.get("macro_recall", "-"),
}
for lbl in LABELS:
row[f"f1_{lbl}"] = res.get("per_class", {}).get(lbl, {}).get("f1", "-")
return row
# ──────────────────────────────────────────────────────────────────
# CLI
# ──────────────────────────────────────────────────────────────────
def main() -> None:
parser = argparse.ArgumentParser()
parser.add_argument("--split", default="test", choices=["train", "val", "test"])
parser.add_argument("--retrain", action="store_true",
help="Simple 모델 강제 재학습 (PKL 있어도 새로 학습)")
args = parser.parse_args()
print(f"평가 시작 - split: {args.split}, 데이터: v5_20260505")
if args.retrain and SIMPLE_PKL.exists():
SIMPLE_PKL.unlink()
print("[simple] 기존 PKL 삭제 → 재학습")
simple_res = evaluate_simple(args.split)
kcelectra_res = evaluate_kcelectra(args.split)
save_and_compare(simple_res, kcelectra_res)
if __name__ == "__main__":
main()
|