├── README.md ├── code ├── aug.py ├── best_citeseer.pkl ├── best_computer.pkl ├── best_cora.pkl ├── best_photo.pkl ├── main.py ├── model.py └── utils.py └── data ├── amazon_co_buy_computer ├── amazon_co_buy_computer.npz └── dgl_graph_v1.bin ├── amazon_co_buy_photo ├── amazon_co_buy_photo.npz └── dgl_graph_v1.bin ├── citeseer ├── citeseer_dgl_graph.bin ├── citeseer_dgl_graph.pkl ├── ind.citeseer.allx ├── ind.citeseer.ally ├── ind.citeseer.graph ├── ind.citeseer.test.index ├── ind.citeseer.tx ├── ind.citeseer.ty ├── ind.citeseer.x └── ind.citeseer.y └── cora_v2 ├── cora_v2_dgl_graph.bin ├── cora_v2_dgl_graph.pkl ├── ind.cora_v2.allx ├── ind.cora_v2.ally ├── ind.cora_v2.graph ├── ind.cora_v2.test.index ├── ind.cora_v2.tx ├── ind.cora_v2.ty ├── ind.cora_v2.x └── ind.cora_v2.y /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/README.md -------------------------------------------------------------------------------- /code/aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/code/aug.py -------------------------------------------------------------------------------- /code/best_citeseer.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/code/best_citeseer.pkl -------------------------------------------------------------------------------- /code/best_computer.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/code/best_computer.pkl -------------------------------------------------------------------------------- /code/best_cora.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/code/best_cora.pkl -------------------------------------------------------------------------------- /code/best_photo.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/code/best_photo.pkl -------------------------------------------------------------------------------- /code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/code/main.py -------------------------------------------------------------------------------- /code/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/code/model.py -------------------------------------------------------------------------------- /code/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/code/utils.py -------------------------------------------------------------------------------- /data/amazon_co_buy_computer/amazon_co_buy_computer.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/data/amazon_co_buy_computer/amazon_co_buy_computer.npz -------------------------------------------------------------------------------- /data/amazon_co_buy_computer/dgl_graph_v1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/data/amazon_co_buy_computer/dgl_graph_v1.bin -------------------------------------------------------------------------------- /data/amazon_co_buy_photo/amazon_co_buy_photo.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/data/amazon_co_buy_photo/amazon_co_buy_photo.npz -------------------------------------------------------------------------------- /data/amazon_co_buy_photo/dgl_graph_v1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/data/amazon_co_buy_photo/dgl_graph_v1.bin -------------------------------------------------------------------------------- /data/citeseer/citeseer_dgl_graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/data/citeseer/citeseer_dgl_graph.bin -------------------------------------------------------------------------------- /data/citeseer/citeseer_dgl_graph.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/data/citeseer/citeseer_dgl_graph.pkl -------------------------------------------------------------------------------- /data/citeseer/ind.citeseer.allx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/data/citeseer/ind.citeseer.allx -------------------------------------------------------------------------------- /data/citeseer/ind.citeseer.ally: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/data/citeseer/ind.citeseer.ally -------------------------------------------------------------------------------- /data/citeseer/ind.citeseer.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/data/citeseer/ind.citeseer.graph -------------------------------------------------------------------------------- /data/citeseer/ind.citeseer.test.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/data/citeseer/ind.citeseer.test.index -------------------------------------------------------------------------------- /data/citeseer/ind.citeseer.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/data/citeseer/ind.citeseer.tx -------------------------------------------------------------------------------- /data/citeseer/ind.citeseer.ty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/data/citeseer/ind.citeseer.ty -------------------------------------------------------------------------------- /data/citeseer/ind.citeseer.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/data/citeseer/ind.citeseer.x -------------------------------------------------------------------------------- /data/citeseer/ind.citeseer.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/data/citeseer/ind.citeseer.y -------------------------------------------------------------------------------- /data/cora_v2/cora_v2_dgl_graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/data/cora_v2/cora_v2_dgl_graph.bin -------------------------------------------------------------------------------- /data/cora_v2/cora_v2_dgl_graph.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/data/cora_v2/cora_v2_dgl_graph.pkl -------------------------------------------------------------------------------- /data/cora_v2/ind.cora_v2.allx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/data/cora_v2/ind.cora_v2.allx -------------------------------------------------------------------------------- /data/cora_v2/ind.cora_v2.ally: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/data/cora_v2/ind.cora_v2.ally -------------------------------------------------------------------------------- /data/cora_v2/ind.cora_v2.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/data/cora_v2/ind.cora_v2.graph -------------------------------------------------------------------------------- /data/cora_v2/ind.cora_v2.test.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/data/cora_v2/ind.cora_v2.test.index -------------------------------------------------------------------------------- /data/cora_v2/ind.cora_v2.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/data/cora_v2/ind.cora_v2.tx -------------------------------------------------------------------------------- /data/cora_v2/ind.cora_v2.ty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/data/cora_v2/ind.cora_v2.ty -------------------------------------------------------------------------------- /data/cora_v2/ind.cora_v2.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/data/cora_v2/ind.cora_v2.x -------------------------------------------------------------------------------- /data/cora_v2/ind.cora_v2.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUPT-GAMMA/Uncovering-the-Structural-Fairness-in-Graph-Contrastive-Learning/HEAD/data/cora_v2/ind.cora_v2.y --------------------------------------------------------------------------------