From 695801225ebe38f9b03bfb74af2912c8df1a93ff Mon Sep 17 00:00:00 2001 From: hujunxianligong Date: Thu, 14 Jan 2021 04:05:54 +0800 Subject: [PATCH] Add Other Implementations to README --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 85ce55f..c654ba1 100644 --- a/README.md +++ b/README.md @@ -21,3 +21,15 @@ achieving a new state-of-the-art on four out of five benchmark data sets. Paper link: https://arxiv.org/pdf/1806.08804.pdf + + +## Other Implementations +Different implementations of DIFFPOOL can be found in the follwing libraries. Note that the hyperparameters may be different and therefore the results would be different from the paper reported ones. + + +- *tf_geometric*: [example](https://github.com/CrawlScript/tf_geometric/blob/master/demo/demo_diff_pool.py) +- *Deep Graph Library*: [example](https://github.com/dmlc/dgl/tree/master/examples/pytorch/diffpool). +- *PyTorch Geometric*: [example](https://github.com/rusty1s/pytorch_geometric/blob/master/examples/proteins_diff_pool.py). +- *Spektral*: [doc](https://graphneural.network/layers/pooling/#diffpool) + +