File size: 37,342 Bytes
3f984f1 | 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 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 | from __future__ import annotations
import copy
import json
import os
from typing import List, Optional, Tuple
import numpy as np
import pandas as pd
import torch
import torch.nn as nn
import torch.optim as optim
from torch.optim.lr_scheduler import CosineAnnealingLR, LinearLR, SequentialLR
from sklearn.metrics import confusion_matrix, roc_auc_score
from torch.utils.data import DataLoader
from src.config import CFG
from src.dataset import ChestXrayDataset, SubmissionDataset, TTADataset
from src.model import (
RadDinoWrapper,
build_model,
cardio_logit,
freeze_backbone,
partial_unfreeze,
trainable_params,
unfreeze_all,
)
from src.transforms import make_tta_transforms
from src.utils import free_device_cache, log_run, set_seed
# ---------------------------------------------------------------------------
# Mixup helper
# ---------------------------------------------------------------------------
def mixup_data(
x: torch.Tensor,
y: torch.Tensor,
alpha: float = 0.4,
) -> Tuple[torch.Tensor, torch.Tensor]:
"""Return a randomly mixed batch and the corresponding soft labels.
Ξ» ~ Beta(Ξ±, Ξ±). When Ξ± β€ 0 the original batch is returned unchanged.
Args:
x: Image tensor (B, C, H, W) on the training device.
y: Label tensor (B,) β may already be soft (e.g. after smoothing).
alpha: Beta distribution parameter. Typical: 0.2 β 0.4.
"""
if alpha <= 0:
return x, y
lam = float(np.random.beta(alpha, alpha))
idx = torch.randperm(x.size(0), device=x.device)
mixed_x = lam * x + (1.0 - lam) * x[idx]
mixed_y = lam * y + (1.0 - lam) * y[idx]
return mixed_x, mixed_y
# ---------------------------------------------------------------------------
# Differentiable composite loss
# ---------------------------------------------------------------------------
def infer_bce_pos_weight_tensor(
train_loader: DataLoader,
scale: float,
device: str,
) -> Optional[torch.Tensor]:
"""Return ``pos_weight`` for ``BCEWithLogitsLoss``, or ``None`` if disabled.
Uses the training split label counts: ``pos_weight = min(100, scale * n_neg / n_pos)``.
Reads ``.df['label']`` from ``ChestXrayDataset`` or ``.labels`` from ``EmbeddingDataset``.
"""
if scale <= 0:
return None
ds = train_loader.dataset
if hasattr(ds, "df"):
y = ds.df["label"].to_numpy(dtype=np.float64)
elif hasattr(ds, "labels"):
y = ds.labels.detach().cpu().numpy()
else:
return None
n_pos = int(np.sum(y >= 0.5))
n_neg = int(len(y) - n_pos)
if n_pos <= 0 or n_neg <= 0:
return None
w = float(scale) * (n_neg / n_pos)
w = min(w, 100.0)
return torch.tensor([w], device=device, dtype=torch.float32)
class SoftCompositeLoss(nn.Module):
"""Differentiable approximation of composite = 0.5Β·AUC + 0.25Β·sens + 0.25Β·spec.
Minimises ``1 - soft_composite``, blended with standard BCE for stability.
**Design (v2)** β closer to the evaluated composite and more stable on small batches:
* **Sens/spec:** ``Ο(tΒ·logit)`` / ``Ο(βtΒ·logit)`` with temperature ``t = thr_temperature``,
weighted by **soft** ``target`` (works with mixup / label smoothing).
* **Soft-AUC:** pairwise term only if β₯ ``min_class_per_batch`` **strict** positives
and negatives (`y > 0.5` / `y < 0.5`); otherwise **BCE-only** for this batch (no
meaningless ``soft_auc = 0.5`` gradient).
* **Imbalance:** if ``pos_weight`` is set, sens/spec block uses
``0.5Β·(wΒ·soft_sens + soft_spec)/(w+1)`` in line with BCE's positive weighting.
"""
def __init__(
self,
alpha: float = 0.5,
auc_gamma: float = 1.0,
eps: float = 1e-7,
pos_weight: Optional[torch.Tensor] = None,
thr_temperature: float = 6.0,
min_class_per_batch: int = 2,
):
super().__init__()
self.alpha = alpha
self.auc_gamma = auc_gamma
self.eps = eps
self.thr_temperature = float(thr_temperature)
self.min_class_per_batch = int(min_class_per_batch)
self._bce = nn.BCEWithLogitsLoss(pos_weight=pos_weight)
self._pos_w_scalar: Optional[float] = (
float(pos_weight.detach().cpu().item()) if pos_weight is not None else None
)
def forward(self, logit: torch.Tensor, target: torch.Tensor) -> torch.Tensor:
bce_loss = self._bce(logit, target)
pos_hard = target > 0.5
neg_hard = target < 0.5
n_pos_h = int(pos_hard.sum().item())
n_neg_h = int(neg_hard.sum().item())
if n_pos_h < self.min_class_per_batch or n_neg_h < self.min_class_per_batch:
return bce_loss
pos_logits = logit[pos_hard]
neg_logits = logit[neg_hard]
diff = pos_logits.unsqueeze(1) - neg_logits.unsqueeze(0)
soft_auc = torch.sigmoid(self.auc_gamma * diff).mean()
t = self.thr_temperature
p_hit = torch.sigmoid(t * logit)
p_miss = torch.sigmoid(-t * logit)
pos_m = target.sum().clamp_min(self.eps)
neg_m = (1.0 - target).sum().clamp_min(self.eps)
soft_sens = (target * p_hit).sum() / pos_m
soft_spec = ((1.0 - target) * p_miss).sum() / neg_m
if self._pos_w_scalar is not None:
w = min(max(self._pos_w_scalar, 1.0), 100.0)
sens_spec_block = 0.5 * (w * soft_sens + soft_spec) / (w + 1.0)
else:
sens_spec_block = 0.25 * soft_sens + 0.25 * soft_spec
soft_composite = 0.5 * soft_auc + sens_spec_block
composite_loss = 1.0 - soft_composite
return self.alpha * bce_loss + (1.0 - self.alpha) * composite_loss
# ---------------------------------------------------------------------------
# RAD-DINO Stage-1 helpers: embedding cache + head-only epoch runner
# ---------------------------------------------------------------------------
class EmbeddingDataset(torch.utils.data.Dataset):
"""Wraps pre-computed CLS embeddings for head-only Stage-1 training.
Produced by ``precompute_cls_embeddings``; items are
``(embedding_tensor, label_tensor, filename_str)``.
"""
def __init__(
self,
embeds: torch.Tensor,
labels: torch.Tensor,
names: list,
) -> None:
self.embeds = embeds
self.labels = labels
self.names = names
def __len__(self) -> int:
return len(self.labels)
def __getitem__(self, idx: int):
return self.embeds[idx], self.labels[idx], self.names[idx]
def precompute_cls_embeddings(
model: RadDinoWrapper,
loader: DataLoader,
config=None,
) -> Tuple[torch.Tensor, torch.Tensor, list]:
"""Run the frozen RAD-DINO backbone over *loader* once and cache head inputs.
Caches ``concat(CLS, mean(patch tokens))`` β same representation as
``RadDinoWrapper.forward`` β so Stage-1 trains only the MLP on fixed vectors.
Returns CPU tensors ``(embeddings, labels, names)`` ready to wrap in an
``EmbeddingDataset``. The backbone is never updated here β this is purely
a one-time inference pass for Stage-1 speedup (~10Γ faster than re-running
the ViT every epoch).
"""
cfg = config or CFG
pin = (cfg.device == "cuda")
model.eval()
all_embeds, all_labels, all_names = [], [], []
with torch.no_grad():
for x, y, names in loader:
x = x.to(cfg.device, non_blocking=pin)
out = model.features(pixel_values=x)
h = out.last_hidden_state
cls = h[:, 0]
pm = h[:, 1:].mean(dim=1)
z = torch.cat([cls, pm], dim=-1).float().cpu() # (B, 1536)
all_embeds.append(z)
all_labels.append(y.float())
all_names.extend(list(names))
return torch.cat(all_embeds), torch.cat(all_labels), all_names
def _run_epoch_head_only(
model: nn.Module,
loader: DataLoader,
criterion: Optional[nn.Module] = None,
optimizer: Optional[optim.Optimizer] = None,
label_smoothing: float = 0.0,
) -> dict:
"""Train / evaluate the classifier head on pre-computed RAD-DINO head inputs.
Inputs are ``(embedding, label, name)`` batches from ``EmbeddingDataset``.
No AMP or mixup β the bottleneck is the tiny MLP, not image tensors.
Returns the same metric dict as ``run_one_epoch``.
"""
is_train = optimizer is not None
model.train(is_train)
losses, logits_all, labels_all, names_all = [], [], [], []
device = next(model.classifier.parameters()).device
for embeds, y, names in loader:
embeds = embeds.to(device)
y = y.to(device)
y_hard = y.detach().clone()
if is_train and label_smoothing > 0.0:
y = y * (1.0 - label_smoothing) + 0.5 * label_smoothing
with torch.set_grad_enabled(is_train):
logit = model.classifier(embeds).squeeze(1) # (B,)
loss = criterion(logit, y) if criterion is not None else None
if is_train and loss is not None:
optimizer.zero_grad(set_to_none=True)
loss.backward()
optimizer.step()
if loss is not None:
losses.append(loss.item())
logits_all.append(logit.detach().float().cpu().numpy())
labels_all.append(y_hard.float().cpu().numpy())
names_all.extend(list(names))
y_true = np.concatenate(labels_all)
y_logit = np.concatenate(logits_all)
y_prob = 1.0 / (1.0 + np.exp(-y_logit))
auc = roc_auc_score(y_true, y_prob) if len(np.unique(y_true)) > 1 else float("nan")
y_pred = (y_prob >= 0.5).astype(int)
tn, fp, fn, tp = confusion_matrix(y_true, y_pred, labels=[0, 1]).ravel()
acc = float((tp + tn) / (tp + tn + fp + fn)) if (tp + tn + fp + fn) > 0 else float("nan")
sens = float(tp / (tp + fn)) if (tp + fn) > 0 else 0.0
spec = float(tn / (tn + fp)) if (tn + fp) > 0 else 0.0
composite = 0.5 * (auc if not np.isnan(auc) else 0.0) + 0.25 * sens + 0.25 * spec
return {
"loss": float(np.mean(losses)) if losses else float("nan"),
"auc": float(auc),
"acc": acc,
"sens": sens,
"spec": spec,
"composite": float(composite),
"y_true": y_true,
"y_prob": y_prob,
"names": names_all,
}
# ---------------------------------------------------------------------------
# Epoch runner
# ---------------------------------------------------------------------------
def run_one_epoch(
model: nn.Module,
loader: DataLoader,
criterion: Optional[nn.Module] = None,
optimizer: Optional[optim.Optimizer] = None,
scaler: Optional[torch.cuda.amp.GradScaler] = None,
grad_clip: Optional[float] = None,
mixup_alpha: float = 0.0,
label_smoothing: float = 0.0,
) -> dict:
"""Single forward pass over *loader*.
Pass ``optimizer=None`` for evaluation (mixup and smoothing are skipped).
Expects (image, label, name) batches. Uses CUDA AMP when available.
Hard original labels are always accumulated for metric computation;
the (potentially mixed + smoothed) soft labels are only used for the loss.
"""
is_train = optimizer is not None
model.train(is_train)
losses, logits_all, labels_all, names_all = [], [], [], []
pin = (CFG.device == "cuda")
grad_clip = grad_clip if grad_clip is not None else CFG.grad_clip
amp_ctx = torch.cuda.amp.autocast(enabled=(CFG.device == "cuda"))
for x, y, names in loader:
x = x.to(CFG.device, non_blocking=pin)
y = y.to(CFG.device, non_blocking=pin)
# Keep hard labels for metric accumulation (before any augmentation)
y_hard = y.detach().clone()
if is_train:
# Mixup: interpolate two samples + their labels in-place
if mixup_alpha > 0.0:
x, y = mixup_data(x, y, alpha=mixup_alpha)
# Label smoothing: y_smooth = y*(1-Ξ΅) + 0.5*Ξ΅
if label_smoothing > 0.0:
y = y * (1.0 - label_smoothing) + 0.5 * label_smoothing
with torch.set_grad_enabled(is_train):
with amp_ctx:
logit = cardio_logit(model, x)
loss = criterion(logit, y) if criterion is not None else None
if is_train:
optimizer.zero_grad(set_to_none=True)
if scaler is not None and scaler.is_enabled():
scaler.scale(loss).backward()
scaler.unscale_(optimizer)
torch.nn.utils.clip_grad_norm_(trainable_params(model), grad_clip)
scaler.step(optimizer)
scaler.update()
else:
loss.backward()
torch.nn.utils.clip_grad_norm_(trainable_params(model), grad_clip)
optimizer.step()
if loss is not None:
losses.append(loss.item())
logits_all.append(logit.detach().float().cpu().numpy())
labels_all.append(y_hard.float().cpu().numpy()) # always hard labels
names_all.extend(list(names))
y_true = np.concatenate(labels_all)
y_logit = np.concatenate(logits_all)
y_prob = 1.0 / (1.0 + np.exp(-y_logit))
auc = roc_auc_score(y_true, y_prob) if len(np.unique(y_true)) > 1 else float("nan")
# Per-epoch metrics at threshold=0.5 (used for progress logging)
y_pred = (y_prob >= 0.5).astype(int)
tn, fp, fn, tp = confusion_matrix(y_true, y_pred, labels=[0, 1]).ravel()
acc = float((tp + tn) / (tp + tn + fp + fn)) if (tp + tn + fp + fn) > 0 else float("nan")
sens = float(tp / (tp + fn)) if (tp + fn) > 0 else 0.0
spec = float(tn / (tn + fp)) if (tn + fp) > 0 else 0.0
composite = 0.5 * (auc if not np.isnan(auc) else 0.0) + 0.25 * sens + 0.25 * spec
return {
"loss": float(np.mean(losses)) if losses else float("nan"),
"auc": float(auc),
"acc": acc,
"sens": sens,
"spec": spec,
"composite": float(composite),
"y_true": y_true,
"y_prob": y_prob,
"names": names_all,
}
# ---------------------------------------------------------------------------
# Single-seed two-stage training
# ---------------------------------------------------------------------------
def train_one_seed(
seed: int,
train_loader: DataLoader,
val_loader: DataLoader,
output_dir: Optional[str] = None,
config=None,
) -> Tuple[nn.Module, float, str, list[dict]]:
"""Train ONE model end-to-end (frozen warmup β full fine-tune).
Returns (best_model, best_val_score, checkpoint_path, history).
``best_val_score`` is the best validation value of ``cfg.checkpoint_metric``
(``"composite"``, ``"auc"``, or ``"sensitivity"``) during stage 2.
"""
cfg = config or CFG
output_dir = output_dir or cfg.output_dir
os.makedirs(output_dir, exist_ok=True)
set_seed(seed)
model = build_model(cfg.backbone).to(cfg.device)
total_params = sum(p.numel() for p in model.parameters())
print("\n" + "=" * 80)
print(f" Seed : {seed}")
print(f" Model : {model.__class__.__name__} ({total_params:,} total params)")
print(f" Backbone: {cfg.backbone}")
print(f" Device : {cfg.device}")
print("=" * 80)
_pw_scale = getattr(cfg, "bce_pos_weight_scale", 0.0)
_pos_w = infer_bce_pos_weight_tensor(train_loader, _pw_scale, cfg.device)
if _pos_w is not None:
print(f" BCE pos_weight: {_pos_w.item():.4f} (scale={_pw_scale} Γ n_neg/n_pos on train split)")
if cfg.use_composite_loss:
criterion = SoftCompositeLoss(
alpha=cfg.composite_loss_alpha,
auc_gamma=cfg.composite_loss_gamma,
pos_weight=_pos_w,
thr_temperature=getattr(cfg, "composite_thr_temperature", 6.0),
min_class_per_batch=getattr(cfg, "composite_min_class_per_batch", 2),
)
print(
f" Loss : SoftCompositeLoss "
f"(Ξ±={cfg.composite_loss_alpha}, Ξ³={cfg.composite_loss_gamma}, "
f"thr_t={getattr(cfg, 'composite_thr_temperature', 6.0)}, "
f"min_cls={getattr(cfg, 'composite_min_class_per_batch', 2)})"
)
else:
criterion = nn.BCEWithLogitsLoss(pos_weight=_pos_w)
print(" Loss : BCEWithLogitsLoss")
mixup_alpha = getattr(cfg, "mixup_alpha", 0.0)
label_smoothing = getattr(cfg, "label_smoothing", 0.0)
if mixup_alpha > 0:
print(f" Mixup : Ξ±={mixup_alpha}")
if label_smoothing > 0:
print(f" Smoothing: Ξ΅={label_smoothing}")
scaler = torch.cuda.amp.GradScaler(enabled=(cfg.device == "cuda"))
history: list[dict] = []
_aug_kw = dict(mixup_alpha=mixup_alpha, label_smoothing=label_smoothing)
# ββ Stage 1: frozen backbone, head-only warmup βββββββββββββββββββββββββ
freeze_backbone(model)
n_trainable = sum(p.numel() for p in trainable_params(model))
print(f"\n Stage 1 β all backbone blocks FROZEN | {n_trainable:,} trainable params")
# RAD-DINO: pre-compute CLS embeddings once β Stage 1 trains only the
# 256-unit MLP head, skipping the frozen ViT forward on every batch (~10Γ faster).
_rad_dino_mode = isinstance(model, RadDinoWrapper)
if _rad_dino_mode:
print(" [rad-dino] Pre-computing CLS+patch-mean embeddings for Stage 1 ...")
import time as _time
_t0 = _time.time()
_t_embeds, _t_labels, _t_names = precompute_cls_embeddings(model, train_loader, cfg)
_v_embeds, _v_labels, _v_names = precompute_cls_embeddings(model, val_loader, cfg)
print(f" [rad-dino] Embeddings ready ({_time.time() - _t0:.1f}s) "
f"train={len(_t_labels)} val={len(_v_labels)}")
s1_train = DataLoader(
EmbeddingDataset(_t_embeds, _t_labels, _t_names),
batch_size=256, shuffle=True, num_workers=0,
)
s1_val = DataLoader(
EmbeddingDataset(_v_embeds, _v_labels, _v_names),
batch_size=256, shuffle=False, num_workers=0,
)
else:
s1_train, s1_val = train_loader, val_loader
opt_frozen = optim.AdamW(
trainable_params(model), lr=cfg.head_lr, weight_decay=cfg.weight_decay,
)
for ep in range(1, cfg.frozen_epochs + 1):
if _rad_dino_mode:
t = _run_epoch_head_only(model, s1_train, criterion, opt_frozen,
label_smoothing=label_smoothing)
v = _run_epoch_head_only(model, s1_val, criterion,
label_smoothing=label_smoothing)
else:
t = run_one_epoch(model, s1_train, criterion, opt_frozen, scaler, **_aug_kw)
v = run_one_epoch(model, s1_val, criterion)
history.append({
"seed": seed, "stage": "frozen", "epoch": ep,
"train_loss": t["loss"], "train_auc": t["auc"],
"train_acc": t["acc"], "train_composite": t["composite"],
"val_loss": v["loss"], "val_auc": v["auc"],
"val_acc": v["acc"], "val_sens": v["sens"],
"val_spec": v["spec"], "val_composite": v["composite"],
"lr": opt_frozen.param_groups[0]["lr"],
})
print(
f" [frozen] {ep}/{cfg.frozen_epochs} "
f"loss={t['loss']:.4f} train_acc={t['acc']*100:.1f}% | "
f"val_auc={v['auc']:.4f} val_acc={v['acc']*100:.1f}% "
f"sens={v['sens']:.3f} spec={v['spec']:.3f} comp={v['composite']:.4f}"
)
# ββ Stage 2: partial or full fine-tune βββββββββββββββββββββββββββββββ
frozen_blocks = getattr(cfg, "frozen_blocks", 0)
partial_unfreeze(model, frozen_blocks)
n_trainable = sum(p.numel() for p in trainable_params(model))
if frozen_blocks == 0:
stage2_label = "all blocks UNFROZEN"
else:
stage2_label = f"{frozen_blocks} block(s) still FROZEN"
print(f"\n Stage 2 β {stage2_label} | {n_trainable:,} trainable params")
opt_ft = optim.AdamW(
[
{"params": model.features.parameters(), "lr": cfg.backbone_lr},
{"params": model.classifier.parameters(), "lr": cfg.head_lr},
],
weight_decay=cfg.weight_decay,
)
finet_e = int(cfg.finetune_epochs)
warmup = max(0, min(int(getattr(cfg, "finetune_warmup_epochs", 0)), max(0, finet_e - 1)))
eta_min = cfg.backbone_lr * 0.01
if warmup > 0:
lin = LinearLR(opt_ft, start_factor=0.1, end_factor=1.0, total_iters=warmup)
cos_T = max(1, finet_e - warmup)
cos = CosineAnnealingLR(opt_ft, T_max=cos_T, eta_min=eta_min)
sched = SequentialLR(opt_ft, schedulers=[lin, cos], milestones=[warmup])
print(f" Stage 2 LR: {warmup} warmup epochs (10%β100% LR) + cosine ({cos_T} steps, eta_min={eta_min:.2e})")
else:
sched = CosineAnnealingLR(opt_ft, T_max=finet_e, eta_min=eta_min)
checkpoint_metric = getattr(cfg, "checkpoint_metric", "composite")
if checkpoint_metric not in ("auc", "composite", "sensitivity"):
checkpoint_metric = "composite"
_metric_val_key = "sens" if checkpoint_metric == "sensitivity" else checkpoint_metric
def _score(vdict: dict) -> float:
x = vdict.get(_metric_val_key, float("-inf"))
if x is None or (isinstance(x, float) and x != x): # NaN
return float("-inf")
return float(x)
best_score, best_state, patience_ctr = float("-inf"), None, 0
for ep in range(1, cfg.finetune_epochs + 1):
t = run_one_epoch(model, train_loader, criterion, opt_ft, scaler, **_aug_kw)
v = run_one_epoch(model, val_loader, criterion)
sched.step()
history.append({
"seed": seed, "stage": "finetune", "epoch": ep,
"train_loss": t["loss"], "train_auc": t["auc"],
"train_acc": t["acc"], "train_composite": t["composite"],
"val_loss": v["loss"], "val_auc": v["auc"],
"val_acc": v["acc"], "val_sens": v["sens"],
"val_spec": v["spec"], "val_composite": v["composite"],
"lr": opt_ft.param_groups[0]["lr"],
})
print(
f" [ft] {ep}/{cfg.finetune_epochs} "
f"loss={t['loss']:.4f} train_acc={t['acc']*100:.1f}% | "
f"val_auc={v['auc']:.4f} val_acc={v['acc']*100:.1f}% "
f"sens={v['sens']:.3f} spec={v['spec']:.3f} comp={v['composite']:.4f} "
f"lr={opt_ft.param_groups[0]['lr']:.2e}"
)
cur = _score(v)
if cur > best_score:
best_score, best_state, patience_ctr = (
cur, copy.deepcopy(model.state_dict()), 0
)
else:
patience_ctr += 1
if patience_ctr >= cfg.early_stop_patience:
print(
f" [ft] early stop at epoch {ep} "
f"(best val {checkpoint_metric} = {best_score:.4f})"
)
break
if best_state is not None:
model.load_state_dict(best_state)
ckpt_path = os.path.join(output_dir, f"model_seed{seed}.pth")
torch.save(best_state if best_state is not None else model.state_dict(), ckpt_path)
print(
f"[seed={seed}] Best val {checkpoint_metric} = {best_score:.4f} checkpoint β {ckpt_path}"
)
return model, best_score, ckpt_path, history
# ---------------------------------------------------------------------------
# Multi-seed ensemble training
# ---------------------------------------------------------------------------
def train_ensemble(
train_loader: DataLoader,
val_loader: DataLoader,
seeds: Optional[List[int]] = None,
output_dir: Optional[str] = None,
config=None,
) -> Tuple[List[Tuple[int, nn.Module, float, str]], pd.DataFrame]:
"""Train one model per seed and return (models_list, full_history_df).
`models_list` items: (seed, trained_model, best_val_score, checkpoint_path).
``best_val_score`` is the best validation ``cfg.checkpoint_metric`` value
from stage 2 (default: composite).
"""
cfg = config or CFG
seeds = seeds if seeds is not None else cfg.seeds
output_dir = output_dir or cfg.output_dir
print(f" ENSEMBLE TRAINING STARTED")
models, all_history = [], []
for seed in seeds:
m, best_score, ckpt, hist = train_one_seed(
seed, train_loader, val_loader,
output_dir=output_dir, config=cfg,
)
models.append((seed, m, best_score, ckpt))
all_history.extend(hist)
free_device_cache(cfg.device)
history_df = pd.DataFrame(all_history)
history_df.to_csv(os.path.join(output_dir, "training_history.csv"), index=False)
frozen_blocks = getattr(cfg, "frozen_blocks", 0)
stage2_label = "all blocks unfrozen" if frozen_blocks == 0 else f"{frozen_blocks} block(s) frozen"
_mk = getattr(cfg, "checkpoint_metric", "composite")
if _mk not in ("auc", "composite", "sensitivity"):
_mk = "composite"
print("\n" + "β" * 80)
print(f" ENSEMBLE COMPLETE")
print(f" Backbone : {cfg.backbone}")
print(f" Frozen blocks : {frozen_blocks} ({stage2_label} in Stage 2)")
print(f" Seeds trained : {len(models)}")
print(f" Per-seed best val {_mk}:")
for seed, _, score, _ in models:
print(f" seed {seed:>5} : {score:.4f}")
best_seed = max(models, key=lambda x: x[2])
print(f" Best seed : {best_seed[0]} ({_mk}={best_seed[2]:.4f})")
print("β" * 80)
return models, history_df
# ---------------------------------------------------------------------------
# Unified entry point (respects CFG.use_ensemble)
# ---------------------------------------------------------------------------
def train(
train_loader: DataLoader,
val_loader: DataLoader,
output_dir: Optional[str] = None,
config=None,
) -> Tuple[List[Tuple[int, nn.Module, float, str]], pd.DataFrame]:
"""Train and return (models_list, history_df) β same format as train_ensemble.
Behaviour is controlled by CFG.use_ensemble:
True β delegates to train_ensemble (one model per seed in CFG.seeds)
False β trains a single model with CFG.seed and wraps result in the
same list format so the rest of the pipeline works unchanged.
"""
cfg = config or CFG
if cfg.use_ensemble:
return train_ensemble(train_loader, val_loader, output_dir=output_dir, config=cfg)
m, best_score, ckpt, hist = train_one_seed(
cfg.seed, train_loader, val_loader, output_dir=output_dir, config=cfg,
)
history_df = pd.DataFrame(hist)
history_df.to_csv(
os.path.join(output_dir or cfg.output_dir, "training_history.csv"), index=False,
)
return [(cfg.seed, m, best_score, ckpt)], history_df
# ---------------------------------------------------------------------------
# TTA inference
# ---------------------------------------------------------------------------
def tta_predict(
model: nn.Module,
df: pd.DataFrame,
image_dir: Optional[str] = None,
has_labels: bool = True,
tta_transforms: Optional[List] = None,
config=None,
) -> dict:
"""Run TTA inference for ONE model on a DataFrame.
Predictions are averaged in **logit space** across all TTA passes.
"""
cfg = config or CFG
tta_transforms = tta_transforms or make_tta_transforms(cfg.img_size)
tta_transforms = tta_transforms[:cfg.tta_passes]
all_logits: list[np.ndarray] = []
names_ref, labels_ref = None, None
pin = (cfg.device == "cuda")
amp_ctx = torch.cuda.amp.autocast(enabled=(cfg.device == "cuda"))
for tf in tta_transforms:
ds = TTADataset(df, tf, image_dir)
loader = DataLoader(
ds, batch_size=cfg.batch_size, num_workers=cfg.num_workers,
pin_memory=pin, shuffle=False,
)
pass_logits, pass_names, pass_labels = [], [], []
model.eval()
with torch.no_grad(), amp_ctx:
for x, y, names in loader:
x = x.to(cfg.device, non_blocking=pin)
logit = cardio_logit(model, x).float().cpu().numpy()
pass_logits.append(logit)
pass_names.extend(list(names))
if has_labels:
pass_labels.append(y.numpy())
all_logits.append(np.concatenate(pass_logits))
if names_ref is None:
names_ref = pass_names
labels_ref = np.concatenate(pass_labels) if has_labels else None
mean_logit = np.stack(all_logits, axis=0).mean(axis=0)
mean_prob = (1.0 / (1.0 + np.exp(-mean_logit))).astype(np.float32)
return {
"names": names_ref,
"y_prob": mean_prob,
"y_true": labels_ref,
"mean_logit": mean_logit,
}
def tta_predict_ensemble(
models_list: List[Tuple[int, nn.Module, float, str]],
df: pd.DataFrame,
image_dir: Optional[str] = None,
has_labels: bool = True,
tta_transforms: Optional[List] = None,
config=None,
) -> dict:
"""Run TTA for every model in `models_list` and average in logit space."""
cfg = config or CFG
all_logits: list[np.ndarray] = []
names_ref, labels_ref = None, None
for (seed, model, _, _) in models_list:
print(f" TTA with seed={seed}...")
pred = tta_predict(
model, df, image_dir=image_dir, has_labels=has_labels,
tta_transforms=tta_transforms, config=cfg,
)
all_logits.append(pred["mean_logit"])
if names_ref is None:
names_ref = pred["names"]
labels_ref = pred["y_true"]
mean_logit = np.stack(all_logits, axis=0).mean(axis=0)
mean_prob = (1.0 / (1.0 + np.exp(-mean_logit))).astype(np.float32)
return {"names": names_ref, "y_prob": mean_prob, "y_true": labels_ref}
# ---------------------------------------------------------------------------
# Submission inference
# ---------------------------------------------------------------------------
def predict_submission(
models_list: List[Tuple[int, nn.Module, float, str]],
submission_dir: str,
tta_transforms: Optional[List] = None,
config=None,
) -> dict:
"""TTA + ensemble inference on an unlabelled submission directory.
Wraps the directory in a DataFrame so we can reuse `tta_predict_ensemble`.
"""
cfg = config or CFG
files = sorted(
f for f in os.listdir(submission_dir)
if os.path.isfile(os.path.join(submission_dir, f))
and f.lower().endswith((".png", ".jpg", ".jpeg"))
)
sub_df = pd.DataFrame({"filename": files})
return tta_predict_ensemble(
models_list, sub_df,
image_dir=submission_dir, has_labels=False,
tta_transforms=tta_transforms, config=cfg,
)
# ---------------------------------------------------------------------------
# Metrics
# ---------------------------------------------------------------------------
def metrics_at_threshold(y_true, y_prob, threshold: float) -> dict:
"""Composite-grading-aware metric set at a given threshold.
composite = 0.5Β·AUC + 0.25Β·sensitivity + 0.25Β·specificity
"""
y_pred = (y_prob >= threshold).astype(int)
tn, fp, fn, tp = confusion_matrix(y_true, y_pred, labels=[0, 1]).ravel()
sens = tp / (tp + fn) if (tp + fn) > 0 else 0.0
spec = tn / (tn + fp) if (tn + fp) > 0 else 0.0
acc = (tp + tn) / (tp + tn + fp + fn)
auc = roc_auc_score(y_true, y_prob) if len(np.unique(y_true)) > 1 else float("nan")
composite = 0.5 * auc + 0.25 * sens + 0.25 * spec
precision = tp / (tp + fp) if (tp + fp) > 0 else 0.0
return {
"threshold": float(threshold),
"auc": float(auc),
"sensitivity": float(sens),
"specificity": float(spec),
"accuracy": float(acc),
"youden": float(sens + spec - 1.0),
"composite": float(composite),
"precision": float(precision),
"tp": int(tp), "tn": int(tn), "fp": int(fp), "fn": int(fn),
}
# Backwards-compatible alias (used by older notebook cells)
compute_basic_metrics = metrics_at_threshold
def find_best_threshold(y_true, y_prob) -> Tuple[float, dict]:
"""Pick the threshold that maximises sensitivity + specificity (Youden's J)."""
candidates = np.unique(np.round(np.concatenate([[0.0], y_prob, [1.0]]), 6))
best_score, best_row = -np.inf, None
for thr in candidates:
m = metrics_at_threshold(y_true, y_prob, thr)
score = m["sensitivity"] + m["specificity"]
if score > best_score:
best_score, best_row = score, m
return float(best_row["threshold"]), best_row
def bootstrap_threshold(
y_true, y_prob,
n_boot: Optional[int] = None,
seed: Optional[int] = None,
) -> float:
"""Bootstrap-stabilised threshold (median across resamples).
Generalises better than a single-shot pick on the raw val set.
"""
n_boot = n_boot if n_boot is not None else CFG.n_bootstrap
seed = seed if seed is not None else CFG.seed
rng = np.random.RandomState(seed)
thrs: list[float] = []
n = len(y_true)
for _ in range(n_boot):
idx = rng.randint(0, n, size=n)
if len(np.unique(y_true[idx])) < 2:
continue
thr, _ = find_best_threshold(y_true[idx], y_prob[idx])
thrs.append(thr)
return float(np.median(thrs)) if thrs else 0.5
def select_threshold(y_true, y_prob, config=None) -> Tuple[float, dict, dict]:
"""Pick the better of (single-shot) vs (bootstrap) thresholds on composite.
Bootstrap is preferred unless its composite is clearly worse (margin 0.005).
Returns (chosen_threshold, single_metrics, bootstrap_metrics).
"""
cfg = config or CFG
thr_single, _ = find_best_threshold(y_true, y_prob)
thr_boot = bootstrap_threshold(y_true, y_prob, n_boot=cfg.n_bootstrap, seed=cfg.seed)
m_single = metrics_at_threshold(y_true, y_prob, thr_single)
m_boot = metrics_at_threshold(y_true, y_prob, thr_boot)
chosen = thr_boot if m_boot["composite"] >= m_single["composite"] - 0.005 else thr_single
return float(chosen), m_single, m_boot
# ---------------------------------------------------------------------------
# Saving results
# ---------------------------------------------------------------------------
def save_results(
models_list: List[Tuple[int, nn.Module, float, str]],
history: pd.DataFrame,
val_out: dict,
test_out: dict,
best_threshold: float,
output_dir: str,
model_name: str = "model",
config=None,
) -> None:
"""Persist per-seed checkpoints, history, metrics, predictions, and global log.
Per-seed `.pth` files are already written by `train_one_seed`; here we
only re-save them under the conventional name and write the metrics +
per-image prediction CSVs.
"""
cfg = config or CFG
os.makedirs(output_dir, exist_ok=True)
# ββ Metric files + per-image predictions βββββββββββββββββββββββββββββ
val_metrics = metrics_at_threshold(val_out["y_true"], val_out["y_prob"], best_threshold)
test_metrics = metrics_at_threshold(test_out["y_true"], test_out["y_prob"], best_threshold)
for split_name, metrics in [("val", val_metrics), ("test", test_metrics)]:
with open(os.path.join(output_dir, f"{split_name}_metrics_final.json"), "w") as f:
json.dump(metrics, f, indent=2)
history.to_csv(os.path.join(output_dir, "training_history.csv"), index=False)
for split_name, out in [("val", val_out), ("test", test_out)]:
y_true = out["y_true"].astype(int)
y_pred = (out["y_prob"] >= best_threshold).astype(int)
pd.DataFrame({
"filename": out["names"],
"y_true": y_true,
"prob": out["y_prob"],
"pred": y_pred,
"correct": (y_pred == y_true).astype(int),
}).to_csv(os.path.join(output_dir, f"{split_name}_predictions.csv"), index=False)
# ββ Ensemble manifest (which seeds + which checkpoints) ββββββββββββββ
_mk = getattr(cfg, "checkpoint_metric", "composite")
if _mk not in ("auc", "composite", "sensitivity"):
_mk = "composite"
pd.DataFrame([
{
"seed": s,
"checkpoint_metric": _mk,
"best_val_score": score,
"checkpoint": ckpt,
}
for (s, _, score, ckpt) in models_list
]).to_csv(os.path.join(output_dir, "ensemble_manifest.csv"), index=False)
print(f"Results saved β {output_dir}")
# ββ Append to global results log βββββββββββββββββββββββββββββββββββββ
log_run(
model_name=model_name,
val_metrics=val_metrics,
test_metrics=test_metrics,
config=cfg,
n_seeds=len(models_list),
log_path=cfg.results_log_path,
)
|