File size: 14,542 Bytes
6cda091 975d796 6cda091 975d796 6cda091 975d796 6cda091 975d796 6cda091 975d796 6cda091 975d796 6cda091 975d796 6cda091 975d796 6cda091 975d796 6cda091 975d796 6cda091 975d796 6cda091 975d796 6cda091 975d796 6cda091 975d796 6cda091 975d796 6cda091 975d796 6cda091 975d796 6cda091 975d796 6cda091 975d796 6cda091 975d796 6cda091 975d796 6cda091 7bbb616 6cda091 7bbb616 975d796 7bbb616 975d796 7bbb616 6cda091 975d796 6cda091 7bbb616 6cda091 7bbb616 6cda091 975d796 6cda091 | 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 | """
src/evaluation/evaluator.py
EvaluaciΓ³n estandarizada de modelos.
Genera mΓ©tricas, visualizaciones e informes JSON.
Uso:
evaluator = Evaluator(output_dir="reports/pipeline/lr")
metrics = evaluator.evaluate_and_report(
model, X_test, y_test, model_name="LR",
summary_path="reports/summary.csv",
)
"""
import json
import re
from collections import Counter
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
from datetime import datetime
from pathlib import Path
from sklearn.metrics import (
f1_score, precision_score, recall_score,
roc_auc_score, accuracy_score,
confusion_matrix, classification_report,
RocCurveDisplay,
)
from src.utils.logger import get_logger
logger = get_logger(__name__)
DEFAULT_SUMMARY_PATH = Path("reports/summary.csv")
_TOKEN_RE = re.compile(r"[a-zÑéΓΓ³ΓΊΓ±'][a-zÑéΓΓ³ΓΊΓ±]{2,}")
class Evaluator:
"""
Evaluador estandarizado de modelos de clasificaciΓ³n binaria.
Genera:
- MΓ©tricas completas (F1, Precision, Recall, ROC-AUC)
- Ambas mΓ©tricas de gap (train-test y CV-test)
- Matriz de confusiΓ³n (PNG)
- Curva ROC (PNG)
- AnΓ‘lisis de errores (FP y FN mΓ‘s comunes)
- Informe JSON por experimento
- CSV resumen de todos los experimentos
"""
def __init__(self, output_dir: str | Path = "reports/pipeline"):
self.output_dir = Path(output_dir)
self.output_dir.mkdir(parents=True, exist_ok=True)
# ββ EvaluaciΓ³n principal βββββββββββββββββββββββββββββββββββββββββββββββββ
def evaluate(
self,
model,
X_test,
y_test,
model_name: str,
X_train=None,
y_train=None,
cv_results: dict = None,
) -> dict:
"""
EvalΓΊa un modelo sobre el test set.
Args:
model: objeto con mΓ©todo predict() y predict_proba()
X_test, y_test: datos de test
model_name: nombre para los reports
X_train, y_train: opcional β para calcular train_test_gap
cv_results: opcional β dict con cv_f1_mean para calcular cv_test_gap
Returns:
Dict con todas las mΓ©tricas.
"""
logger.info(f"Evaluando: {model_name}")
y_pred = model.predict(X_test)
y_proba = model.predict_proba(X_test)[:, 1]
y_test_arr = np.array(y_test)
# ββ MΓ©tricas test ββββββββββββββββββββββββββββββββββββββββββββββββββββ
metrics = {
"model" : model_name,
"timestamp" : datetime.now().isoformat(),
"f1_weighted": round(f1_score(y_test_arr, y_pred, average="weighted"), 4),
"f1_toxic" : round(f1_score(y_test_arr, y_pred, pos_label=1), 4),
"precision" : round(precision_score(y_test_arr, y_pred, average="weighted"), 4),
"recall" : round(recall_score(y_test_arr, y_pred, average="weighted"), 4),
"accuracy" : round(accuracy_score(y_test_arr, y_pred), 4),
"roc_auc" : round(roc_auc_score(y_test_arr, y_proba), 4),
"fp" : int(((y_test_arr == 0) & (y_pred == 1)).sum()),
"fn" : int(((y_test_arr == 1) & (y_pred == 0)).sum()),
"n_test" : len(y_test_arr),
}
# ββ Train-test gap (in-sample vs OOS) ββββββββββββββββββββββββββββββββ
if X_train is not None and y_train is not None:
y_train_pred = model.predict(X_train)
f1_train = f1_score(np.array(y_train), y_train_pred, average="weighted")
metrics["f1_train"] = round(f1_train, 4)
metrics["train_test_gap_pp"]= round((f1_train - metrics["f1_weighted"]) * 100, 2)
# ββ CV-test gap (OOS vs OOS β mΓ©trica correcta para la rΓΊbrica) ββββββ
if cv_results and "cv_f1_mean" in cv_results:
cv_mean = cv_results["cv_f1_mean"]
metrics["cv_f1_mean"] = round(cv_mean, 4)
metrics["cv_f1_std"] = round(cv_results.get("cv_f1_std", 0), 4)
metrics["cv_test_gap_pp"]= round(abs(cv_mean - metrics["f1_weighted"]) * 100, 2)
self._print_summary(metrics)
return metrics
def evaluate_and_report(
self,
model,
X_test,
y_test,
model_name: str,
X_train=None,
y_train=None,
cv_results: dict = None,
summary_path: str | Path | None = None,
n_error_examples: int = 5,
show_plots: bool = False,
) -> dict:
"""
EvaluaciΓ³n completa: mΓ©tricas, grΓ‘ficos, anΓ‘lisis de errores y summary.csv.
Usado por run_pipeline; actualiza reports/summary.csv por defecto del proyecto.
"""
metrics = self.evaluate(
model, X_test, y_test, model_name,
X_train=X_train, y_train=y_train, cv_results=cv_results,
)
y_pred = model.predict(X_test)
y_proba = model.predict_proba(X_test)[:, 1]
cm_path = self.plot_confusion_matrix(
y_test, y_pred, model_name, save=True, show=show_plots,
)
roc_path = self.plot_roc_curve(
y_test, y_proba, model_name, save=True, show=show_plots,
)
errors = self.error_analysis(
X_test, y_test, y_pred, y_proba,
model_name=model_name, n_examples=n_error_examples,
)
metrics["cm_plot"] = str(cm_path) if cm_path else ""
metrics["roc_plot"] = str(roc_path) if roc_path else ""
metrics["top_fp_terms"] = ", ".join(
f"{t}({c})" for t, c in errors.get("top_fp_terms", [])
)
metrics["top_fn_terms"] = ", ".join(
f"{t}({c})" for t, c in errors.get("top_fn_terms", [])
)
out = Path(summary_path or DEFAULT_SUMMARY_PATH)
self.save_summary([metrics], path=out)
return metrics
# ββ Visualizaciones ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def plot_confusion_matrix(
self,
y_test,
y_pred,
model_name: str,
save: bool = True,
show: bool = False,
) -> Path | None:
"""Genera y guarda la matriz de confusiΓ³n."""
cm = confusion_matrix(y_test, y_pred)
fig, ax = plt.subplots(figsize=(5, 4))
sns.heatmap(
cm, annot=True, fmt="d", cmap="Blues", ax=ax,
xticklabels=["No tΓ³xico", "TΓ³xico"],
yticklabels=["No tΓ³xico", "TΓ³xico"],
linewidths=0.5,
)
ax.set_title(f"{model_name} β Matriz de confusiΓ³n", fontweight="bold")
ax.set_xlabel("PredicciΓ³n")
ax.set_ylabel("Real")
plt.tight_layout()
safe = model_name.lower().replace(" ", "_").replace("/", "_")
path = self.output_dir / f"cm_{safe}.png"
if save:
fig.savefig(path, dpi=150, bbox_inches="tight")
logger.info(f"Matriz de confusiΓ³n guardada: {path}")
if show:
plt.show()
else:
plt.close(fig)
return path if save else None
def plot_roc_curve(
self,
y_test,
y_proba,
model_name: str,
save: bool = True,
show: bool = False,
) -> Path | None:
"""Genera y guarda la curva ROC."""
fig, ax = plt.subplots(figsize=(6, 5))
RocCurveDisplay.from_predictions(
y_test, y_proba, ax=ax, name=model_name, color="#7F77DD"
)
ax.plot([0, 1], [0, 1], "--", color="gray", alpha=0.5, label="Azar")
ax.set_title(f"{model_name} β Curva ROC", fontweight="bold")
ax.legend()
plt.tight_layout()
safe = model_name.lower().replace(" ", "_").replace("/", "_")
path = self.output_dir / f"roc_{safe}.png"
if save:
fig.savefig(path, dpi=150, bbox_inches="tight")
logger.info(f"Curva ROC guardada: {path}")
if show:
plt.show()
else:
plt.close(fig)
return path if save else None
# ββ AnΓ‘lisis de errores ββββββββββββββββββββββββββββββββββββββββββββββββββ
def error_analysis(
self,
X_test,
y_test,
y_pred,
y_proba,
model_name: str = "modelo",
n_examples: int = 5,
) -> dict:
"""
Analiza los falsos positivos y falsos negativos mΓ‘s relevantes.
FP β comentarios OK que el modelo censura (peor UX)
FN β hate speech que se escapa (peor para el objetivo del proyecto)
"""
texts = np.array(X_test) if not isinstance(X_test, np.ndarray) else X_test
y_arr = np.array(y_test)
error_df = pd.DataFrame({
"text" : texts,
"real" : y_arr,
"pred" : y_pred,
"prob_toxic": y_proba,
})
fp = error_df[(error_df["real"] == 0) & (error_df["pred"] == 1)]
fn = error_df[(error_df["real"] == 1) & (error_df["pred"] == 0)]
top_fp_terms = self._most_common_terms(fp["text"].tolist())
top_fn_terms = self._most_common_terms(fn["text"].tolist())
logger.info(f"Errores {model_name}: FP={len(fp)} | FN={len(fn)}")
print(f"\n{'='*65}")
print(f"FALSOS NEGATIVOS β tΓ³xico no detectado ({len(fn)} total)")
if top_fn_terms:
print(" TΓ©rminos mΓ‘s frecuentes:", ", ".join(f"{w}({c})" for w, c in top_fn_terms[:8]))
print(f"{'='*65}")
for _, row in fn.nsmallest(n_examples, "prob_toxic").iterrows():
print(f" Prob: {row['prob_toxic']:.3f} | {str(row['text'])[:110]}")
print()
print(f"{'='*65}")
print(f"FALSOS POSITIVOS β seguro marcado como tΓ³xico ({len(fp)} total)")
if top_fp_terms:
print(" TΓ©rminos mΓ‘s frecuentes:", ", ".join(f"{w}({c})" for w, c in top_fp_terms[:8]))
print(f"{'='*65}")
for _, row in fp.nlargest(n_examples, "prob_toxic").iterrows():
print(f" Prob: {row['prob_toxic']:.3f} | {str(row['text'])[:110]}")
print()
safe = model_name.lower().replace(" ", "_").replace("/", "_")
errors_path = self.output_dir / f"errors_{safe}.csv"
pd.concat([
fp.assign(tipo_error="falso_positivo"),
fn.assign(tipo_error="falso_negativo"),
], ignore_index=True).to_csv(errors_path, index=False)
logger.info(f"Errores guardados: {errors_path}")
return {
"top_fp_terms": top_fp_terms,
"top_fn_terms": top_fn_terms,
"fp_examples": fp.head(n_examples).to_dict("records"),
"fn_examples": fn.head(n_examples).to_dict("records"),
"errors_csv": str(errors_path),
}
# ββ Reports ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def save_report(self, metrics: dict, experiment_id: str) -> Path:
"""Guarda las mΓ©tricas de un experimento en JSON."""
path = self.output_dir / f"{experiment_id}.json"
with open(path, "w") as f:
json.dump(metrics, f, indent=2)
logger.info(f"Report guardado: {path}")
return path
def save_summary(self, all_metrics: list[dict], path: str | Path = None) -> Path:
"""
Guarda un CSV acumulativo con todos los experimentos.
Si summary.csv ya existe, agrega nuevas filas.
"""
path = Path(path or DEFAULT_SUMMARY_PATH)
path.parent.mkdir(parents=True, exist_ok=True)
# Nuevo dataframe
new_df = pd.DataFrame(all_metrics)
# Si ya existe un summary anterior β cargarlo
if path.exists():
old_df = pd.read_csv(path)
# Concatenar viejo + nuevo
df = pd.concat([old_df, new_df], ignore_index=True)
# Evitar duplicados por run_id si existe
if "run_id" in df.columns:
df = df.drop_duplicates(subset=["run_id"], keep="last")
elif "model" in df.columns and "timestamp" in df.columns:
df = df.drop_duplicates(subset=["model", "timestamp"], keep="last")
else:
df = new_df
# Ordenar por F1 descendente
if "f1_weighted" in df.columns:
df = df.sort_values("f1_weighted", ascending=False, na_position="last")
# Guardar actualizado
df.to_csv(path, index=False)
logger.info(f"Summary actualizado: {path}")
cols = [c for c in ["model", "f1_weighted", "roc_auc", "fp", "fn"] if c in df.columns]
print(df[cols].to_string(index=False))
return path
@staticmethod
def _most_common_terms(texts: list, top_n: int = 10) -> list[tuple[str, int]]:
counter: Counter[str] = Counter()
for text in texts:
counter.update(_TOKEN_RE.findall(str(text).lower()))
return counter.most_common(top_n)
# ββ Interno ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _print_summary(self, metrics: dict) -> None:
gap_str = ""
if "cv_test_gap_pp" in metrics:
ok = "β
" if metrics["cv_test_gap_pp"] < 5 else "β οΈ"
gap_str = f"CV-test gap: {metrics['cv_test_gap_pp']:.2f}pp {ok}"
elif "train_test_gap_pp" in metrics:
ok = "β
" if metrics["train_test_gap_pp"] < 5 else "β οΈ"
gap_str = f"Train-test gap: {metrics['train_test_gap_pp']:.2f}pp {ok}"
print(f"\n{'='*55}")
print(f"RESULTADOS β {metrics['model']}")
print(f"{'='*55}")
print(f" F1 weighted : {metrics['f1_weighted']:.4f}")
print(f" ROC-AUC : {metrics['roc_auc']:.4f}")
print(f" FP / FN : {metrics['fp']} / {metrics['fn']}")
if gap_str:
print(f" {gap_str}")
print(f"{'='*55}")
|