├── README.md ├── base_attack.py ├── dataset.py ├── illustration.png ├── main.py ├── models ├── gat.py ├── gcn.py └── graphsage.py ├── topology_attack.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaixizhang/GraphMI/HEAD/README.md -------------------------------------------------------------------------------- /base_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaixizhang/GraphMI/HEAD/base_attack.py -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaixizhang/GraphMI/HEAD/dataset.py -------------------------------------------------------------------------------- /illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaixizhang/GraphMI/HEAD/illustration.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaixizhang/GraphMI/HEAD/main.py -------------------------------------------------------------------------------- /models/gat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaixizhang/GraphMI/HEAD/models/gat.py -------------------------------------------------------------------------------- /models/gcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaixizhang/GraphMI/HEAD/models/gcn.py -------------------------------------------------------------------------------- /models/graphsage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaixizhang/GraphMI/HEAD/models/graphsage.py -------------------------------------------------------------------------------- /topology_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaixizhang/GraphMI/HEAD/topology_attack.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaixizhang/GraphMI/HEAD/utils.py --------------------------------------------------------------------------------