├── README.md ├── data ├── Enron │ ├── eval_14.npz │ ├── graph.pkl │ └── train_pairs_n2v_14.pkl └── email_uci │ ├── features.npz │ ├── graph.pkl │ ├── graphs.npz │ └── graphs.pkl ├── eval └── link_prediction.py ├── model_checkpoints └── model.pt ├── models ├── __init__.py ├── layers.py └── model.py ├── raw_data └── Enron │ ├── process.py │ ├── vis.digraph.allEdges.json │ └── vis.graph.nodeList.json ├── requirements.txt ├── train.py └── utils ├── __init__.py ├── minibatch.py ├── preprocess.py ├── random_walk.py └── utilities.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeiGSSS/DySAT_pytorch/HEAD/README.md -------------------------------------------------------------------------------- /data/Enron/eval_14.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeiGSSS/DySAT_pytorch/HEAD/data/Enron/eval_14.npz -------------------------------------------------------------------------------- /data/Enron/graph.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeiGSSS/DySAT_pytorch/HEAD/data/Enron/graph.pkl -------------------------------------------------------------------------------- /data/Enron/train_pairs_n2v_14.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeiGSSS/DySAT_pytorch/HEAD/data/Enron/train_pairs_n2v_14.pkl -------------------------------------------------------------------------------- /data/email_uci/features.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeiGSSS/DySAT_pytorch/HEAD/data/email_uci/features.npz -------------------------------------------------------------------------------- /data/email_uci/graph.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeiGSSS/DySAT_pytorch/HEAD/data/email_uci/graph.pkl -------------------------------------------------------------------------------- /data/email_uci/graphs.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeiGSSS/DySAT_pytorch/HEAD/data/email_uci/graphs.npz -------------------------------------------------------------------------------- /data/email_uci/graphs.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeiGSSS/DySAT_pytorch/HEAD/data/email_uci/graphs.pkl -------------------------------------------------------------------------------- /eval/link_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeiGSSS/DySAT_pytorch/HEAD/eval/link_prediction.py -------------------------------------------------------------------------------- /model_checkpoints/model.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeiGSSS/DySAT_pytorch/HEAD/model_checkpoints/model.pt -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeiGSSS/DySAT_pytorch/HEAD/models/layers.py -------------------------------------------------------------------------------- /models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeiGSSS/DySAT_pytorch/HEAD/models/model.py -------------------------------------------------------------------------------- /raw_data/Enron/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeiGSSS/DySAT_pytorch/HEAD/raw_data/Enron/process.py -------------------------------------------------------------------------------- /raw_data/Enron/vis.digraph.allEdges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeiGSSS/DySAT_pytorch/HEAD/raw_data/Enron/vis.digraph.allEdges.json -------------------------------------------------------------------------------- /raw_data/Enron/vis.graph.nodeList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeiGSSS/DySAT_pytorch/HEAD/raw_data/Enron/vis.graph.nodeList.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeiGSSS/DySAT_pytorch/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeiGSSS/DySAT_pytorch/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/minibatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeiGSSS/DySAT_pytorch/HEAD/utils/minibatch.py -------------------------------------------------------------------------------- /utils/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeiGSSS/DySAT_pytorch/HEAD/utils/preprocess.py -------------------------------------------------------------------------------- /utils/random_walk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeiGSSS/DySAT_pytorch/HEAD/utils/random_walk.py -------------------------------------------------------------------------------- /utils/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeiGSSS/DySAT_pytorch/HEAD/utils/utilities.py --------------------------------------------------------------------------------