File size: 21,471 Bytes
9d6a2a3 | 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 | import torch as th
import torch.nn.functional as F
import numpy as np
from torch_scatter import scatter_add
from torch_geometric.utils import to_dense_batch
from torch import nn
def glorot_orthogonal(tensor, scale):
"""Initialize a tensor's values according to an orthogonal Glorot initialization scheme."""
if tensor is not None:
th.nn.init.orthogonal_(tensor.data)
scale /= ((tensor.size(-2) + tensor.size(-1)) * tensor.var())
tensor.data *= scale.sqrt()
class MultiHeadAttentionLayer(nn.Module):
"""Compute attention scores with a DGLGraph's node and edge (geometric) features."""
def __init__(self, num_input_feats, num_output_feats,
num_heads, using_bias=False, update_edge_feats=True):
super(MultiHeadAttentionLayer, self).__init__()
# Declare shared variables
self.num_output_feats = num_output_feats
self.num_heads = num_heads
self.using_bias = using_bias
self.update_edge_feats = update_edge_feats
# Define node features' query, key, and value tensors, and define edge features' projection tensors
self.Q = nn.Linear(num_input_feats, self.num_output_feats * self.num_heads, bias=using_bias)
self.K = nn.Linear(num_input_feats, self.num_output_feats * self.num_heads, bias=using_bias)
self.V = nn.Linear(num_input_feats, self.num_output_feats * self.num_heads, bias=using_bias)
self.edge_feats_projection = nn.Linear(num_input_feats, self.num_output_feats * self.num_heads, bias=using_bias)
self.reset_parameters()
def reset_parameters(self):
"""Reinitialize learnable parameters."""
scale = 2.0
if self.using_bias:
glorot_orthogonal(self.Q.weight, scale=scale)
self.Q.bias.data.fill_(0)
glorot_orthogonal(self.K.weight, scale=scale)
self.K.bias.data.fill_(0)
glorot_orthogonal(self.V.weight, scale=scale)
self.V.bias.data.fill_(0)
glorot_orthogonal(self.edge_feats_projection.weight, scale=scale)
self.edge_feats_projection.bias.data.fill_(0)
else:
glorot_orthogonal(self.Q.weight, scale=scale)
glorot_orthogonal(self.K.weight, scale=scale)
glorot_orthogonal(self.V.weight, scale=scale)
glorot_orthogonal(self.edge_feats_projection.weight, scale=scale)
def propagate_attention(self, edge_index, node_feats_q, node_feats_k, node_feats_v, edge_feats_projection):
row, col = edge_index
e_out = None
# Compute attention scores
alpha = node_feats_k[row] * node_feats_q[col]
# Scale and clip attention scores
alpha = (alpha / np.sqrt(self.num_output_feats)).clamp(-5.0,5.0)
# Use available edge features to modify the attention scores
alpha = alpha * edge_feats_projection
# Copy edge features as e_out to be passed to edge_feats_MLP
if self.update_edge_feats:
e_out = alpha
# Apply softmax to attention scores, followed by clipping
alphax = th.exp((alpha.sum(-1, keepdim=True)).clamp(-5.0,5.0))
# Send weighted values to target nodes
wV = scatter_add(node_feats_v[row]*alphax, col, dim=0, dim_size=node_feats_q.size(0))
z = scatter_add(alphax, col, dim=0, dim_size=node_feats_q.size(0))
return wV, z, e_out
def forward(self, x, edge_attr, edge_index):
node_feats_q = self.Q(x).view(-1, self.num_heads, self.num_output_feats)
node_feats_k = self.K(x).view(-1, self.num_heads, self.num_output_feats)
node_feats_v = self.V(x).view(-1, self.num_heads, self.num_output_feats)
edge_feats_projection = self.edge_feats_projection(edge_attr).view(-1, self.num_heads, self.num_output_feats)
wV, z, e_out = self.propagate_attention(edge_index, node_feats_q, node_feats_k, node_feats_v, edge_feats_projection)
h_out = wV / (z + th.full_like(z, 1e-6))
return h_out, e_out
class GraphTransformerModule(nn.Module):
"""A Graph Transformer module (equivalent to one layer of graph convolutions)."""
def __init__(
self,
num_hidden_channels,
activ_fn=nn.SiLU(),
residual=True,
num_attention_heads=4,
norm_to_apply='batch',
dropout_rate=0.1,
num_layers=4,
):
super(GraphTransformerModule, self).__init__()
# Record parameters given
self.activ_fn = activ_fn
self.residual = residual
self.num_attention_heads = num_attention_heads
self.norm_to_apply = norm_to_apply
self.dropout_rate = dropout_rate
self.num_layers = num_layers
# --------------------
# Transformer Module
# --------------------
# Define all modules related to a Geometric Transformer module
self.apply_layer_norm = 'layer' in self.norm_to_apply.lower()
self.num_hidden_channels, self.num_output_feats = num_hidden_channels, num_hidden_channels
if self.apply_layer_norm:
self.layer_norm1_node_feats = nn.LayerNorm(self.num_output_feats)
self.layer_norm1_edge_feats = nn.LayerNorm(self.num_output_feats)
else: # Otherwise, default to using batch normalization
self.batch_norm1_node_feats = nn.BatchNorm1d(self.num_output_feats)
self.batch_norm1_edge_feats = nn.BatchNorm1d(self.num_output_feats)
self.mha_module = MultiHeadAttentionLayer(
self.num_hidden_channels,
self.num_output_feats // self.num_attention_heads,
self.num_attention_heads,
self.num_hidden_channels != self.num_output_feats, # Only use bias if a Linear() has to change sizes
update_edge_feats=True
)
self.O_node_feats = nn.Linear(self.num_output_feats, self.num_output_feats)
self.O_edge_feats = nn.Linear(self.num_output_feats, self.num_output_feats)
# MLP for node features
dropout = nn.Dropout(p=self.dropout_rate) if self.dropout_rate > 0.0 else nn.Identity()
self.node_feats_MLP = nn.ModuleList([
nn.Linear(self.num_output_feats, self.num_output_feats * 2, bias=False),
self.activ_fn,
dropout,
nn.Linear(self.num_output_feats * 2, self.num_output_feats, bias=False)
])
if self.apply_layer_norm:
self.layer_norm2_node_feats = nn.LayerNorm(self.num_output_feats)
self.layer_norm2_edge_feats = nn.LayerNorm(self.num_output_feats)
else: # Otherwise, default to using batch normalization
self.batch_norm2_node_feats = nn.BatchNorm1d(self.num_output_feats)
self.batch_norm2_edge_feats = nn.BatchNorm1d(self.num_output_feats)
# MLP for edge features
self.edge_feats_MLP = nn.ModuleList([
nn.Linear(self.num_output_feats, self.num_output_feats * 2, bias=False),
self.activ_fn,
dropout,
nn.Linear(self.num_output_feats * 2, self.num_output_feats, bias=False)
])
self.reset_parameters()
def reset_parameters(self):
"""Reinitialize learnable parameters."""
scale = 2.0
glorot_orthogonal(self.O_node_feats.weight, scale=scale)
self.O_node_feats.bias.data.fill_(0)
glorot_orthogonal(self.O_edge_feats.weight, scale=scale)
self.O_edge_feats.bias.data.fill_(0)
for layer in self.node_feats_MLP:
if hasattr(layer, 'weight'): # Skip initialization for activation functions
glorot_orthogonal(layer.weight, scale=scale)
for layer in self.edge_feats_MLP:
if hasattr(layer, 'weight'):
glorot_orthogonal(layer.weight, scale=scale)
def run_gt_layer(self, data, node_feats, edge_feats):
"""Perform a forward pass of geometric attention using a multi-head attention (MHA) module."""
node_feats_in1 = node_feats # Cache node representations for first residual connection
edge_feats_in1 = edge_feats # Cache edge representations for first residual connection
# Apply first round of normalization before applying geometric attention, for performance enhancement
if self.apply_layer_norm:
node_feats = self.layer_norm1_node_feats(node_feats)
edge_feats = self.layer_norm1_edge_feats(edge_feats)
else: # Otherwise, default to using batch normalization
node_feats = self.batch_norm1_node_feats(node_feats)
edge_feats = self.batch_norm1_edge_feats(edge_feats)
# Get multi-head attention output using provided node and edge representations
node_attn_out, edge_attn_out = self.mha_module(node_feats, edge_feats, data.edge_index)
node_feats = node_attn_out.view(-1, self.num_output_feats)
edge_feats = edge_attn_out.view(-1, self.num_output_feats)
node_feats = F.dropout(node_feats, self.dropout_rate, training=self.training)
edge_feats = F.dropout(edge_feats, self.dropout_rate, training=self.training)
node_feats = self.O_node_feats(node_feats)
edge_feats = self.O_edge_feats(edge_feats)
# Make first residual connection
if self.residual:
node_feats = node_feats_in1 + node_feats # Make first node residual connection
edge_feats = edge_feats_in1 + edge_feats # Make first edge residual connection
node_feats_in2 = node_feats # Cache node representations for second residual connection
edge_feats_in2 = edge_feats # Cache edge representations for second residual connection
# Apply second round of normalization after first residual connection has been made
if self.apply_layer_norm:
node_feats = self.layer_norm2_node_feats(node_feats)
edge_feats = self.layer_norm2_edge_feats(edge_feats)
else: # Otherwise, default to using batch normalization
node_feats = self.batch_norm2_node_feats(node_feats)
edge_feats = self.batch_norm2_edge_feats(edge_feats)
# Apply MLPs for node and edge features
for layer in self.node_feats_MLP:
node_feats = layer(node_feats)
for layer in self.edge_feats_MLP:
edge_feats = layer(edge_feats)
# Make second residual connection
if self.residual:
node_feats = node_feats_in2 + node_feats # Make second node residual connection
edge_feats = edge_feats_in2 + edge_feats # Make second edge residual connection
# Return edge representations along with node representations (for tasks other than interface prediction)
return node_feats, edge_feats
def forward(self, data, node_feats, edge_feats):
"""Perform a forward pass of a Geometric Transformer to get intermediate node and edge representations."""
node_feats, edge_feats = self.run_gt_layer(data, node_feats, edge_feats)
return node_feats, edge_feats
class FinalGraphTransformerModule(nn.Module):
"""A (final layer) Graph Transformer module that combines node and edge representations using self-attention."""
def __init__(self,
num_hidden_channels,
activ_fn=nn.SiLU(),
residual=True,
num_attention_heads=4,
norm_to_apply='batch',
dropout_rate=0.1,
num_layers=4):
super(FinalGraphTransformerModule, self).__init__()
# Record parameters given
self.activ_fn = activ_fn
self.residual = residual
self.num_attention_heads = num_attention_heads
self.norm_to_apply = norm_to_apply
self.dropout_rate = dropout_rate
self.num_layers = num_layers
# --------------------
# Transformer Module
# --------------------
# Define all modules related to a Geometric Transformer module
self.apply_layer_norm = 'layer' in self.norm_to_apply.lower()
self.num_hidden_channels, self.num_output_feats = num_hidden_channels, num_hidden_channels
if self.apply_layer_norm:
self.layer_norm1_node_feats = nn.LayerNorm(self.num_output_feats)
self.layer_norm1_edge_feats = nn.LayerNorm(self.num_output_feats)
else: # Otherwise, default to using batch normalization
self.batch_norm1_node_feats = nn.BatchNorm1d(self.num_output_feats)
self.batch_norm1_edge_feats = nn.BatchNorm1d(self.num_output_feats)
self.mha_module = MultiHeadAttentionLayer(
self.num_hidden_channels,
self.num_output_feats // self.num_attention_heads,
self.num_attention_heads,
self.num_hidden_channels != self.num_output_feats, # Only use bias if a Linear() has to change sizes
update_edge_feats=False)
self.O_node_feats = nn.Linear(self.num_output_feats, self.num_output_feats)
# MLP for node features
dropout = nn.Dropout(p=self.dropout_rate) if self.dropout_rate > 0.0 else nn.Identity()
self.node_feats_MLP = nn.ModuleList([
nn.Linear(self.num_output_feats, self.num_output_feats * 2, bias=False),
self.activ_fn,
dropout,
nn.Linear(self.num_output_feats * 2, self.num_output_feats, bias=False)
])
if self.apply_layer_norm:
self.layer_norm2_node_feats = nn.LayerNorm(self.num_output_feats)
else: # Otherwise, default to using batch normalization
self.batch_norm2_node_feats = nn.BatchNorm1d(self.num_output_feats)
self.reset_parameters()
def reset_parameters(self):
"""Reinitialize learnable parameters."""
scale = 2.0
glorot_orthogonal(self.O_node_feats.weight, scale=scale)
self.O_node_feats.bias.data.fill_(0)
for layer in self.node_feats_MLP:
if hasattr(layer, 'weight'): # Skip initialization for activation functions
glorot_orthogonal(layer.weight, scale=scale)
#glorot_orthogonal(self.conformation_module.weight, scale=scale)
def run_gt_layer(self, data, node_feats, edge_feats):
"""Perform a forward pass of geometric attention using a multi-head attention (MHA) module."""
node_feats_in1 = node_feats # Cache node representations for first residual connection
#edge_feats = self.conformation_module(edge_feats)
# Apply first round of normalization before applying geometric attention, for performance enhancement
if self.apply_layer_norm:
node_feats = self.layer_norm1_node_feats(node_feats)
edge_feats = self.layer_norm1_edge_feats(edge_feats)
else: # Otherwise, default to using batch normalization
node_feats = self.batch_norm1_node_feats(node_feats)
edge_feats = self.batch_norm1_edge_feats(edge_feats)
# Get multi-head attention output using provided node and edge representations
node_attn_out, _ = self.mha_module(node_feats, edge_feats, data.edge_index)
node_feats = node_attn_out.view(-1, self.num_output_feats)
node_feats = F.dropout(node_feats, self.dropout_rate, training=self.training)
node_feats = self.O_node_feats(node_feats)
# Make first residual connection
if self.residual:
node_feats = node_feats_in1 + node_feats # Make first node residual connection
node_feats_in2 = node_feats # Cache node representations for second residual connection
# Apply second round of normalization after first residual connection has been made
if self.apply_layer_norm:
node_feats = self.layer_norm2_node_feats(node_feats)
else: # Otherwise, default to using batch normalization
node_feats = self.batch_norm2_node_feats(node_feats)
# Apply MLP for node features
for layer in self.node_feats_MLP:
node_feats = layer(node_feats)
# Make second residual connection
if self.residual:
node_feats = node_feats_in2 + node_feats # Make second node residual connection
# Return node representations
return node_feats
def forward(self, data, node_feats, edge_feats):
"""Perform a forward pass of a Geometric Transformer to get final node representations."""
node_feats = self.run_gt_layer(data, node_feats, edge_feats)
return node_feats
class GraphTransformer(nn.Module):
"""A graph transformer
"""
def __init__(
self,
in_channels,
edge_features=10,
num_hidden_channels=128,
activ_fn=nn.SiLU(),
transformer_residual=True,
num_attention_heads=4,
norm_to_apply='batch',
dropout_rate=0.1,
num_layers=4,
**kwargs
):
super(GraphTransformer, self).__init__()
# Initialize model parameters
self.activ_fn = activ_fn
self.transformer_residual = transformer_residual
self.num_attention_heads = num_attention_heads
self.norm_to_apply = norm_to_apply
self.dropout_rate = dropout_rate
self.num_layers = num_layers
# --------------------
# Initializer Modules
# --------------------
# Define all modules related to edge and node initialization
self.node_encoder = nn.Linear(in_channels, num_hidden_channels)
self.edge_encoder = nn.Linear(edge_features, num_hidden_channels)
# --------------------
# Transformer Module
# --------------------
# Define all modules related to a variable number of Geometric Transformer modules
num_intermediate_layers = max(0, num_layers - 1)
gt_block_modules = [GraphTransformerModule(
num_hidden_channels=num_hidden_channels,
activ_fn=activ_fn,
residual=transformer_residual,
num_attention_heads=num_attention_heads,
norm_to_apply=norm_to_apply,
dropout_rate=dropout_rate,
num_layers=num_layers) for _ in range(num_intermediate_layers)]
if num_layers > 0:
gt_block_modules.extend([
FinalGraphTransformerModule(
num_hidden_channels=num_hidden_channels,
activ_fn=activ_fn,
residual=transformer_residual,
num_attention_heads=num_attention_heads,
norm_to_apply=norm_to_apply,
dropout_rate=dropout_rate,
num_layers=num_layers)])
self.gt_block = nn.ModuleList(gt_block_modules)
def forward(self, data):
node_feats = self.node_encoder(data.x)
edge_feats = self.edge_encoder(data.edge_attr)
# Apply a given number of intermediate geometric attention layers to the node and edge features given
for gt_layer in self.gt_block[:-1]:
node_feats, edge_feats = gt_layer(data, node_feats, edge_feats)
# Apply final layer to update node representations by merging current node and edge representations
node_feats = self.gt_block[-1](data, node_feats, edge_feats)
data.x = node_feats
data.edge_attr = edge_feats
#return node_feats
return data
#==============================================
from .layer.gatedgcn_layer import GatedGCNLayer
class GatedGCN(nn.Module):
"""A graph transformer
"""
def __init__(
self,
in_channels,
edge_features=10,
num_hidden_channels=128,
dropout_rate=0.1,
num_layers=4,
residual=True,
equivstable_pe=False,
**kwargs
):
super(GatedGCN, self).__init__()
# Initialize model parameters
self.residual = residual
self.dropout_rate = dropout_rate
self.num_layers = num_layers
self.node_encoder = nn.Linear(in_channels, num_hidden_channels)
self.edge_encoder = nn.Linear(edge_features, num_hidden_channels)
gt_block_modules = [GatedGCNLayer(
num_hidden_channels,
num_hidden_channels,
dropout_rate,
residual,
equivstable_pe=equivstable_pe) for _ in range(num_layers)]
self.gt_block = nn.ModuleList(gt_block_modules)
def forward(self, data):
data.x = self.node_encoder(data.x)
data.edge_attr = self.edge_encoder(data.edge_attr)
# Apply a given number of intermediate geometric attention layers to the node and edge features given
for gt_layer in self.gt_block:
data = gt_layer(data)
# Apply final layer to update node representations by merging current node and edge representations
#data.x = node_feats
#data.edge_attr = edge_feats
#return node_feats
return data
#==============================================
class GenScore(nn.Module):
def __init__(self, ligand_model, target_model, in_channels, hidden_dim, n_gaussians, dropout_rate=0.15,
dist_threhold=1000):
super(GenScore, self).__init__()
self.ligand_model = ligand_model
self.target_model = target_model
self.MLP = nn.Sequential(nn.Linear(in_channels*2, hidden_dim),
nn.BatchNorm1d(hidden_dim),
nn.ELU(),
nn.Dropout(p=dropout_rate))
self.z_pi = nn.Linear(hidden_dim, n_gaussians)
self.z_sigma = nn.Linear(hidden_dim, n_gaussians)
self.z_mu = nn.Linear(hidden_dim, n_gaussians)
self.atom_types = nn.Linear(in_channels, 17)
self.bond_types = nn.Linear(in_channels*2, 4)
#self.device = 'cuda' if th.cuda.is_available() else 'cpu'
self.dist_threhold = dist_threhold
def forward(self, data_ligand, data_target):
h_l = self.ligand_model(data_ligand)
h_t = self.target_model(data_target)
h_l_x, l_mask = to_dense_batch(h_l.x, h_l.batch, fill_value=0)
h_t_x, t_mask = to_dense_batch(h_t.x, h_t.batch, fill_value=0)
h_l_pos, _ = to_dense_batch(h_l.pos, h_l.batch, fill_value=0)
h_t_pos, _ = to_dense_batch(h_t.pos, h_t.batch, fill_value=0)
#assert h_l_x.size(0) == h_t_x.size(0), 'Encountered unequal batch-sizes'
(B, N_l, C_out), N_t = h_l_x.size(), h_t_x.size(1)
self.B = B
self.N_l = N_l
self.N_t = N_t
# Combine and mask
h_l_x = h_l_x.unsqueeze(-2)
h_l_x = h_l_x.repeat(1, 1, N_t, 1) # [B, N_l, N_t, C_out]
h_t_x = h_t_x.unsqueeze(-3)
h_t_x = h_t_x.repeat(1, N_l, 1, 1) # [B, N_l, N_t, C_out]
C = th.cat((h_l_x, h_t_x), -1)
self.C_mask = C_mask = l_mask.view(B, N_l, 1) & t_mask.view(B, 1, N_t)
self.C = C = C[C_mask]
C = self.MLP(C)
# Get batch indexes for ligand-target combined features
C_batch = th.tensor(range(B)).unsqueeze(-1).unsqueeze(-1)
# LL 2026 UPDATE
C_mask = C_mask.to(C_batch.device)
C_batch = C_batch.repeat(1, N_l, N_t)[C_mask]
# Outputs
pi = F.softmax(self.z_pi(C), -1)
sigma = F.elu(self.z_sigma(C))+1.1
mu = F.elu(self.z_mu(C))+1
atom_types = self.atom_types(h_l.x)
bond_types = self.bond_types(th.cat([h_l.x[h_l.edge_index[0]], h_l.x[h_l.edge_index[1]]], axis=1))
dist = self.compute_euclidean_distances_matrix(h_l_pos, h_t_pos.view(B,-1,3))[C_mask]
return pi, sigma, mu, dist.unsqueeze(1).detach(), atom_types, bond_types, C_batch
def compute_euclidean_distances_matrix(self, X, Y):
# Based on: https://medium.com/@souravdey/l2-distance-matrix-vectorization-trick-26aa3247ac6c
# (X-Y)^2 = X^2 + Y^2 -2XY
X = X.double()
Y = Y.double()
dists = -2 * th.bmm(X, Y.permute(0, 2, 1)) + th.sum(Y**2, axis=-1).unsqueeze(1) + th.sum(X**2, axis=-1).unsqueeze(-1)
return th.nan_to_num((dists**0.5).view(self.B, self.N_l,-1,24),10000).min(axis=-1)[0]
|