Implementations of graph neural networks for molecular machine learning
Project description
MolGraph: Graph Neural Networks for Molecular Machine Learning
This is an early release; things are still being updated, added and experimented with. Hence, API compatibility may break in the future.
Important update*: I am currently working on migrating the current GraphTensor
to the tf.experimental.ExtensionType API (v0.6.0). Although this will likely break some user code, it is a worthwhile investment: as we no longer need to rely on internal TF modules (which aren't supposed to be used) and instead rely on a more robust, reliable and maintainable public API.*
Paper
See arXiv
Documentation
See readthedocs
Implementations
-
Graph tensor (GraphTensor)
- A composite tensor holding graph data.
- Has a ragged (multiple graphs) and a non-ragged state (single disjoint graph)
- Can conveniently go between both states (merge(), separate())
- Can propagate node information (features) based on edges (propagate())
- Can add, update and remove graph data (update(), remove())
- Has an associated GraphTensorSpec which makes it compatible with Keras and TensorFlow API.
- This includes keras.Sequential, keras.Functional, tf.data.Dataset, and tf.saved_model API.
-
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:
- DGIN
- DMPNN
- MPNN
- 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:
Changelog
For a detailed list of changes, see the CHANGELOG.md.
Requirements/dependencies
- Python (version >= 3.6 recommended)
- TensorFlow (version >= 2.13.0 recommended)
- RDKit (version >= 2022.3.3 recommended)
- Pandas (version >= 1.0.3 recommended)
- IPython (version == 8.12.0 recommended)
Installation
Install via pip:
pip install molgraph
Install via docker:
git clone https://github.com/akensert/molgraph.git cd molgraph/docker docker build -t molgraph-tf[-gpu][-jupyter]/molgraph:0.0 molgraph-tf[-gpu][-jupyter]/ docker run -it [-p 8888:8888] molgraph-tf[-gpu][-jupyter]/molgraph:0.0
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
qm7 = 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(qm7['train']['x'])
y_train = qm7['train']['y']
x_test = encoder(qm7['test']['x'])
y_test = qm7['test']['y']
# Build model via Keras API
gnn_model = keras.Sequential([
keras.layers.Input(type_spec=x_train.spec),
layers.GATConv(name='gat_conv_1'),
layers.GATConv(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)
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
Built Distribution
File details
Details for the file molgraph-0.5.8.tar.gz
.
File metadata
- Download URL: molgraph-0.5.8.tar.gz
- Upload date:
- Size: 111.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0abacb387ae6a538759dcc7c6818d76d83be5f64d7490e661c7e0b8081c8080b |
|
MD5 | 57d2e6e0d190a8ae65bd6a5abea7503c |
|
BLAKE2b-256 | d3f8575e9904a4c0566e90f6c4f5e646198ba8e91a166f272657b696dc29cb24 |
File details
Details for the file molgraph-0.5.8-py3-none-any.whl
.
File metadata
- Download URL: molgraph-0.5.8-py3-none-any.whl
- Upload date:
- Size: 193.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a32d9d40514eef639a5460c4591f83f3a34a76a3682c1539f65c30dbbacfcf13 |
|
MD5 | 7435f04d566571700ab9f45a2174f8d4 |
|
BLAKE2b-256 | 4d4181305f7099788897ce386176f639927dfb1ebeb3d5788e081470e1431019 |