dmlc--dgl
828a5e5bc6
* First commit * Update * Update splitters * Update * Update * Update * Update * Update * Update * Migrate ACNN * Fix * Fix * Update * Update * Update * Update * Update * Update * Finish classification * Update * Fix * Update * Update * Update * Fix * Fix * Fix * Update * Update * Update * trigger CI * Fix CI * Update * Update * Update * Add default values * Rename * Update deprecation message
155 行
5.3 KiB
Python
155 行
5.3 KiB
Python
"""Utilities for using pretrained models."""
|
|
import os
|
|
import torch
|
|
from rdkit import Chem
|
|
|
|
from . import DGLJTNNVAE
|
|
from .classifiers import GCNClassifier, GATClassifier
|
|
from .dgmg import DGMG
|
|
from .mgcn import MGCNModel
|
|
from .mpnn import MPNNModel
|
|
from .schnet import SchNet
|
|
from .attentive_fp import AttentiveFP
|
|
from ...data.utils import _get_dgl_url, download, get_download_dir, extract_archive
|
|
from ...contrib.deprecation import deprecated
|
|
|
|
URL = {
|
|
'GCN_Tox21': 'pre_trained/gcn_tox21.pth',
|
|
'GAT_Tox21': 'pre_trained/gat_tox21.pth',
|
|
'MGCN_Alchemy': 'pre_trained/mgcn_alchemy.pth',
|
|
'SCHNET_Alchemy': 'pre_trained/schnet_alchemy.pth',
|
|
'MPNN_Alchemy': 'pre_trained/mpnn_alchemy.pth',
|
|
'AttentiveFP_Aromaticity': 'pre_trained/attentivefp_aromaticity.pth',
|
|
'DGMG_ChEMBL_canonical': 'pre_trained/dgmg_ChEMBL_canonical.pth',
|
|
'DGMG_ChEMBL_random': 'pre_trained/dgmg_ChEMBL_random.pth',
|
|
'DGMG_ZINC_canonical': 'pre_trained/dgmg_ZINC_canonical.pth',
|
|
'DGMG_ZINC_random': 'pre_trained/dgmg_ZINC_random.pth',
|
|
'JTNN_ZINC': 'pre_trained/JTNN_ZINC.pth'
|
|
}
|
|
|
|
def download_and_load_checkpoint(model_name, model, model_postfix,
|
|
local_pretrained_path='pre_trained.pth', log=True):
|
|
"""Download pretrained model checkpoint
|
|
|
|
The model will be loaded to CPU.
|
|
|
|
Parameters
|
|
----------
|
|
model_name : str
|
|
Name of the model
|
|
model : nn.Module
|
|
Instantiated model instance
|
|
model_postfix : str
|
|
Postfix for pretrained model checkpoint
|
|
local_pretrained_path : str
|
|
Local name for the downloaded model checkpoint
|
|
log : bool
|
|
Whether to print progress for model loading
|
|
|
|
Returns
|
|
-------
|
|
model : nn.Module
|
|
Pretrained model
|
|
"""
|
|
url_to_pretrained = _get_dgl_url(model_postfix)
|
|
local_pretrained_path = '_'.join([model_name, local_pretrained_path])
|
|
download(url_to_pretrained, path=local_pretrained_path, log=log)
|
|
checkpoint = torch.load(local_pretrained_path, map_location='cpu')
|
|
model.load_state_dict(checkpoint['model_state_dict'])
|
|
|
|
if log:
|
|
print('Pretrained model loaded')
|
|
|
|
return model
|
|
|
|
@deprecated('Import it from dgllife.model instead.')
|
|
def load_pretrained(model_name, log=True):
|
|
"""Load a pretrained model
|
|
|
|
Parameters
|
|
----------
|
|
model_name : str
|
|
Currently supported options include
|
|
|
|
* ``'GCN_Tox21'``
|
|
* ``'GAT_Tox21'``
|
|
* ``'MGCN_Alchemy'``
|
|
* ``'SCHNET_Alchemy'``
|
|
* ``'MPNN_Alchemy'``
|
|
* ``'AttentiveFP_Aromaticity'``
|
|
* ``'DGMG_ChEMBL_canonical'``
|
|
* ``'DGMG_ChEMBL_random'``
|
|
* ``'DGMG_ZINC_canonical'``
|
|
* ``'DGMG_ZINC_random'``
|
|
* ``'JTNN_ZINC'``
|
|
|
|
log : bool
|
|
Whether to print progress for model loading
|
|
|
|
Returns
|
|
-------
|
|
model
|
|
"""
|
|
if model_name not in URL:
|
|
raise RuntimeError("Cannot find a pretrained model with name {}".format(model_name))
|
|
|
|
if model_name == 'GCN_Tox21':
|
|
model = GCNClassifier(in_feats=74,
|
|
gcn_hidden_feats=[64, 64],
|
|
classifier_hidden_feats=64,
|
|
n_tasks=12)
|
|
|
|
elif model_name == 'GAT_Tox21':
|
|
model = GATClassifier(in_feats=74,
|
|
gat_hidden_feats=[32, 32],
|
|
num_heads=[4, 4],
|
|
classifier_hidden_feats=64,
|
|
n_tasks=12)
|
|
|
|
elif model_name.startswith('DGMG'):
|
|
if model_name.startswith('DGMG_ChEMBL'):
|
|
atom_types = ['O', 'Cl', 'C', 'S', 'F', 'Br', 'N']
|
|
elif model_name.startswith('DGMG_ZINC'):
|
|
atom_types = ['Br', 'S', 'C', 'P', 'N', 'O', 'F', 'Cl', 'I']
|
|
bond_types = [Chem.rdchem.BondType.SINGLE,
|
|
Chem.rdchem.BondType.DOUBLE,
|
|
Chem.rdchem.BondType.TRIPLE]
|
|
|
|
model = DGMG(atom_types=atom_types,
|
|
bond_types=bond_types,
|
|
node_hidden_size=128,
|
|
num_prop_rounds=2,
|
|
dropout=0.2)
|
|
|
|
elif model_name == 'MGCN_Alchemy':
|
|
model = MGCNModel(norm=True, output_dim=12)
|
|
|
|
elif model_name == 'SCHNET_Alchemy':
|
|
model = SchNet(norm=True, output_dim=12)
|
|
|
|
elif model_name == 'MPNN_Alchemy':
|
|
model = MPNNModel(output_dim=12)
|
|
|
|
elif model_name == 'AttentiveFP_Aromaticity':
|
|
model = AttentiveFP(node_feat_size=39,
|
|
edge_feat_size=10,
|
|
num_layers=2,
|
|
num_timesteps=2,
|
|
graph_feat_size=200,
|
|
output_size=1,
|
|
dropout=0.2)
|
|
|
|
elif model_name == "JTNN_ZINC":
|
|
default_dir = get_download_dir()
|
|
vocab_file = '{}/jtnn/{}.txt'.format(default_dir, 'vocab')
|
|
if not os.path.exists(vocab_file):
|
|
zip_file_path = '{}/jtnn.zip'.format(default_dir)
|
|
download(_get_dgl_url('dgllife/jtnn.zip'), path=zip_file_path)
|
|
extract_archive(zip_file_path, '{}/jtnn'.format(default_dir))
|
|
model = DGLJTNNVAE(vocab_file=vocab_file,
|
|
depth=3,
|
|
hidden_size=450,
|
|
latent_size=56)
|
|
|
|
return download_and_load_checkpoint(model_name, model, URL[model_name], log=log)
|