-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathfinetune_task_LUNA.py
More file actions
369 lines (318 loc) · 16.4 KB
/
Copy pathfinetune_task_LUNA.py
File metadata and controls
369 lines (318 loc) · 16.4 KB
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
#*----------------------------------------------------------------------------*
#* Copyright (C) 2025 ETH Zurich, Switzerland *
#* SPDX-License-Identifier: Apache-2.0 *
#* *
#* Licensed under the Apache License, Version 2.0 (the "License"); *
#* you may not use this file except in compliance with the License. *
#* You may obtain a copy of the License at *
#* *
#* http://www.apache.org/licenses/LICENSE-2.0 *
#* *
#* Unless required by applicable law or agreed to in writing, software *
#* distributed under the License is distributed on an "AS IS" BASIS, *
#* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
#* See the License for the specific language governing permissions and *
#* limitations under the License. *
#* *
#* Author: Berkay Döner *
#* Author: Thorir Mar Ingolfsson *
#*----------------------------------------------------------------------------*
import torch
import torch.nn as nn
import pytorch_lightning as pl
import hydra
import torch_optimizer as torch_optim
import torch.nn.functional as F
from torchmetrics import MetricCollection
from torchmetrics.classification import (
Accuracy, Precision, Recall, AUROC,
AveragePrecision, CohenKappa, F1Score
)
from biofoundation.core.batch import as_signal_batch
from safetensors.torch import load_file
from collections import OrderedDict
class ChannelWiseNormalize:
def __init__(self, eps=1e-8):
self.eps = eps
def __call__(self, tensor):
with torch.no_grad():
# tensor: (B, C, T)
mean = tensor.mean(dim=2, keepdim=True)
std = tensor.std(dim=2, keepdim=True)
return (tensor - mean) / (std + self.eps)
class FinetuneTask(pl.LightningModule):
"""
PyTorch Lightning module for fine-tuning a classification model, with support for:
- Classification types:
- `bc`: Binary Classification
- `ml`: Multi-Label Classification
- 'mc': Multi-Label Classification for TUAR
- `mcc`: Multi-Class Classification
- `mmc`: Multi-Class Multi-Output Classification
- Metric logging during training, validation, and testing, including accuracy, precision, recall, F1 score, AUROC, and more
- Optional input normalization with configurable normalization functions
- Custom optimizer support including SGD, Adam, AdamW, and LAMB
- Learning rate schedulers with configurable scheduling strategies
- Layer-wise learning rate decay for fine-grained learning rate control across model blocks
"""
def __init__(self, hparams):
"""
Initialize the FinetuneTask module.
Args:
hparams (DictConfig): Hyperparameters and configuration loaded via Hydra.
"""
super().__init__()
self.save_hyperparameters(hparams)
self.model = hydra.utils.instantiate(self.hparams.model)
self.num_classes = self.hparams.model.num_classes
self.classification_type = self.hparams.classification_type
# Input normalization
if self.hparams.input_normalization is not None and self.hparams.input_normalization.normalize:
self.normalize = True
self.normalize_fct = ChannelWiseNormalize()
# Loss function
if self.classification_type == "mc":
self.criterion = nn.BCEWithLogitsLoss()
else:
self.criterion = nn.CrossEntropyLoss()
# Classification mode detection
if not isinstance(self.num_classes, int):
raise TypeError("Number of classes must be an integer.")
elif self.num_classes < 2:
raise ValueError("Number of classes must be at least 2.")
elif self.num_classes == 2:
self.classification_task = "binary"
else:
self.classification_task = "multiclass"
# Metrics
label_metrics = MetricCollection([
Accuracy(task=self.classification_task, num_classes=self.num_classes, average="macro"),
Recall(task='multiclass', num_classes=self.num_classes, average="macro"),
Precision(task=self.classification_task, num_classes=self.num_classes, average="macro"),
F1Score(task=self.classification_task, num_classes=self.num_classes, average="macro"),
CohenKappa(task=self.classification_task, num_classes=self.num_classes)
])
logit_metrics = MetricCollection([
AUROC(task=self.classification_task, num_classes=self.num_classes, average="macro"),
AveragePrecision(task=self.classification_task, num_classes=self.num_classes, average="macro"),
])
self.train_label_metrics = label_metrics.clone(prefix='train_')
self.val_label_metrics = label_metrics.clone(prefix='val_')
self.test_label_metrics = label_metrics.clone(prefix='test_')
self.train_logit_metrics = logit_metrics.clone(prefix='train_')
self.val_logit_metrics = logit_metrics.clone(prefix='val_')
self.test_logit_metrics = logit_metrics.clone(prefix='test_')
def load_pretrained_checkpoint(self, model_ckpt):
"""
Load a pretrained model checkpoint and unfreeze specific layers for fine-tuning.
"""
assert self.model.classifier is not None
print("Loading pretrained checkpoint")
ckpt = torch.load(model_ckpt)
state_dict = ckpt['state_dict']
# Remove decoder head and channel embedding weights since they are not needed for fine-tuning
state_dict = {k: v for k, v in state_dict.items() if 'decoder_head' not in k and "channel_emb" not in k}
new_state_dict = OrderedDict()
for k, v in state_dict.items():
new_key = k.replace("model.", "")
new_state_dict[new_key] = v
ckpt['state_dict'] = new_state_dict
missing_keys, unexpected_keys = self.model.load_state_dict(ckpt['state_dict'], strict=False)
print("Missing keys when loading pretrained checkpoint:", missing_keys)
print("Unexpected keys when loading pretrained checkpoint:", unexpected_keys)
for name, param in self.model.named_parameters():
if self.hparams.finetuning.freeze_layers:
param.requires_grad = False
if 'classifier' in name:
param.requires_grad = True
print("Pretrained model ready.")
def load_safetensors_checkpoint(self, model_ckpt):
"""
Load a pretrained model checkpoint in safetensors format and unfreeze specific layers for fine-tuning.
"""
assert self.model.classifier is not None
print("Loading pretrained safetensors checkpoint")
state_dict = load_file(model_ckpt)
# add model. prefix if needed
new_state_dict = OrderedDict()
for k, v in state_dict.items():
if not k.startswith("model."):
new_key = "model." + k
else:
new_key = k
new_state_dict[new_key] = v
state_dict = {k: v for k, v in new_state_dict.items() if 'decoder_head' not in k and "channel_emb" not in k}
missing_keys, unexpected_keys = self.load_state_dict(state_dict, strict=False)
print("Missing keys when loading pretrained safetensors:", missing_keys)
print("Unexpected keys when loading pretrained safetensors:", unexpected_keys)
for name, param in self.model.named_parameters():
if self.hparams.finetuning.freeze_layers:
param.requires_grad = False
if 'classifier' in name:
param.requires_grad = True
print("Pretrained model ready.")
def generate_fake_mask(self, batch_size, C, T):
"""
Create a dummy mask tensor to simulate attention masking.
Args:
batch_size (int): Number of samples.
C (int): Number of channels.
T (int): Temporal dimension.
Returns:
torch.Tensor: Boolean mask tensor of shape (B, C, T).
"""
return torch.zeros(batch_size, C, T, dtype=torch.bool).to(self.device)
def _step(self, X, mask, channel_locations):
"""
Perform forward pass and post-process predictions.
Args:
X (torch.Tensor): Input tensor.
mask (torch.Tensor): Attention mask tensor.
Returns:
dict: Dictionary containing predicted labels, probabilities, and logits.
"""
y_pred_logits, _ = self.model(X, mask, channel_locations)
if self.classification_type in ("bc", "mcc", "ml"):
y_pred_probs = torch.softmax(y_pred_logits, dim=1)
y_pred_label = torch.argmax(y_pred_probs, dim=1)
elif self.classification_type == "mc":
y_pred_probs = torch.sigmoid(y_pred_logits)
y_pred_label = torch.round(y_pred_probs)
elif self.classification_type == "mmc":
y_pred_logits = y_pred_logits.view(-1, 6)
y_pred_probs = torch.sigmoid(y_pred_logits)
y_pred_label = torch.argmax(y_pred_probs, dim=-1)
return {
'label': y_pred_label,
'probs': y_pred_probs,
'logits': y_pred_logits,
}
def training_step(self, batch, batch_idx):
batch = as_signal_batch(batch)
X, y = batch["input"], batch["label"]
channel_locations = batch["channel_locations"]
if self.normalize:
X = self.normalize_fct(X)
mask = self.generate_fake_mask(X.shape[0], X.shape[1], X.shape[2])
y_pred = self._step(X, mask, channel_locations)
if self.classification_type == "mmc":
y = y.view(-1)
loss = self.criterion(y_pred['logits'], y)
elif self.classification_type == "mc":
loss = self.criterion(y_pred['logits'], y.float())
else:
loss = self.criterion(y_pred['logits'], y)
self.train_label_metrics(y_pred['label'], y)
self.train_logit_metrics(self._handle_binary(y_pred['logits']), y)
self.log_dict(self.train_label_metrics, on_step=True, on_epoch=False)
self.log_dict(self.train_logit_metrics, on_step=True, on_epoch=False)
self.log('train_loss', loss, on_step=True, on_epoch=True, prog_bar=True, logger=True, sync_dist=True)
return loss
def validation_step(self, batch, batch_idx):
batch = as_signal_batch(batch)
X, y = batch["input"], batch["label"]
channel_locations = batch["channel_locations"]
if self.normalize:
X = self.normalize_fct(X)
mask = self.generate_fake_mask(X.shape[0], X.shape[1], X.shape[2])
y_pred = self._step(X, mask, channel_locations)
if self.classification_type == "mmc":
y = y.view(-1)
loss = self.criterion(y_pred['logits'], y)
elif self.classification_type == "mc":
loss = self.criterion(y_pred['logits'], y.float())
else:
loss = self.criterion(y_pred['logits'], y)
self.val_label_metrics(y_pred['label'], y)
self.val_logit_metrics(self._handle_binary(y_pred['logits']), y)
self.log_dict(self.val_label_metrics, on_step=False, on_epoch=True)
self.log_dict(self.val_logit_metrics, on_step=False, on_epoch=True)
self.log('val_loss', loss, prog_bar=True, logger=True, sync_dist=True)
return loss
def test_step(self, batch, batch_idx):
batch = as_signal_batch(batch)
X, y = batch["input"], batch["label"]
channel_locations = batch["channel_locations"]
if self.normalize:
X = self.normalize_fct(X)
mask = self.generate_fake_mask(X.shape[0], X.shape[1], X.shape[2])
y_pred = self._step(X, mask, channel_locations)
if self.classification_type == "mmc":
y = y.view(-1)
loss = self.criterion(y_pred['logits'], y)
elif self.classification_type == "mc":
loss = self.criterion(y_pred['logits'], y.float())
else:
loss = self.criterion(y_pred['logits'], y)
self.test_label_metrics(y_pred['label'], y)
self.test_logit_metrics(self._handle_binary(y_pred['logits']), y)
self.log_dict(self.test_label_metrics, on_step=False, on_epoch=True)
self.log_dict(self.test_logit_metrics, on_step=False, on_epoch=True)
self.log('test_loss', loss, prog_bar=True, logger=True, sync_dist=True)
return loss
def on_train_epoch_end(self):
self.log_dict(self.train_label_metrics, prog_bar=True, logger=True, sync_dist=True, on_step=False, on_epoch=True)
self.log_dict(self.train_logit_metrics, prog_bar=True, logger=True, sync_dist=True, on_step=False, on_epoch=True)
def on_validation_epoch_end(self):
self.log_dict(self.val_label_metrics, prog_bar=True, logger=True, sync_dist=True, on_step=False, on_epoch=True)
self.log_dict(self.val_logit_metrics, prog_bar=True, logger=True, sync_dist=True, on_step=False, on_epoch=True)
def on_test_epoch_end(self):
self.log_dict(self.test_label_metrics, prog_bar=True, logger=True, sync_dist=True, on_step=False, on_epoch=True)
self.log_dict(self.test_logit_metrics, prog_bar=True, logger=True, sync_dist=True, on_step=False, on_epoch=True)
def lr_scheduler_step(self, scheduler, metric):
"""
Custom scheduler step function for step-based LR schedulers
"""
scheduler.step_update(num_updates=self.global_step)
def configure_optimizers(self):
"""
Configure the optimizer and learning rate scheduler.
Returns:
dict: Configuration dictionary with optimizer and LR scheduler.
"""
if hasattr(self.hparams.model, 'depth'):
num_blocks = self.hparams.model.depth # LUNA version
elif hasattr(self.hparams.model, 'num_blocks'):
num_blocks = self.hparams.model.num_blocks # LuMamba version
params_to_pass = []
base_lr = self.hparams.optimizer.lr
decay_factor = self.hparams.layerwise_lr_decay
for name, param in self.model.named_parameters():
lr = base_lr
if 'blocks.' in name or 'norm_layers' in name:
block_nr = int(name.split('.')[1])
lr *= decay_factor ** (num_blocks - block_nr)
params_to_pass.append({"params": param, "lr": lr})
if self.hparams.optimizer.optim == "SGD":
optimizer = torch.optim.SGD(params_to_pass, lr=base_lr, momentum=self.hparams.optimizer.momentum)
elif self.hparams.optimizer.optim == 'Adam':
optimizer = torch.optim.Adam(params_to_pass, lr=base_lr, weight_decay=self.hparams.optimizer.weight_decay)
elif self.hparams.optimizer.optim == 'AdamW':
optimizer = torch.optim.AdamW(params_to_pass, lr=base_lr, weight_decay=self.hparams.optimizer.weight_decay, betas=self.hparams.optimizer.betas)
elif self.hparams.optimizer.optim == 'LAMB':
optimizer = torch_optim.Lamb(params_to_pass, lr=base_lr)
else:
raise NotImplementedError("No valid optimizer name")
if self.hparams.scheduler_type == "multi_step_lr":
scheduler = hydra.utils.instantiate(self.hparams.scheduler, optimizer=optimizer)
else:
scheduler = hydra.utils.instantiate(self.hparams.scheduler, optimizer=optimizer,
total_training_opt_steps=self.trainer.estimated_stepping_batches)
lr_scheduler_config = {
"scheduler": scheduler,
"interval": "step",
"frequency": 1
}
return {"optimizer": optimizer, "lr_scheduler": lr_scheduler_config}
def _handle_binary(self, preds):
"""
Special handling for binary classification probabilities.
Args:
preds (torch.Tensor): Logit outputs.
Returns:
torch.Tensor: Probabilities for the positive class.
"""
if self.classification_task == 'binary' and self.classification_type != 'mc':
return preds[:, 1].squeeze()
else:
return preds