Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 1,366 Bytes
c0ec7e6 |
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 |
from torch import nn
from torch_geometric.nn import GCNConv, global_max_pool
class GCN(nn.Module):
"""
From `GraphDTA <https://doi.org/10.1093/bioinformatics/btaa921>`_ (Nguyen et al., 2020),
based on `Graph Convolutional Network <https://arxiv.org/abs/1609.02907>`_ (Kipf and Welling, 2017).
"""
def __init__(
self,
num_features: int,
out_channels: int,
dropout: float
):
super().__init__()
self.conv1 = GCNConv(num_features, num_features)
self.conv2 = GCNConv(num_features, num_features*2)
self.conv3 = GCNConv(num_features*2, num_features * 4)
self.fc_g1 = nn.Linear(num_features*4, 1024)
self.fc_g2 = nn.Linear(1024, out_channels)
self.relu = nn.ReLU()
self.dropout = nn.Dropout(dropout)
def forward(self, data):
# get graph input
x, edge_index, batch = data.x, data.edge_index, data.batch
x = self.conv1(x, edge_index)
x = self.relu(x)
x = self.conv2(x, edge_index)
x = self.relu(x)
x = self.conv3(x, edge_index)
x = self.relu(x)
x = global_max_pool(x, batch) # global max pooling
# flatten
x = self.relu(self.fc_g1(x))
x = self.dropout(x)
x = self.fc_g2(x)
x = self.dropout(x)
return x
|