Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions examples/diffpool/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Differentiable Pooling

- Paper link: [https://arxiv.org/abs/1806.08804]( https://arxiv.org/abs/1806.08804)
- Author's code repo: [https://github.com/RexYing/diffpool](https://github.com/RexYing/diffpool). Note that the original code is
implemented with Pytorch for the paper.

# Dataset Statics

| Dataset | # Graphs | # Edges | # Avg of graph size |
|---------|----------|---------|---------------------|
| syn1v2 | 1000 | 181067 | 49.23 |
| D&D | 1168 | 789819 | 268.70 |
| ENZYMES | 600 | 37282 | 32.46 |

Results
-------

```bash
python diffpool_trainer.py --dataset syn1v2 --num_pool 1 --epochs 50
python diffpool_trainer.py --bmname DD
```

| Dataset | Paper | Our(pytorch) | Our(tf) |
|---------|-------|--------------|---------|
| syn1v2 | - | 0.80 | |
| D&D | 81.15 | 79.31 | |
| ENZYMES | 64.23 | | |
Loading