File size: 11,690 Bytes
884b8f8 | 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 | # marble/core/base_task.py
import torch
import torch.nn as nn
import torch.nn.functional as F
from abc import ABC
from lightning.pytorch import LightningModule
from torchmetrics import MetricCollection, Accuracy
from marble.modules.ema import LitEma
class BaseTask(LightningModule, ABC):
"""
Base Task class to encapsulate encoder-decoder models with:
- support for multiple embedding transforms
- multiple decoders (multiβhead)
- multiple loss functions
- splitβspecific MetricCollections
- optional EMA on encoder weights
"""
def __init__(
self,
*,
encoder: nn.Module,
emb_transforms: list[nn.Module] | None = None,
decoders: list[nn.Module] | None = None,
losses: list[nn.Module] | None = None,
metrics: dict[str, dict[str, nn.Module]] | None = None,
sample_rate: int | None = None,
use_ema: bool = False,
**kwargs,
):
super().__init__()
# save all args passed to init (for LightningCLI, checkpointing, etc.)
self.save_hyperparameters(ignore=['encoder', 'emb_transforms', 'decoders', 'losses', 'metrics'])
# core modules
self.encoder = encoder
self.emb_transforms = nn.ModuleList(emb_transforms or [])
self.decoders = nn.ModuleList(decoders or [])
self.loss_fns = nn.ModuleList(losses or [])
# optional EMA on encoder parameters
self.use_ema = use_ema
if self.use_ema:
self.ema = LitEma(self.encoder)
# build and register metrics per split
if metrics:
for split in ('train', 'val', 'test'):
split_cfg = metrics.get(split)
if split_cfg:
mc = MetricCollection(
{name: m for name, m in split_cfg.items()},
prefix=f"{split}/"
)
setattr(self, f"{split}_metrics", mc)
def forward(self, x: torch.Tensor) -> torch.Tensor | list[torch.Tensor]:
"""
Default forward: encoder β transforms β each decoder head.
Returns single Tensor if only one head, else list of Tensors.
"""
h = self.encoder(x)
for t in self.emb_transforms:
h = t(h)
outputs = [dec(h) for dec in self.decoders]
return outputs[0] if len(outputs) == 1 else outputs
def _shared_step(self, batch, batch_idx: int, split: str) -> torch.Tensor:
"""
Common logic for train/val:
- unpack batch
- forward
- sum all loss_fns
- log loss and metrics
"""
x, y, uids_or_paths = batch
logits = self(x)
# compute and log loss
losses = [fn(logits, y) for fn in self.loss_fns]
loss = sum(losses)
self.log(f"{split}/loss", loss, prog_bar=True, on_step=False, on_epoch=True, sync_dist=True)
# compute and log metrics
mc: MetricCollection = getattr(self, f"{split}_metrics", None)
if mc is not None:
metrics_out = mc(logits, y)
self.log_dict(metrics_out, prog_bar=(split == "val"), on_step=False, on_epoch=True, sync_dist=True)
return loss
def training_step(self, batch, batch_idx: int) -> torch.Tensor:
loss = self._shared_step(batch, batch_idx, "train")
return loss
def validation_step(self, batch, batch_idx: int):
self._shared_step(batch, batch_idx, "val")
def on_train_batch_end(self, outputs, batch, batch_idx, unused=0) -> None:
if self.use_ema:
self.ema.update()
def test_step(self, batch, batch_idx: int):
"""
Default test: returns raw logits and labels for aggregation.
Override in subclass for custom behavior.
"""
x, y = batch[:2]
logits = self(x)
return {"logits": logits, "labels": y}
def configure_optimizers(self):
# delegate to LightningCLI / super if using CLI
return super().configure_optimizers()
class BaseFewShotTask(LightningModule, ABC):
"""
Few-shot multiclass classification via nearest-centroid.
Workflow in each epoch
ββββββββββββββββββββββ
1. `training_step` collects embeddings & labels for all train batches.
2. `on_validation_epoch_start` computes one centroid per class.
3. Validation/test steps assign each example to the nearest centroid.
"""
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# helpers
@staticmethod
def _to_label_indices(y: torch.Tensor) -> torch.Tensor:
"""
Convert `y` to shape (N,) of dtype long.
Accepts:
β’ (N,) already indices
β’ (N, 1) unsqueezed indices
β’ (N, C, β¦) one-hot (argmax over dim=1)
"""
if y.ndim == 2 and y.size(1) == 1: # (N,1)
y = y.squeeze(1)
elif y.ndim >= 2: # (N,C,β¦)
y = y.argmax(dim=1)
return y.long().view(-1)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# init / forward
def __init__(
self,
sample_rate: int,
num_classes: int,
encoder,
emb_transforms,
):
super().__init__()
self.save_hyperparameters(ignore=["encoder", "emb_transforms"])
# build the encoder + any post-embedding transforms
self.encoder = encoder
self.emb_transforms = nn.ModuleList(emb_transforms or [])
self.sample_rate = sample_rate
self.num_classes = num_classes
# metrics
self.val_accuracy = Accuracy(num_classes=num_classes, task="multiclass")
self.test_accuracy = Accuracy(num_classes=num_classes, task="multiclass")
# accumulators for one epoch of training
self._train_embeddings: list[torch.Tensor] = []
self._train_labels: list[torch.Tensor] = []
# centroids buffer (will be filled each epoch)
self.register_buffer("class_centroids", torch.empty(0))
# no optimisation steps needed (nearest-centroid is non-parametric)
self.automatic_optimization = False
def forward(self, x: torch.Tensor) -> torch.Tensor:
h = self.encoder(x)
for tf in self.emb_transforms:
h = tf(h)
h = h.view(h.size(0), -1) # flatten if needed
return h
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# training: collect embeddings & labels
def training_step(self, batch, batch_idx):
x, y = batch[:2]
y = self._to_label_indices(y)
emb = self(x)
self._train_embeddings.append(emb.detach())
self._train_labels.append(y.detach())
return None # no optimiser step
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# compute centroids right before validation starts
def on_validation_epoch_start(self) -> None:
# skip if nothing collected (can happen *before* first training batch)
if not self._train_embeddings:
return
embs = torch.cat(self._train_embeddings, dim=0) # (N, D)
labels = torch.cat(self._train_labels, dim=0) # (N,)
classes = torch.unique(labels).sort()[0]
centroids = torch.stack(
[embs[labels == c].mean(dim=0) for c in classes], dim=0
) # (C, D)
self.class_centroids = centroids.to(self.device)
# clear for the next epoch
self._train_embeddings.clear()
self._train_labels.clear()
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# nearest-centroid classification
@staticmethod
def _nearest(emb: torch.Tensor, centroids: torch.Tensor) -> torch.Tensor:
"""
Return index of closest centroid for each embedding.
emb : (B, D)
centroids : (C, D)
β (B,)
"""
dists = torch.norm(
emb.unsqueeze(1) - centroids.unsqueeze(0), dim=2
) # (B, C)
return dists.argmin(dim=1)
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# validation / test
def validation_step(self, batch, batch_idx):
if self.class_centroids.numel() == 0:
raise RuntimeError(
"Centroids empty β ensure `on_validation_epoch_start` has run."
)
x, y = batch[:2]
y = self._to_label_indices(y) # Ensure y is of shape (B,) - class indices
embs = self(x) # Get embeddings from the model
preds = self._nearest(embs, self.class_centroids)
# Log accuracy using one-hot encoded preds and class index y
self.log(
"val/acc",
self.val_accuracy(preds.float(), y), # Use class index labels, not one-hot y
prog_bar=True,
on_epoch=True,
sync_dist=True,
)
def test_step(self, batch, batch_idx):
if self.class_centroids.numel() == 0:
# Compute centroids using the training data loader (mimic valid's approach)
train_loader = self.trainer.datamodule.train_dataloader() # Assuming you have a DataModule
self._train_embeddings.clear()
self._train_labels.clear()
# Collect embeddings and labels from the training data
for batch in train_loader:
x, y = batch[:2]
y = self._to_label_indices(y)
emb = self(x)
self._train_embeddings.append(emb.detach())
self._train_labels.append(y.detach())
embs = torch.cat(self._train_embeddings, dim=0) # (N, D)
labels = torch.cat(self._train_labels, dim=0) # (N,)
classes = torch.unique(labels).sort()[0]
centroids = torch.stack(
[embs[labels == c].mean(dim=0) for c in classes], dim=0
) # (C, D)
self.class_centroids = centroids.to(self.device)
self._train_embeddings.clear()
self._train_labels.clear()
x, y = batch[:2]
y = self._to_label_indices(y)
preds = self._nearest(self(x), self.class_centroids)
# Ensure the metric is on the correct device (same as the model output)
self.test_accuracy = self.test_accuracy.to(self.device)
# Log accuracy using class indices for both preds and y, ensuring both are on the same device
self.log(
"test/acc",
self.test_accuracy(preds.to(self.device), y.to(self.device)), # Move both to the same device
prog_bar=True,
on_epoch=True,
sync_dist=True,
)
def configure_optimizers(self):
# No optimizers needed for nearest-centroid, but required by Lightning
return []
|