Graph Neural Networks for Molecular Machine Learning
Project description
MolGraph
Graph Neural Networks with TensorFlow and Keras. Focused on Molecular Machine Learning.
Highlights
Build a Graph Neural Network with Keras' Sequential API:
from molgraph import GraphTensor
from molgraph import layers
from tensorflow import keras
model = keras.Sequential([
layers.GINConv(units=32),
layers.GINConv(units=32),
layers.Readout(),
keras.layers.Dense(units=1),
])
output = model(
GraphTensor(node_feature=[[4.], [2.]], edge_src=[0], edge_dst=[1])
)
Paper
See arXiv
Documentation
See readthedocs
Implementations
- Graph tensor (GraphTensor)
- A composite tensor holding graph data.
- Has a ragged state (multiple graphs) and a non-ragged state (single disjoint graph).
- Can conveniently go between both states (merge(), separate()).
- Can propagate node states (features) based on edges (propagate()).
- Can add, update and remove graph data (update(), remove()).
- Compatible with TensorFlow's APIs (including Keras). For instance, graph data (encoded as a GraphTensor) can now seamlessly be used with keras.Sequential, keras.Functional, tf.data.Dataset, and tf.saved_model APIs.
- Layers
- Convolutional
- GCNConv (GCNConv)
- GINConv (GINConv)
- GCNIIConv (GCNIIConv)
- GraphSageConv (GraphSageConv)
- Attentional
- GATConv (GATConv)
- GATv2Conv (GATv2Conv)
- GTConv (GTConv)
- GMMConv (GMMConv)
- GatedGCNConv (GatedGCNConv)
- AttentiveFPConv (AttentiveFPConv)
- Message-passing
- Distance-geometric
- Pre- and post-processing
- In addition to the aforementioned GNN layers, there are also several other layers which improves model-building. See readout/, preprocessing/, postprocessing/, positional_encoding/.
- Convolutional
- Models
- Although model building is easy with MolGraph, there are some built-in GNN models:
- GIN
- MPNN
- DMPNN
- And models for improved interpretability of GNNs:
- SaliencyMapping
- IntegratedSaliencyMapping
- SmoothGradSaliencyMapping
- GradientActivationMapping (Recommended)
- Although model building is easy with MolGraph, there are some built-in GNN models:
Requirements/dependencies
- Python (version >= 3.10)
- TensorFlow (version 2.15.*)
- RDKit (version 2023.9.*)
- Pandas
- IPython
Installation
For CPU users:
pip install molgraph
For GPU users:
pip install molgraph[gpu]
Now run your first program with MolGraph:
from tensorflow import keras
from molgraph import chemistry
from molgraph import layers
from molgraph import models
# Obtain dataset, specifically ESOL
esol = chemistry.datasets.get('esol')
# Define molecular graph encoder
atom_encoder = chemistry.Featurizer([
chemistry.features.Symbol(),
chemistry.features.Hybridization(),
# ...
])
bond_encoder = chemistry.Featurizer([
chemistry.features.BondType(),
# ...
])
encoder = chemistry.MolecularGraphEncoder(atom_encoder, bond_encoder)
# Obtain graphs and associated labels
x_train = encoder(esol['train']['x'])
y_train = esol['train']['y']
x_test = encoder(esol['test']['x'])
y_test = esol['test']['y']
# Build model via Keras API
gnn_model = keras.Sequential([
keras.layers.Input(type_spec=x_train.spec),
layers.GATConv(units=32, name='gat_conv_1'),
layers.GATConv(units=32, name='gat_conv_2'),
layers.Readout(),
keras.layers.Dense(units=1024, activation='relu'),
keras.layers.Dense(units=y_train.shape[-1])
])
# Compile, fit and evaluate
gnn_model.compile(optimizer='adam', loss='mae')
gnn_model.fit(x_train, y_train, epochs=50)
scores = gnn_model.evaluate(x_test, y_test)
# Compute gradient activation maps
gam_model = models.GradientActivationMapping(
model=gnn_model, layer_names=['gat_conv_1', 'gat_conv_2'])
maps = gam_model(x_train.separate())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
molgraph-0.6.7.tar.gz
(110.3 kB
view details)
Built Distribution
molgraph-0.6.7-py3-none-any.whl
(197.4 kB
view details)
File details
Details for the file molgraph-0.6.7.tar.gz
.
File metadata
- Download URL: molgraph-0.6.7.tar.gz
- Upload date:
- Size: 110.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7ad4dd051c1345a2aa684aaa41f2f84fb66d19e6281fd1f57e36b4035500e929 |
|
MD5 | ecb482abb0016b5ec23b145f83119e7b |
|
BLAKE2b-256 | 745e9cec6884fac6dadc370a732e1293feeef703642f2ce26bb29fa16a383aa1 |
File details
Details for the file molgraph-0.6.7-py3-none-any.whl
.
File metadata
- Download URL: molgraph-0.6.7-py3-none-any.whl
- Upload date:
- Size: 197.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3649945afece7f9884dc5c3f256e14073384ff9c46246748c658023ea5e9b013 |
|
MD5 | b0a3e2c401d49f58e29a248ecebddabe |
|
BLAKE2b-256 | e906518ee774c914bb8430666ca59d95b952fb6d924f18ca1ac373b903a7d18b |