├── .gitignore ├── Cluster_GT_N2C_L.py ├── Cluster_GT_N2C_T.py ├── N2C_Prop_L.py ├── N2C_Prop_T.py ├── ReadMe.md ├── data.py ├── dataset_transform.py ├── dataset_utils.py ├── datasets.zip ├── eval.py ├── figs └── N2CAttn.png ├── graph_partition.py ├── main.py ├── pe.py ├── wandb_script ├── agents.py ├── sweep.py └── wandb_main.py └── wandb_yamls ├── COLLAB.yaml ├── DD.yaml ├── IMDB_B.yaml ├── IMDB_M.yaml ├── MUTAG.yaml └── PROTEINS.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMIA-Group/Cluster-wise-Graph-Transformer/HEAD/.gitignore -------------------------------------------------------------------------------- /Cluster_GT_N2C_L.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMIA-Group/Cluster-wise-Graph-Transformer/HEAD/Cluster_GT_N2C_L.py -------------------------------------------------------------------------------- /Cluster_GT_N2C_T.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMIA-Group/Cluster-wise-Graph-Transformer/HEAD/Cluster_GT_N2C_T.py -------------------------------------------------------------------------------- /N2C_Prop_L.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMIA-Group/Cluster-wise-Graph-Transformer/HEAD/N2C_Prop_L.py -------------------------------------------------------------------------------- /N2C_Prop_T.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMIA-Group/Cluster-wise-Graph-Transformer/HEAD/N2C_Prop_T.py -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMIA-Group/Cluster-wise-Graph-Transformer/HEAD/ReadMe.md -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMIA-Group/Cluster-wise-Graph-Transformer/HEAD/data.py -------------------------------------------------------------------------------- /dataset_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMIA-Group/Cluster-wise-Graph-Transformer/HEAD/dataset_transform.py -------------------------------------------------------------------------------- /dataset_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMIA-Group/Cluster-wise-Graph-Transformer/HEAD/dataset_utils.py -------------------------------------------------------------------------------- /datasets.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMIA-Group/Cluster-wise-Graph-Transformer/HEAD/datasets.zip -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMIA-Group/Cluster-wise-Graph-Transformer/HEAD/eval.py -------------------------------------------------------------------------------- /figs/N2CAttn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMIA-Group/Cluster-wise-Graph-Transformer/HEAD/figs/N2CAttn.png -------------------------------------------------------------------------------- /graph_partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMIA-Group/Cluster-wise-Graph-Transformer/HEAD/graph_partition.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMIA-Group/Cluster-wise-Graph-Transformer/HEAD/main.py -------------------------------------------------------------------------------- /pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMIA-Group/Cluster-wise-Graph-Transformer/HEAD/pe.py -------------------------------------------------------------------------------- /wandb_script/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMIA-Group/Cluster-wise-Graph-Transformer/HEAD/wandb_script/agents.py -------------------------------------------------------------------------------- /wandb_script/sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMIA-Group/Cluster-wise-Graph-Transformer/HEAD/wandb_script/sweep.py -------------------------------------------------------------------------------- /wandb_script/wandb_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMIA-Group/Cluster-wise-Graph-Transformer/HEAD/wandb_script/wandb_main.py -------------------------------------------------------------------------------- /wandb_yamls/COLLAB.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMIA-Group/Cluster-wise-Graph-Transformer/HEAD/wandb_yamls/COLLAB.yaml -------------------------------------------------------------------------------- /wandb_yamls/DD.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMIA-Group/Cluster-wise-Graph-Transformer/HEAD/wandb_yamls/DD.yaml -------------------------------------------------------------------------------- /wandb_yamls/IMDB_B.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMIA-Group/Cluster-wise-Graph-Transformer/HEAD/wandb_yamls/IMDB_B.yaml -------------------------------------------------------------------------------- /wandb_yamls/IMDB_M.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMIA-Group/Cluster-wise-Graph-Transformer/HEAD/wandb_yamls/IMDB_M.yaml -------------------------------------------------------------------------------- /wandb_yamls/MUTAG.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMIA-Group/Cluster-wise-Graph-Transformer/HEAD/wandb_yamls/MUTAG.yaml -------------------------------------------------------------------------------- /wandb_yamls/PROTEINS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LUMIA-Group/Cluster-wise-Graph-Transformer/HEAD/wandb_yamls/PROTEINS.yaml --------------------------------------------------------------------------------