diff --git a/docs/source/notes/other.rst b/docs/source/notes/other.rst
index be36b8d..89d795f 100644
--- a/docs/source/notes/other.rst
+++ b/docs/source/notes/other.rst
@@ -4,4 +4,5 @@ Other Resources
* **PyTorch Geometric** - PyTorch Geometric is a geometric deep learning extension library for `PyTorch `_ [`Paper `__, `GitHub `__, `Documentation `__]
* **SNAP** - A general purpose network analysis and graph mining library [`Paper `__, `GitHub `__, `Documentation `__]
* **NetworkX** - A Python package for the creation, manipulation, and study of the structure, dynamics, and functions of complex networks [`Paper `__, `GitHub `__, `Documentation `__]
-* **CS224W** - Stanford Machine Learning with Graphs (Winter 2021) [`Website `__]
\ No newline at end of file
+* **CS224W** - Stanford Machine Learning with Graphs (Winter 2021) [`Website `__]
+* **GraphGym** - GraphGym is a platform for designing and evaluating Graph Neural Networks (GNNs) [`Paper `__, `GitHub `__]
\ No newline at end of file
diff --git a/examples/graph_classification/README.md b/examples/graph_classification/README.md
index bc51679..6cc37e4 100644
--- a/examples/graph_classification/README.md
+++ b/examples/graph_classification/README.md
@@ -2,7 +2,7 @@
* [Graph classification on TU (graph backend)](graph_classification_TU.py): Graph classification on the TU dataset graphs using the NetworkX as the DeepSNAP graph manipulation backend.
* [Graph classification on TU (tensor backend)](graph_classification_TU_tensor.py): Graph classification on the TU dataset graphs only using tensors as the DeepSNAP graph manipulation backend.
-* [Graph classification on TU (transformation)](graph_classification_TU_transform.py): Graph classification on the TU dataset graphs with transformations.
+* [Graph classification on TU (transformation)](graph_classification_TU_transform.py): Graph classification on the TU dataset graphs with transformations. For more graph classification with transformation examples, please see the [GraphGym](https://github.com/snap-stanford/GraphGym).
## Training