dmlc--dgl
9df8cd3242
* Update * Update * Update * Update * Update
190 行
5.6 KiB
Python
190 行
5.6 KiB
Python
# pylint: disable=C0111, C0103, E1101, W0611, W0612
|
|
# pylint: disable=redefined-outer-name
|
|
import rdkit.Chem as Chem
|
|
import torch
|
|
import torch.nn as nn
|
|
import torch.nn.functional as F
|
|
import dgl.function as DGLF
|
|
from dgl import DGLGraph, mean_nodes
|
|
|
|
from .chemutils import get_mol
|
|
|
|
ELEM_LIST = ['C', 'N', 'O', 'S', 'F', 'Si', 'P', 'Cl', 'Br', 'Mg', 'Na',
|
|
'Ca', 'Fe', 'Al', 'I', 'B', 'K', 'Se', 'Zn', 'H', 'Cu', 'Mn', 'unknown']
|
|
|
|
ATOM_FDIM = len(ELEM_LIST) + 6 + 5 + 4 + 1
|
|
BOND_FDIM = 5 + 6
|
|
MAX_NB = 6
|
|
|
|
|
|
def onek_encoding_unk(x, allowable_set):
|
|
if x not in allowable_set:
|
|
x = allowable_set[-1]
|
|
return [x == s for s in allowable_set]
|
|
|
|
|
|
def atom_features(atom):
|
|
return (torch.Tensor(onek_encoding_unk(atom.GetSymbol(), ELEM_LIST)
|
|
+ onek_encoding_unk(atom.GetDegree(),
|
|
[0, 1, 2, 3, 4, 5])
|
|
+ onek_encoding_unk(atom.GetFormalCharge(),
|
|
[-1, -2, 1, 2, 0])
|
|
+ onek_encoding_unk(int(atom.GetChiralTag()), [0, 1, 2, 3])
|
|
+ [atom.GetIsAromatic()]))
|
|
|
|
|
|
def bond_features(bond):
|
|
bt = bond.GetBondType()
|
|
stereo = int(bond.GetStereo())
|
|
fbond = [bt == Chem.rdchem.BondType.SINGLE, bt == Chem.rdchem.BondType.DOUBLE, bt ==
|
|
Chem.rdchem.BondType.TRIPLE, bt == Chem.rdchem.BondType.AROMATIC, bond.IsInRing()]
|
|
fstereo = onek_encoding_unk(stereo, [0, 1, 2, 3, 4, 5])
|
|
return torch.Tensor(fbond + fstereo)
|
|
|
|
|
|
def mol2dgl_single(smiles):
|
|
n_edges = 0
|
|
|
|
atom_x = []
|
|
bond_x = []
|
|
|
|
mol = get_mol(smiles)
|
|
n_atoms = mol.GetNumAtoms()
|
|
n_bonds = mol.GetNumBonds()
|
|
graph = DGLGraph()
|
|
for i, atom in enumerate(mol.GetAtoms()):
|
|
assert i == atom.GetIdx()
|
|
atom_x.append(atom_features(atom))
|
|
graph.add_nodes(n_atoms)
|
|
|
|
bond_src = []
|
|
bond_dst = []
|
|
for i, bond in enumerate(mol.GetBonds()):
|
|
begin_idx = bond.GetBeginAtom().GetIdx()
|
|
end_idx = bond.GetEndAtom().GetIdx()
|
|
features = bond_features(bond)
|
|
bond_src.append(begin_idx)
|
|
bond_dst.append(end_idx)
|
|
bond_x.append(features)
|
|
# set up the reverse direction
|
|
bond_src.append(end_idx)
|
|
bond_dst.append(begin_idx)
|
|
bond_x.append(features)
|
|
graph.add_edges(bond_src, bond_dst)
|
|
|
|
n_edges += n_bonds
|
|
return graph, torch.stack(atom_x), \
|
|
torch.stack(bond_x) if len(bond_x) > 0 else torch.zeros(0)
|
|
|
|
|
|
mpn_loopy_bp_msg = DGLF.copy_src(src='msg', out='msg')
|
|
mpn_loopy_bp_reduce = DGLF.sum(msg='msg', out='accum_msg')
|
|
|
|
|
|
class LoopyBPUpdate(nn.Module):
|
|
def __init__(self, hidden_size):
|
|
super(LoopyBPUpdate, self).__init__()
|
|
self.hidden_size = hidden_size
|
|
|
|
self.W_h = nn.Linear(hidden_size, hidden_size, bias=False)
|
|
|
|
def forward(self, nodes):
|
|
msg_input = nodes.data['msg_input']
|
|
msg_delta = self.W_h(nodes.data['accum_msg'])
|
|
msg = F.relu(msg_input + msg_delta)
|
|
return {'msg': msg}
|
|
|
|
|
|
mpn_gather_msg = DGLF.copy_edge(edge='msg', out='msg')
|
|
mpn_gather_reduce = DGLF.sum(msg='msg', out='m')
|
|
|
|
|
|
class GatherUpdate(nn.Module):
|
|
def __init__(self, hidden_size):
|
|
super(GatherUpdate, self).__init__()
|
|
self.hidden_size = hidden_size
|
|
|
|
self.W_o = nn.Linear(ATOM_FDIM + hidden_size, hidden_size)
|
|
|
|
def forward(self, nodes):
|
|
m = nodes.data['m']
|
|
return {
|
|
'h': F.relu(self.W_o(torch.cat([nodes.data['x'], m], 1))),
|
|
}
|
|
|
|
|
|
class DGLMPN(nn.Module):
|
|
def __init__(self, hidden_size, depth):
|
|
super(DGLMPN, self).__init__()
|
|
|
|
self.depth = depth
|
|
|
|
self.W_i = nn.Linear(ATOM_FDIM + BOND_FDIM, hidden_size, bias=False)
|
|
|
|
self.loopy_bp_updater = LoopyBPUpdate(hidden_size)
|
|
self.gather_updater = GatherUpdate(hidden_size)
|
|
self.hidden_size = hidden_size
|
|
|
|
self.n_samples_total = 0
|
|
self.n_nodes_total = 0
|
|
self.n_edges_total = 0
|
|
self.n_passes = 0
|
|
|
|
def forward(self, mol_graph):
|
|
n_samples = mol_graph.batch_size
|
|
|
|
mol_line_graph = mol_graph.line_graph(backtracking=False, shared=True)
|
|
|
|
n_nodes = mol_graph.number_of_nodes()
|
|
n_edges = mol_graph.number_of_edges()
|
|
|
|
mol_graph = self.run(mol_graph, mol_line_graph)
|
|
|
|
# TODO: replace with unbatch or readout
|
|
g_repr = mean_nodes(mol_graph, 'h')
|
|
|
|
self.n_samples_total += n_samples
|
|
self.n_nodes_total += n_nodes
|
|
self.n_edges_total += n_edges
|
|
self.n_passes += 1
|
|
|
|
return g_repr
|
|
|
|
def run(self, mol_graph, mol_line_graph):
|
|
n_nodes = mol_graph.number_of_nodes()
|
|
|
|
mol_graph.apply_edges(
|
|
func=lambda edges: {'src_x': edges.src['x']},
|
|
)
|
|
|
|
e_repr = mol_line_graph.ndata
|
|
bond_features = e_repr['x']
|
|
source_features = e_repr['src_x']
|
|
|
|
features = torch.cat([source_features, bond_features], 1)
|
|
msg_input = self.W_i(features)
|
|
mol_line_graph.ndata.update({
|
|
'msg_input': msg_input,
|
|
'msg': F.relu(msg_input),
|
|
'accum_msg': torch.zeros_like(msg_input),
|
|
})
|
|
mol_graph.ndata.update({
|
|
'm': bond_features.new(n_nodes, self.hidden_size).zero_(),
|
|
'h': bond_features.new(n_nodes, self.hidden_size).zero_(),
|
|
})
|
|
|
|
for i in range(self.depth - 1):
|
|
mol_line_graph.update_all(
|
|
mpn_loopy_bp_msg,
|
|
mpn_loopy_bp_reduce,
|
|
self.loopy_bp_updater,
|
|
)
|
|
|
|
mol_graph.update_all(
|
|
mpn_gather_msg,
|
|
mpn_gather_reduce,
|
|
self.gather_updater,
|
|
)
|
|
|
|
return mol_graph
|