├── .gitignore ├── README.md ├── lp ├── README.md ├── arch.py ├── gen_neg.py ├── model.py ├── model_search.py ├── preprocess.py ├── preprocessed │ ├── Amazon │ │ ├── adjs_offset.pkl │ │ ├── neg_pairs_offset.npz │ │ ├── node_types.npy │ │ └── pos_pairs_offset.npz │ ├── Douban_Movie │ │ ├── adjs_offset.pkl │ │ ├── neg_pairs_offset.npz │ │ ├── node_types.npy │ │ └── pos_pairs_offset.npz │ └── Yelp │ │ ├── adjs_offset.pkl │ │ ├── neg_pairs_offset.npz │ │ ├── node_types.npy │ │ └── pos_pairs_offset.npz ├── train.py └── train_search.py └── nc ├── README.md ├── arch.py ├── checkpoint ├── ACM.pt ├── DBLP.pt └── IMDB.pt ├── data └── DBLP │ ├── edges.pkl │ ├── labels.pkl │ ├── node_features.pkl │ └── node_types.npy ├── model.py ├── model_search.py ├── preprocess.py ├── test.py ├── train.py └── train_search.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/README.md -------------------------------------------------------------------------------- /lp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/lp/README.md -------------------------------------------------------------------------------- /lp/arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/lp/arch.py -------------------------------------------------------------------------------- /lp/gen_neg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/lp/gen_neg.py -------------------------------------------------------------------------------- /lp/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/lp/model.py -------------------------------------------------------------------------------- /lp/model_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/lp/model_search.py -------------------------------------------------------------------------------- /lp/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/lp/preprocess.py -------------------------------------------------------------------------------- /lp/preprocessed/Amazon/adjs_offset.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/lp/preprocessed/Amazon/adjs_offset.pkl -------------------------------------------------------------------------------- /lp/preprocessed/Amazon/neg_pairs_offset.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/lp/preprocessed/Amazon/neg_pairs_offset.npz -------------------------------------------------------------------------------- /lp/preprocessed/Amazon/node_types.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/lp/preprocessed/Amazon/node_types.npy -------------------------------------------------------------------------------- /lp/preprocessed/Amazon/pos_pairs_offset.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/lp/preprocessed/Amazon/pos_pairs_offset.npz -------------------------------------------------------------------------------- /lp/preprocessed/Douban_Movie/adjs_offset.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/lp/preprocessed/Douban_Movie/adjs_offset.pkl -------------------------------------------------------------------------------- /lp/preprocessed/Douban_Movie/neg_pairs_offset.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/lp/preprocessed/Douban_Movie/neg_pairs_offset.npz -------------------------------------------------------------------------------- /lp/preprocessed/Douban_Movie/node_types.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/lp/preprocessed/Douban_Movie/node_types.npy -------------------------------------------------------------------------------- /lp/preprocessed/Douban_Movie/pos_pairs_offset.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/lp/preprocessed/Douban_Movie/pos_pairs_offset.npz -------------------------------------------------------------------------------- /lp/preprocessed/Yelp/adjs_offset.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/lp/preprocessed/Yelp/adjs_offset.pkl -------------------------------------------------------------------------------- /lp/preprocessed/Yelp/neg_pairs_offset.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/lp/preprocessed/Yelp/neg_pairs_offset.npz -------------------------------------------------------------------------------- /lp/preprocessed/Yelp/node_types.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/lp/preprocessed/Yelp/node_types.npy -------------------------------------------------------------------------------- /lp/preprocessed/Yelp/pos_pairs_offset.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/lp/preprocessed/Yelp/pos_pairs_offset.npz -------------------------------------------------------------------------------- /lp/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/lp/train.py -------------------------------------------------------------------------------- /lp/train_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/lp/train_search.py -------------------------------------------------------------------------------- /nc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/nc/README.md -------------------------------------------------------------------------------- /nc/arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/nc/arch.py -------------------------------------------------------------------------------- /nc/checkpoint/ACM.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/nc/checkpoint/ACM.pt -------------------------------------------------------------------------------- /nc/checkpoint/DBLP.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/nc/checkpoint/DBLP.pt -------------------------------------------------------------------------------- /nc/checkpoint/IMDB.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/nc/checkpoint/IMDB.pt -------------------------------------------------------------------------------- /nc/data/DBLP/edges.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/nc/data/DBLP/edges.pkl -------------------------------------------------------------------------------- /nc/data/DBLP/labels.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/nc/data/DBLP/labels.pkl -------------------------------------------------------------------------------- /nc/data/DBLP/node_features.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/nc/data/DBLP/node_features.pkl -------------------------------------------------------------------------------- /nc/data/DBLP/node_types.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/nc/data/DBLP/node_types.npy -------------------------------------------------------------------------------- /nc/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/nc/model.py -------------------------------------------------------------------------------- /nc/model_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/nc/model_search.py -------------------------------------------------------------------------------- /nc/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/nc/preprocess.py -------------------------------------------------------------------------------- /nc/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/nc/test.py -------------------------------------------------------------------------------- /nc/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/nc/train.py -------------------------------------------------------------------------------- /nc/train_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LARS-research/DiffMG/HEAD/nc/train_search.py --------------------------------------------------------------------------------