Spaces:
Running
Running
File size: 20,731 Bytes
e17f3ba e057d08 c4ff02d e17f3ba e057d08 e17f3ba e7f46d8 e17f3ba e057d08 fc6a2fc 30593bd e17f3ba e7f46d8 e057d08 e17f3ba e057d08 e17f3ba 73d00fd e17f3ba 73d00fd e17f3ba e057d08 e17f3ba e057d08 e17f3ba e057d08 e17f3ba e057d08 e17f3ba e057d08 e17f3ba ea7bee1 e057d08 e17f3ba | 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 | """
benchmark.py
Core benchmarking engine for the SAP RPT-1 tool.
Handles dataset processing, CV training, and model comparison.
"""
import os, sys, time, warnings
import numpy as np
import pandas as pd
from pathlib import Path
from sklearn.model_selection import StratifiedKFold, KFold
from sklearn.metrics import (accuracy_score, f1_score, roc_auc_score,
r2_score, mean_absolute_error, mean_squared_error)
from sklearn.preprocessing import LabelEncoder
from sklearn.neighbors import KNeighborsClassifier, KNeighborsRegressor
warnings.filterwarnings("ignore")
# Allow importing model wrappers from the code directory
sys.path.insert(0, str(Path(__file__).parent / "code"))
N_FOLDS = int(os.getenv("N_FOLDS", "5"))
RAND = int(os.getenv("RANDOM_STATE", "42"))
HF_TOKEN = os.getenv("HUGGING_FACE_HUB_TOKEN", "")
# Suppress redundant Hugging Face Hub notes
import logging
logging.getLogger("huggingface_hub").setLevel(logging.ERROR)
_HF_AUTHENTICATED = False
def _ensure_hf_login():
global _HF_AUTHENTICATED
if HF_TOKEN and not _HF_AUTHENTICATED:
try:
from huggingface_hub import login
login(token=HF_TOKEN, add_to_git_credential=False)
_HF_AUTHENTICATED = True
except Exception as e:
print(f"HF Login failed: {e}")
MODEL_COLORS = {
"XGBoost": "#f59e0b",
"LightGBM": "#10b981",
"CatBoost": "#6366f1",
"SAP-RPT-1-OSS": "#ec4899",
"TabPFN": "#3b82f6",
"Voting Ensemble": "#fbbf24",
"Stacking Ensemble": "#a78bfa",
}
# ββ Model builders βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _xgb(task):
import xgboost as xgb
kw = dict(n_estimators=200, max_depth=6, learning_rate=0.1,
random_state=RAND, verbosity=0, eval_metric="logloss")
return xgb.XGBClassifier(**kw) if task == "classification" else xgb.XGBRegressor(**kw)
def _lgb(task):
import lightgbm as lgb
kw = dict(n_estimators=200, learning_rate=0.1, random_state=RAND, verbose=-1)
return lgb.LGBMClassifier(**kw) if task == "classification" else lgb.LGBMRegressor(**kw)
def _cat(task):
from catboost import CatBoostClassifier, CatBoostRegressor
kw = dict(iterations=200, learning_rate=0.1, random_state=RAND, verbose=False)
return CatBoostClassifier(**kw) if task == "classification" else CatBoostRegressor(**kw)
def _tabpfn(task):
if task != "classification":
raise ValueError("TabPFN only supports classification tasks")
from models.tabpfn_wrapper import TabPFNWrapper
return TabPFNWrapper(task_type=task, random_state=RAND)
class _SAPModel:
"""
Tries the real SAP RPT-1 OSS via HuggingFace; falls back to k-NN simulator
if the package is not installed or authentication fails.
"""
def __init__(self, task):
self.task = task
self._real = False
self._le = LabelEncoder() if task == "classification" else None
if HF_TOKEN:
try:
_ensure_hf_login()
from sap_rpt_oss import SAP_RPT_OSS_Classifier, SAP_RPT_OSS_Regressor
if task == "classification":
self._model = SAP_RPT_OSS_Classifier(max_context_size=2048, bagging=1)
else:
self._model = SAP_RPT_OSS_Regressor(max_context_size=2048, bagging=1)
self._real = True
except Exception:
self._init_sim()
else:
self._init_sim()
def _init_sim(self):
k = 15
if self.task == "classification":
self._model = KNeighborsClassifier(n_neighbors=k)
else:
self._model = KNeighborsRegressor(n_neighbors=k)
def fit(self, X, y):
if self._real:
self._model.fit(X, y)
else:
if self.task == "classification":
y_enc = self._le.fit_transform(y)
self._model.fit(X, y_enc)
else:
self._model.fit(X, y)
return self
def predict(self, X):
# sap_rpt_oss fails on single-row prediction due to an internal concatenation bug.
# We work around this by doubling the row if len(X) == 1.
is_single = len(X) == 1
X_input = pd.concat([X, X]) if is_single else X
preds = self._model.predict(X_input)
if is_single:
preds = preds[:1]
if not self._real and self.task == "classification":
preds = self._le.inverse_transform(preds)
return preds
def predict_proba(self, X):
is_single = len(X) == 1
X_input = pd.concat([X, X]) if is_single else X
proba = self._model.predict_proba(X_input)
return proba[:1] if is_single else proba
@property
def label(self):
return "SAP RPT-1 OSS"
BUILDERS = {
"XGBoost": _xgb,
"LightGBM": _lgb,
"CatBoost": _cat,
"TabPFN": _tabpfn,
"SAP RPT-1 OSS": lambda task: _SAPModel(task),
}
# ββ Preprocessing ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _prep(X: pd.DataFrame, encoders: dict = None) -> (pd.DataFrame, dict):
X = X.copy()
num = X.select_dtypes(include=[np.number]).columns
cat = X.select_dtypes(exclude=[np.number]).columns
new_encoders = encoders if encoders is not None else {}
if len(num):
# For simplicity in playground, we'll just fillna(0) if no encoders provided
# or use stored means if we want to be perfect.
X[num] = X[num].fillna(0)
for c in cat:
if c not in new_encoders:
le = LabelEncoder()
X[c] = le.fit_transform(X[c].fillna("__NA__").astype(str))
new_encoders[c] = le
else:
le = new_encoders[c]
# Handle unseen labels by mapping them to the first seen label or NA
X[c] = X[c].fillna("__NA__").astype(str).map(
lambda x: le.transform([x])[0] if x in le.classes_ else 0
)
return X, new_encoders
def _encode_target(y: pd.Series, task: str):
if task == "classification":
le = LabelEncoder()
# Always encode classification labels to avoid string/object issues with XGBoost/LightGBM
return pd.Series(le.fit_transform(y.astype(str)), name=y.name, index=y.index), le
return y, None
# ββ Metrics βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _clf_metrics(model, X_tr, y_tr, X_val, y_val):
t0 = time.perf_counter()
model.fit(X_tr, y_tr)
fit_t = time.perf_counter() - t0
y_pred = model.predict(X_val)
acc = accuracy_score(y_val, y_pred)
f1 = f1_score(y_val, y_pred, average="macro", zero_division=0)
try:
proba = model.predict_proba(X_val)
n_cls = len(np.unique(y_val))
auc = roc_auc_score(y_val, proba[:, 1]) if n_cls == 2 else \
roc_auc_score(y_val, proba, multi_class="ovr", average="macro")
except Exception:
auc = float("nan")
return {"accuracy": acc, "f1_macro": f1, "roc_auc": auc, "fit_time": fit_t}
def _reg_metrics(model, X_tr, y_tr, X_val, y_val):
t0 = time.perf_counter()
model.fit(X_tr, y_tr)
fit_t = time.perf_counter() - t0
y_pred = model.predict(X_val)
return {
"r2": r2_score(y_val, y_pred),
"mae": mean_absolute_error(y_val, y_pred),
"rmse": float(np.sqrt(mean_squared_error(y_val, y_pred))),
"fit_time": fit_t,
}
# ββ Cross-validation ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _run_cv(builder, X, y, task):
if task == "classification":
splits = list(StratifiedKFold(N_FOLDS, shuffle=True, random_state=RAND).split(X, y))
else:
splits = list(KFold(N_FOLDS, shuffle=True, random_state=RAND).split(X))
fold_results = []
for tr_idx, val_idx in splits:
Xtr, Xval = X.iloc[tr_idx], X.iloc[val_idx]
ytr, yval = y.iloc[tr_idx], y.iloc[val_idx]
# Capture encoders from training set and apply to validation set
Xtr_p, encoders = _prep(Xtr)
Xval_p, _ = _prep(Xval, encoders=encoders)
model = builder(task)
if task == "classification":
fold_results.append(_clf_metrics(model, Xtr_p, ytr, Xval_p, yval))
else:
fold_results.append(_reg_metrics(model, Xtr_p, ytr, Xval_p, yval))
df = pd.DataFrame(fold_results)
return {"mean": df.mean().to_dict(), "std": df.std().to_dict(), "folds": df.to_dict("records")}
# ββ Recommendation engine ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _recommend(results: dict, task: str) -> dict:
primary = "roc_auc" if task == "classification" else "r2"
secondary = "f1_macro" if task == "classification" else "mae"
higher_secondary = task == "classification" # True = higher is better
scores = {}
for name, data in results.items():
if "error" in data:
continue
m = data["mean"]
s = data["std"]
prim_val = m.get(primary, 0) or 0
prim_std = s.get(primary, 1) or 1
sec_val = m.get(secondary, 0) or 0
fit_t = m.get("fit_time", 99) or 99
# Normalised composite (0-1 each axis)
# Primary: 40%, Consistency (1-std): 20%, Speed (1-log-time): 20%, Secondary: 20%
consistency = max(0.0, 1.0 - prim_std * 10)
max_t = 60.0
speed = max(0.0, 1.0 - min(fit_t, max_t) / max_t)
sec_norm = sec_val if higher_secondary else max(0, 1 - sec_val / (sec_val + 1e-6 + 1))
composite = 0.40 * prim_val + 0.20 * consistency + 0.20 * speed + 0.20 * sec_norm
scores[name] = {
"primary": round(prim_val, 4),
"consistency": round(consistency, 4),
"speed": round(speed, 4),
"secondary": round(sec_val, 4),
"composite": round(composite, 4),
"fit_time": round(fit_t, 3),
}
if not scores:
return {}
best_overall = max(scores, key=lambda n: scores[n]["composite"])
best_accuracy = max(scores, key=lambda n: scores[n]["primary"])
best_speed = max(scores, key=lambda n: scores[n]["speed"])
best_stable = max(scores, key=lambda n: scores[n]["consistency"])
p_metric_label = "ROC-AUC" if task == "classification" else "RΒ²"
def pct_faster(fast, others):
fast_t = results[fast]["mean"]["fit_time"]
other_ts = [results[n]["mean"]["fit_time"] for n in others if n != fast and "error" not in results[n]]
if not other_ts: return 0
avg = sum(other_ts) / len(other_ts)
return round((avg - fast_t) / (avg + 1e-9) * 100, 1)
recommendations = {
"best_overall": {
"model": best_overall,
"score": scores[best_overall]["composite"],
"reason": (f"{best_overall} has the highest composite score ({scores[best_overall]['composite']:.4f}), "
f"balancing {p_metric_label} ({scores[best_overall]['primary']:.4f}), "
f"consistency, and training speed.")
},
"best_accuracy": {
"model": best_accuracy,
"score": scores[best_accuracy]["primary"],
"reason": (f"{best_accuracy} achieves the highest {p_metric_label} of "
f"{scores[best_accuracy]['primary']:.4f}. Best choice when raw predictive "
f"performance is the only priority.")
},
"best_speed": {
"model": best_speed,
"score": scores[best_speed]["fit_time"],
"reason": (f"{best_speed} is the fastest model, training in "
f"{scores[best_speed]['fit_time']:.3f}s per fold β "
f"{pct_faster(best_speed, list(scores.keys()))}% faster than average. "
f"Ideal for real-time retraining or large data pipelines.")
},
"best_consistency": {
"model": best_stable,
"score": scores[best_stable]["consistency"],
"reason": (f"{best_stable} is the most consistent model across folds, "
f"with the lowest variance in {p_metric_label}. "
f"Best choice when reliability matters more than peak performance.")
},
}
# Production recommendation: best composite that isn't worst speed
prod = best_overall
recommendations["production"] = {
"model": prod,
"reason": (f"For production deployment, we recommend {prod}. "
f"It achieves an excellent balance of accuracy "
f"({scores[prod]['primary']:.4f} {p_metric_label}), "
f"trains in {scores[prod]['fit_time']:.3f}s per fold, "
f"and performs consistently across data splits.")
}
return {"scores": scores, "recommendations": recommendations, "primary_metric": p_metric_label}
def _statistical_analysis(results: dict, task: str) -> dict:
"""
Perform ranking analysis and Friedman test across CV folds.
"""
from scipy.stats import friedmanchisquare
primary = "roc_auc" if task == "classification" else "r2"
model_names = [n for n in results if "error" not in results[n]]
if len(model_names) < 2:
return {}
# Extract scores per fold for each model
# Matrix: rows = folds, cols = models
matrix = []
n_folds = 0
for name in model_names:
folds = results[name].get("folds", [])
n_folds = len(folds)
scores = [f.get(primary, 0) for f in folds]
matrix.append(scores)
matrix = np.array(matrix).T # Now (n_folds, n_models)
# Calculate ranks for each fold (row)
# Higher score = lower rank (1 is best). Using method='min' for competition ranking (ties get same best rank)
ranks = []
for row in matrix:
from scipy.stats import rankdata
ranks.append(rankdata(-row, method='min'))
avg_ranks = np.mean(ranks, axis=0)
# Friedman Test
try:
if n_folds >= 3 and len(model_names) >= 3:
stat, p_val = friedmanchisquare(*[matrix[:, i] for i in range(len(model_names))])
else:
stat, p_val = 0.0, 1.0
except Exception:
stat, p_val = 0.0, 1.0
stats_results = []
for i, name in enumerate(model_names):
win_count = int(np.sum(np.array(ranks)[:, i] == 1))
stats_results.append({
"model": name,
"avg_rank": float(round(avg_ranks[i], 2)),
"win_rate": float(round(win_count / n_folds * 100, 1)),
"is_champion": bool(avg_ranks[i] == np.min(avg_ranks))
})
# Sort by rank
stats_results.sort(key=lambda x: x["avg_rank"])
return {
"friedman_p": float(round(p_val, 4)),
"significant": bool(p_val < 0.05),
"ranking": stats_results
}
# ββ Sklearn-safe builders (for Stacking) βββββββββββββββββββββββββββββββββββββ
SKLEARN_BUILDERS = {"XGBoost": _xgb, "LightGBM": _lgb, "CatBoost": _cat}
# ββ Public API ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def infer_task(y: pd.Series) -> str:
if y.dtype == object or str(y.dtype) == "category":
return "classification"
return "classification" if y.nunique() < 20 else "regression"
def run_benchmark(df: pd.DataFrame, target_col: str) -> dict:
"""
Run full benchmark on a DataFrame.
Parameters
----------
df : the full dataset
target_col : name of the target column
Returns
-------
dict with keys: dataset_info, task, results, ensemble_info, recommendation
"""
try:
from ensemble import select_top_models, run_voting_ensemble, run_stacking_ensemble, SKLEARN_SAFE
except ImportError:
from webapp.ensemble import select_top_models, run_voting_ensemble, run_stacking_ensemble, SKLEARN_SAFE
y_raw = df[target_col].copy()
X = df.drop(columns=[target_col]).copy()
task = infer_task(y_raw)
y, _ = _encode_target(y_raw, task)
dataset_info = {
"n_samples": len(df),
"n_features": X.shape[1],
"target_col": target_col,
"task": task,
"n_classes": int(y.nunique()) if task == "classification" else None,
"columns": list(X.columns),
}
# Phase 1: Individual model training
results = {}
sap_label = None
for name, builder in BUILDERS.items():
try:
cv = _run_cv(builder, X, y, task)
results[name] = cv
if name == "SAP RPT-1 OSS":
try:
m = builder(task)
sap_label = m.label
except Exception:
sap_label = "SAP RPT-1 OSS"
except Exception as e:
err_msg = str(e)
if "tabpfn only supports" in err_msg.lower():
err_msg = "TabPFN only supports classification tasks"
elif "invalid classes" in err_msg.lower():
err_msg = "Inconsistent labels for this model"
results[name] = {"error": err_msg[:120]}
if sap_label and "SAP RPT-1 OSS" in results and "error" not in results["SAP RPT-1 OSS"]:
results["SAP RPT-1 OSS"]["label"] = sap_label
# Phase 2: Ensemble models
ensemble_info = {}
top_pairs = select_top_models(results, BUILDERS, task, n=3)
top_names = [name for name, _ in top_pairs]
if len(top_pairs) >= 2:
# Voting ensemble β works with all model types
try:
vcv = run_voting_ensemble(top_pairs, X, y, task, _prep)
results["Voting Ensemble"] = vcv
ensemble_info["Voting Ensemble"] = {
"type": "voting",
"strategy": "soft",
"components": top_names,
"description": (
f"Soft-voting average of the top {len(top_pairs)} models: "
+ ", ".join(top_names) + ". "
"Probabilities are averaged per class before taking argmax."
),
}
except Exception as e:
results["Voting Ensemble"] = {"error": str(e)[:120]}
# Stacking ensemble β sklearn-native models only as base learners
sklearn_pairs = [(n, b) for n, b in top_pairs if n in SKLEARN_SAFE]
if len(sklearn_pairs) >= 2:
try:
scv = run_stacking_ensemble(sklearn_pairs, X, y, task, _prep)
results["Stacking Ensemble"] = scv
sklearn_names = [n for n, _ in sklearn_pairs]
meta = "LogisticRegression" if task == "classification" else "Ridge"
ensemble_info["Stacking Ensemble"] = {
"type": "stacking",
"meta_learner": meta,
"components": sklearn_names,
"description": (
f"Stacking with {meta} meta-learner on top of: "
+ ", ".join(sklearn_names) + ". "
"Base models generate out-of-fold predictions that "
"train the meta-learner."
),
}
except Exception as e:
results["Stacking Ensemble"] = {"error": str(e)[:120]}
# Phase 3: Final recommendation
recommendation = _recommend(results, task)
# Phase 4: Statistical analysis
stats = _statistical_analysis(results, task)
return {
"dataset_info": dataset_info,
"task": task,
"results": results,
"ensemble_info": ensemble_info,
"recommendation": recommendation,
"stats": stats,
"n_folds": N_FOLDS,
}
|