File size: 17,360 Bytes
29899b4 121a325 29899b4 9da03b7 29899b4 9da03b7 29899b4 9da03b7 29899b4 9da03b7 29899b4 9da03b7 41553a7 29899b4 41553a7 9da03b7 29899b4 41553a7 9da03b7 29899b4 9da03b7 29899b4 41553a7 9da03b7 41553a7 9da03b7 41553a7 9da03b7 41553a7 9da03b7 41553a7 29899b4 9da03b7 41553a7 9da03b7 41553a7 9da03b7 29899b4 9da03b7 41553a7 29899b4 41553a7 29899b4 9da03b7 29899b4 9da03b7 29899b4 41553a7 9da03b7 41553a7 9da03b7 29899b4 41553a7 9da03b7 41553a7 9da03b7 41553a7 9da03b7 29899b4 41553a7 9da03b7 29899b4 41553a7 9da03b7 41553a7 9da03b7 41553a7 29899b4 4c4b1fc 29899b4 7b33404 29899b4 9da03b7 29899b4 9da03b7 29899b4 9da03b7 29899b4 4c4b1fc 29899b4 1d43edf 29899b4 41553a7 29899b4 9da03b7 29899b4 9da03b7 29899b4 41553a7 29899b4 41553a7 29899b4 41553a7 29899b4 121a325 29899b4 121a325 29899b4 41553a7 29899b4 7b33404 29899b4 1d43edf 121a325 4c4b1fc 121a325 4c4b1fc 1d43edf 29899b4 41553a7 29899b4 7b33404 29899b4 121a325 29899b4 41553a7 29899b4 7b33404 29899b4 121a325 7b33404 29899b4 7b33404 4c4b1fc 29899b4 | 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 | """
Lightning Module for the binding model.
"""
import torch
from torch import nn
from lightning import LightningModule
from dpacman.utils.models import set_seed
from .loss import calculate_loss, auprc_zeros_vs_ones_from_logits, auroc_zeros_vs_ones_from_logits
set_seed()
class LocalCNN(nn.Module):
def __init__(self, dim: int = 256, kernel_size: int = 3, dropout=0.1):
super().__init__()
padding = kernel_size // 2
self.conv = nn.Conv1d(dim, dim, kernel_size=kernel_size, padding=padding)
self.act = nn.GELU()
self.ln = nn.LayerNorm(dim)
self.dropout = nn.Dropout(dropout)
def forward(self, x: torch.Tensor):
# x: (batch, L, dim)
out = self.conv(x.transpose(1, 2)) # → (batch, dim, L)
out = self.act(out)
out = self.dropout(out) # dropout before the layer norm
out = out.transpose(1, 2) # → (batch, L, dim)
return self.ln(out + x) # residual
class CrossModalBlock(nn.Module):
def __init__(self, dim: int = 256, heads: int = 8, dropout: float = 0.1):
super().__init__()
# self-attention for both sides
self.sa_binder = nn.MultiheadAttention(dim, heads, batch_first=True, dropout=dropout)
self.sa_glm = nn.MultiheadAttention(dim, heads, batch_first=True, dropout=dropout)
self.do_sa_b = nn.Dropout(dropout)
self.do_sa_g = nn.Dropout(dropout)
# first layer norms
self.ln_b1 = nn.LayerNorm(dim)
self.ln_g1 = nn.LayerNorm(dim)
# first feed forward networks
self.ffn_b1 = nn.Sequential(
nn.Linear(dim, dim * 4), nn.GELU(), nn.Dropout(dropout), nn.Linear(dim * 4, dim)
)
self.ffn_g1 = nn.Sequential(
nn.Linear(dim, dim * 4), nn.GELU(), nn.Dropout(dropout), nn.Linear(dim * 4, dim)
)
self.do_ffn_b1 = nn.Dropout(dropout)
self.do_ffn_g1 = nn.Dropout(dropout)
self.ln_b2 = nn.LayerNorm(dim)
self.ln_g2 = nn.LayerNorm(dim)
# 2) reciprocal cross-attn: g<-b and b<-g
# DNA/GLM updated by attending to Binder
self.cross_g2b_1_RCA = nn.MultiheadAttention(dim, heads, batch_first=True, dropout=dropout)
self.do_rca_g = nn.Dropout(dropout)
self.ln_g3_RCA = nn.LayerNorm(dim)
self.ffn_g2_RCA = nn.Sequential(nn.Linear(dim, dim*4), nn.GELU(), nn.Dropout(dropout), nn.Linear(dim*4, dim))
self.do_ffn_g2 = nn.Dropout(dropout)
self.ln_g4_RCA = nn.LayerNorm(dim)
# Binder updated by attending to DNA/GLM
self.cross_b2g_1_RCA = nn.MultiheadAttention(dim, heads, batch_first=True, dropout=dropout)
self.do_rca_b = nn.Dropout(dropout)
self.ln_b3_RCA = nn.LayerNorm(dim)
self.ffn_b2_RCA = nn.Sequential(nn.Linear(dim, dim*4), nn.GELU(), nn.Dropout(dropout), nn.Linear(dim*4, dim))
self.do_ffn_b2 = nn.Dropout(dropout)
self.ln_b4_RCA = nn.LayerNorm(dim)
# cross attention (binder queries, glm keys/values)
# so the NDA path is updated by the transcription factors
self.cross_g2b_2 = nn.MultiheadAttention(dim, heads, batch_first=True)
self.do_g2b2 = nn.Dropout(dropout)
self.ln_g5 = nn.LayerNorm(dim)
self.ffn_g3 = nn.Sequential(
nn.Linear(dim, dim * 4), nn.GELU(), nn.Dropout(dropout), nn.Linear(dim * 4, dim)
)
self.do_ffn_g3 = nn.Dropout(dropout)
self.ln_g6 = nn.LayerNorm(dim)
def forward(self, binder: torch.Tensor, glm: torch.Tensor, binder_kpm_mask=None, glm_kpm_mask=None):
"""
binder: (batch, Lb, dim)
glm: (batch, Lg, dim) -- has passed through its local CNN beforehand
returns: updated binder representation (batch, Lb, dim) and gLM representation
"""
# 1) Self-attention and feed-forward networks for binder and DNA
# binder: self-attn + ffn
b = binder
b_sa, _ = self.sa_binder(b, b, b, key_padding_mask=binder_kpm_mask)
b = self.ln_b1(b + self.do_sa_b(b_sa))
b_ff = self.ffn_b1(b)
b = self.ln_b2(b + self.do_ffn_b1(b_ff))
# glm: self-attn + ffn
g = glm
g_sa, _ = self.sa_glm(g, g, g, key_padding_mask=glm_kpm_mask)
g = self.ln_g1(g + self.do_sa_g(g_sa))
g_ff = self.ffn_g1(g)
g = self.ln_g2(g + self.do_ffn_g1(g_ff))
# 2a) Reciprocal Cross-Attention:
# DNA updated by attending to Binder (Q=g, K=b, V=b)
# Binder updated by attending to DNA (Q=b, K=g, V=g)
g_ca, _ = self.cross_g2b_1_RCA(
g, b, b, key_padding_mask=binder_kpm_mask
# torch MultiheadAttention expects key_padding_mask=True for PADs;
# invert if your mask is True=keep:
# key_padding_mask=(~binder_mask.bool()) if binder_mask is not None else None
)
g = self.ln_g3_RCA(g + self.do_rca_g(g_ca))
g = self.ln_g4_RCA(g + self.do_ffn_g2(self.ffn_g2_RCA(g)))
# 2b) Binder updated by attending to DNA/GLM (Q=b, K=g, V=g)
b_ca, _ = self.cross_b2g_1_RCA(
b, g, g, key_padding_mask=glm_kpm_mask
# key_padding_mask=(~glm_mask.bool()) if glm_mask is not None else None
)
b = self.ln_b3_RCA(b + self.do_rca_b(b_ca))
b = self.ln_b4_RCA(b + self.do_ffn_b2(self.ffn_b2_RCA(b)))
# cross-attention: glm queries binder and glm embeddings are updated
g_to_b_ca, _ = self.cross_g2b_2(g, b, b, key_padding_mask=binder_kpm_mask)
g = self.ln_g5(g + self.do_g2b2(g_to_b_ca))
g_ff = self.ffn_g3(g)
g = self.ln_g6(g + self.do_ffn_g3(g_ff))
return b, g # (batch, Lb, dim)
class DimCompressor(nn.Module):
"""
Learnable per-token compressor: maps any in_dim >= out_dim to out_dim (default 256).
If in_dim == out_dim, behaves as identity.
"""
def __init__(self, in_dim: int, out_dim: int = 256):
super().__init__()
if in_dim == out_dim:
self.net = nn.Identity()
else:
hidden = max(out_dim * 2, (in_dim + out_dim) // 2)
self.net = nn.Sequential(
nn.LayerNorm(in_dim),
nn.Linear(in_dim, hidden),
nn.GELU(),
nn.Linear(hidden, out_dim),
)
def forward(self, x: torch.Tensor) -> torch.Tensor:
# x: (B, L, in_dim)
return self.net(x)
class BindPredictor(LightningModule):
def __init__(
self,
# input_dim: int = 256, # OLD: single input dim
binder_input_dim: int = 1280, # NEW: TF (binder) original dim (e.g., 1280)
glm_input_dim: int = 256, # NEW: DNA/GLM original dim (e.g., 256)
compressed_dim: int = 256, # NEW: learnable compressed dim
hidden_dim: int = 256,
heads: int = 8,
num_layers: int = 4,
lr: float = 1e-4,
alpha: float = 20,
gamma: float = 20,
dropout: float = 0,
use_local_cnn_on_glm: bool = True,
weight_decay: float = 0.01,
loss_type = "mixed"
):
# Init
super(BindPredictor, self).__init__()
self.save_hyperparameters()
# Learnable compressor for binder -> 256, then project to hidden
self.binder_compress = DimCompressor(binder_input_dim, out_dim=compressed_dim)
self.proj_binder = nn.Linear(compressed_dim, hidden_dim)
self.dropout_b1 = nn.Dropout(dropout)
self.act = nn.GELU()
# GLM side stays 256 -> hidden
self.proj_glm = nn.Linear(glm_input_dim, hidden_dim)
self.dropout_g1 = nn.Dropout(dropout)
self.use_local_cnn = use_local_cnn_on_glm
self.local_cnn = LocalCNN(hidden_dim, dropout=self.hparams.dropout) if use_local_cnn_on_glm else nn.Identity()
self.layers = nn.ModuleList(
[CrossModalBlock(hidden_dim, heads, self.hparams.dropout) for _ in range(num_layers)]
)
#self.ln_out = nn.LayerNorm(hidden_dim)
# self.head = nn.Sequential(nn.Linear(hidden_dim, 1), nn.Sigmoid()) # OLD: returned probabilities
self.head = nn.Linear(hidden_dim, 1) # NEW: return logits (safe for AMP)
def forward(self, binder_emb, glm_emb, binder_mask, glm_mask):
"""
binder_emb: (B, Lb, binder_input_dim)
glm_emb: (B, Lg, glm_input_dim)
Returns per-nucleotide logits for the GLM sequence: (B, Lg)
"""
# Binder: learnable compression → 256 → hidden
b = self.binder_compress(binder_emb) # (B, Lb, 256)
b = self.proj_binder(b) # (B, Lb, hidden_dim)
b = self.dropout_b1(self.act(b))
# GLM: project → hidden, add local CNN context
g = self.proj_glm(glm_emb) # (B, Lg, hidden_dim)
g = self.dropout_g1(self.act(g))
if self.use_local_cnn:
g = self.local_cnn(g)
# Cross-modal blocks: update binder states using GLM
for layer in self.layers:
b, g = layer(b, g, binder_mask, glm_mask) # (B, Lb, hidden_dim)
# Predict per-nucleotide logits on the GLM tokens:
# return self.head(g).squeeze(-1) # OLD: probabilities (with Sigmoid in head)
logits = self.head(g).squeeze(
-1
)
return logits
# ----- Lightning hooks -----
def training_step(self, batch, batch_idx):
"""
Training step taken by PyTorch-Lightning trainer. Uses batch returned by data collator.
Colator returns a dictionary with:
"binder_emb" # [B, Lb_max, Db]
"binder_kpm" # [B, Lb_max]
"glm_emb" # [B, Lg_max, Dg]
"glm_kpm" # [B, Lg_max]
"labels" # [B, Lg_max]
"ID"
"tr_sequence"
"dna_sequence"
}
"""
logits = self.forward(batch["binder_emb"], batch["glm_emb"], batch["binder_kpm"], batch["glm_kpm"])
loss = calculate_loss(
logits, batch["labels"], batch["binder_kpm"], batch["glm_kpm"], alpha=self.hparams.alpha, gamma=self.hparams.gamma, loss_type=self.hparams.loss_type
)
self.log(
"train/loss",
loss,
on_step=True,
on_epoch=True,
prog_bar=True,
batch_size=logits.size(0),
)
# ---- AUPRC and AUROC on labels in {0, >0.99} only ----
ap, n_pos, n_neg, precision, recall, thresholds = auprc_zeros_vs_ones_from_logits(
logits.detach(), batch["labels"], batch.get("glm_kpm"), pos_thresh=0.99
)
auc, n_pos, n_neg, tpr, fpr, thresolds, tp, fp = auroc_zeros_vs_ones_from_logits(
logits.detach(), batch["labels"], batch.get("glm_kpm"), pos_thresh=0.99
)
# per-batch AP (epoch-mean is a decent summary); sync across GPUs if using DDP
self.log("train/auprc_0v1",
ap if torch.isfinite(ap) else torch.tensor(0.0, device=ap.device),
on_step=False, on_epoch=True, prog_bar=True, sync_dist=True, batch_size=logits.size(0))
self.log("train/auroc_0v1",
auc if torch.isfinite(auc) else torch.tensor(0.0, device=auc.device),
on_step=False, on_epoch=True, prog_bar=True, sync_dist=True, batch_size=logits.size(0))
# (optional) also log class counts so you can sanity-check balance
self.log("train/n_pos_0v1", float(n_pos), on_step=False, on_epoch=True, sync_dist=True)
self.log("train/n_neg_0v1", float(n_neg), on_step=False, on_epoch=True, sync_dist=True)
return loss
def validation_step(self, batch, batch_idx):
logits = self.forward(batch["binder_emb"], batch["glm_emb"], batch["binder_kpm"], batch["glm_kpm"])
loss = calculate_loss(
logits, batch["labels"], batch["binder_kpm"], batch["glm_kpm"], alpha=self.hparams.alpha, gamma=self.hparams.gamma, loss_type=self.hparams.loss_type
)
self.log(
"val/loss",
loss,
on_step=False,
on_epoch=True,
prog_bar=True,
batch_size=logits.size(0),
)
# ---- AUPRC and AUROC on labels in {0, >0.99} only ----
ap, n_pos, n_neg, precision, recall, thresholds = auprc_zeros_vs_ones_from_logits(
logits.detach(), batch["labels"], batch.get("glm_kpm"), pos_thresh=0.99
)
auc, n_pos, n_neg, tpr, fpr, thresolds, tp, fp = auroc_zeros_vs_ones_from_logits(
logits.detach(), batch["labels"], batch.get("glm_kpm"), pos_thresh=0.99
)
# per-batch AP (epoch-mean is a decent summary); sync across GPUs if using DDP
self.log("val/auprc_0v1",
ap if torch.isfinite(ap) else torch.tensor(0.0, device=ap.device),
on_step=False, on_epoch=True, prog_bar=True, sync_dist=True, batch_size=logits.size(0))
self.log("val/auroc_0v1",
auc if torch.isfinite(auc) else torch.tensor(0.0, device=auc.device),
on_step=False, on_epoch=True, prog_bar=True, sync_dist=True, batch_size=logits.size(0))
return loss
def test_step(self, batch, batch_idx):
logits = self.forward(batch["binder_emb"], batch["glm_emb"], batch["binder_kpm"], batch["glm_kpm"])
loss = calculate_loss(
logits, batch["labels"], batch["binder_kpm"], batch["glm_kpm"], alpha=self.hparams.alpha, gamma=self.hparams.gamma, loss_type=self.hparams.loss_type
)
self.log(
"test/loss", loss, on_step=False, on_epoch=True, batch_size=logits.size(0)
)
# ---- AUPRC and AUROC on labels in {0, >0.99} only ----
ap, n_pos, n_neg, precision, recall, thresholds = auprc_zeros_vs_ones_from_logits(
logits.detach(), batch["labels"], batch.get("glm_kpm"), pos_thresh=0.99
)
auc, n_pos, n_neg, tpr, fpr, thresolds, tp, fp = auroc_zeros_vs_ones_from_logits(
logits.detach(), batch["labels"], batch.get("glm_kpm"), pos_thresh=0.99
)
# per-batch AP (epoch-mean is a decent summary); sync across GPUs if using DDP
self.log("test/auprc_0v1",
ap if torch.isfinite(ap) else torch.tensor(0.0, device=ap.device),
on_step=False, on_epoch=True, prog_bar=True, sync_dist=True, batch_size=logits.size(0))
self.log("test/auroc_0v1",
auc if torch.isfinite(auc) else torch.tensor(0.0, device=auc.device),
on_step=False, on_epoch=True, prog_bar=True, sync_dist=True, batch_size=logits.size(0))
return loss
def predict_step(self, batch, batch_idx, dataloader_idx=0):
logits = self.forward(batch["binder_emb"], batch["glm_emb"],
batch["binder_kpm"], batch["glm_kpm"]).squeeze(-1) # (B,L)
valid = ~batch["glm_kpm"] # (B,L)
return {
"ids": batch["ID"], # list[str]
"logits": logits.detach().cpu(), # (B,Lmax) padded
"valid": valid.detach().cpu(), # (B,Lmax) booleans
"labels": batch["labels"].detach().cpu(), # (B,Lmax) padded
}
def on_before_optimizer_step(self, optimizer):
# Compute global L2 norm of all parameter gradients (ignores None grads)
grads = []
for p in self.parameters():
if p.grad is not None:
# .detach() avoids autograd tracking; .float() avoids fp16 overflow in norms
grads.append(p.grad.detach().float().norm(2))
if grads:
total_norm = torch.norm(torch.stack(grads), p=2)
self.log("train/grad_norm", total_norm, on_step=True, prog_bar=False, logger=True)
def on_after_backward(self):
grads = [p.grad.detach().float().norm(2)
for p in self.parameters() if p.grad is not None]
if grads:
total_norm = torch.norm(torch.stack(grads), p=2)
self.log("train/grad_norm_back", total_norm, on_step=True, prog_bar=False)
def on_train_epoch_end(self):
if False:
if self.train_auc.compute() is not None:
self.log("train/auroc", self.train_auc.compute(), prog_bar=True)
self.train_auc.reset()
def on_validation_epoch_end(self):
if False:
if self.val_auc.compute() is not None:
self.log("val/auroc", self.val_auc.compute(), prog_bar=True)
self.val_auc.reset()
def on_test_epoch_end(self):
if False:
if self.test_auc.compute() is not None:
self.log("test/auroc", self.test_auc.compute(), prog_bar=True)
self.test_auc.reset()
def configure_optimizers(self):
# AdamW + cosine as a sensible default
opt = torch.optim.AdamW(
self.parameters(),
lr=self.hparams.lr,
weight_decay=self.hparams.weight_decay,
)
# Scheduler optional—comment out if you prefer fixed LR
sch = torch.optim.lr_scheduler.CosineAnnealingLR(
opt, T_max=max(self.trainer.max_epochs, 1)
)
return {
"optimizer": opt,
"lr_scheduler": {"scheduler": sch, "interval": "epoch"},
}
|