This project implements a Graph Neural Network (GNN) to predict molecular binding affinities, a crucial task in drug discovery. The solution combines cheminformatics (RDKit) with deep learning (PyTorch Geometric) to analyze molecular graphs.
GNN(
(conv1): GCNConv(5, 64)
(conv2): GCNConv(64, 64)
(fc): Linear(in_features=64, out_features=1)
)
๐ MSE: 0.0848
๐๏ธ Training Epochs: 1000
๐ป Hidden Channels: 64
Best Parameters:
- Hidden Channels: 128
- Learning Rate: 0.001
Achieved MSE: 0.0762
The GNN model demonstrates promising results in predicting binding affinities, achieving an MSE of 0.0848.
Future work includes: