|
- PyG Documentation — pytorch_geometric documentation
PyG (PyTorch Geometric) is a library built upon PyTorch to easily write and train Graph Neural Networks (GNNs) for a wide range of applications related to structured data
- Introduction by Example — pytorch_geometric documentation
After learning about data handling, datasets, loader and transforms in PyG, it’s time to implement our first graph neural network! We will use a simple GCN layer and replicate the experiments on the Cora citation dataset
- Installation — pytorch_geometric documentation
For earlier PyTorch versions (torch<=2 5 0), you can install PyG via Anaconda for all major OS, and CUDA combinations If you have not yet installed PyTorch, install it via conda install as described in its official documentation
- Creating Message Passing Networks — pytorch_geometric documentation
PyG provides the MessagePassing base class, which helps in creating such kinds of message passing graph neural networks by automatically taking care of message propagation
- torch_geometric. nn — pytorch_geometric documentation
To facilitate further experimentation and unify the concepts of aggregation within GNNs across both MessagePassing and global readouts, we have made the concept of Aggregation a first-class principle in PyG
- Explaining Graph Neural Networks — pytorch_geometric documentation
PyG (2 3 and beyond) provides the torch_geometric explain package for first-class GNN explainability support that currently includes a flexible interface to generate a variety of explanations via the Explainer class, several underlying explanation algorithms including, e g , GNNExplainer, PGExplainer and CaptumExplainer,
- Design of Graph Neural Networks — pytorch_geometric documentation
CPU Affinity for PyG Workloads Package Reference torch_geometric torch_geometric nn torch_geometric data torch_geometric loader torch_geometric sampler torch_geometric datasets torch_geometric llm torch_geometric transforms torch_geometric utils torch_geometric explain torch_geometric metrics torch_geometric distributed torch_geometric contrib
- Colab Notebooks and Video Tutorials — pytorch_geometric documentation
The Stanford CS224W course has collected a set of graph machine learning tutorial blog posts, fully realized with PyG Students worked on projects spanning all kinds of tasks, model architectures and applications
|
|
|