├── .DS_Store ├── .gitmodules ├── DGL-ogbn-arxiv ├── README.md ├── loss.py ├── mkteacher.py ├── models.py ├── node2vec_arxiv.py └── train_kd.py ├── DGL-ogbn-proteins ├── .DS_Store ├── README.md ├── gat.py ├── models.py ├── node2vec_proteins.py └── utils.py ├── LICENSE ├── README.md └── image ├── .DS_Store ├── Embedding.jpeg ├── Embedding.pdf ├── GCN_res_fig.jpeg ├── GCN_res_fig.pdf ├── ogbn-arxiv.png ├── ogbn-mag.png ├── ogbn-products.png ├── ogbn-proteins.png └── t-SNE.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/.gitmodules -------------------------------------------------------------------------------- /DGL-ogbn-arxiv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/DGL-ogbn-arxiv/README.md -------------------------------------------------------------------------------- /DGL-ogbn-arxiv/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/DGL-ogbn-arxiv/loss.py -------------------------------------------------------------------------------- /DGL-ogbn-arxiv/mkteacher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/DGL-ogbn-arxiv/mkteacher.py -------------------------------------------------------------------------------- /DGL-ogbn-arxiv/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/DGL-ogbn-arxiv/models.py -------------------------------------------------------------------------------- /DGL-ogbn-arxiv/node2vec_arxiv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/DGL-ogbn-arxiv/node2vec_arxiv.py -------------------------------------------------------------------------------- /DGL-ogbn-arxiv/train_kd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/DGL-ogbn-arxiv/train_kd.py -------------------------------------------------------------------------------- /DGL-ogbn-proteins/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/DGL-ogbn-proteins/.DS_Store -------------------------------------------------------------------------------- /DGL-ogbn-proteins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/DGL-ogbn-proteins/README.md -------------------------------------------------------------------------------- /DGL-ogbn-proteins/gat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/DGL-ogbn-proteins/gat.py -------------------------------------------------------------------------------- /DGL-ogbn-proteins/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/DGL-ogbn-proteins/models.py -------------------------------------------------------------------------------- /DGL-ogbn-proteins/node2vec_proteins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/DGL-ogbn-proteins/node2vec_proteins.py -------------------------------------------------------------------------------- /DGL-ogbn-proteins/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/DGL-ogbn-proteins/utils.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/README.md -------------------------------------------------------------------------------- /image/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/image/.DS_Store -------------------------------------------------------------------------------- /image/Embedding.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/image/Embedding.jpeg -------------------------------------------------------------------------------- /image/Embedding.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/image/Embedding.pdf -------------------------------------------------------------------------------- /image/GCN_res_fig.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/image/GCN_res_fig.jpeg -------------------------------------------------------------------------------- /image/GCN_res_fig.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/image/GCN_res_fig.pdf -------------------------------------------------------------------------------- /image/ogbn-arxiv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/image/ogbn-arxiv.png -------------------------------------------------------------------------------- /image/ogbn-mag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/image/ogbn-mag.png -------------------------------------------------------------------------------- /image/ogbn-products.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/image/ogbn-products.png -------------------------------------------------------------------------------- /image/ogbn-proteins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/image/ogbn-proteins.png -------------------------------------------------------------------------------- /image/t-SNE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ytchx1999/PyG-OGB-Tricks/HEAD/image/t-SNE.png --------------------------------------------------------------------------------