├── .gitignore ├── LICENCE.txt ├── README.md ├── data ├── actor.npz ├── amazon_ratings.npz ├── chameleon.npz ├── chameleon_directed.npz ├── chameleon_filtered.npz ├── chameleon_filtered_directed.npz ├── cornell.npz ├── minesweeper.npz ├── questions.npz ├── roman_empire.npz ├── squirrel.npz ├── squirrel_directed.npz ├── squirrel_filtered.npz ├── squirrel_filtered_directed.npz ├── texas.npz ├── texas_4_classes.npz ├── tolokers.npz └── wisconsin.npz ├── datasets.py ├── environment.yml ├── model.py ├── modules.py ├── notebooks └── results.ipynb ├── scripts └── run_all_experiments.sh ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/README.md -------------------------------------------------------------------------------- /data/actor.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/data/actor.npz -------------------------------------------------------------------------------- /data/amazon_ratings.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/data/amazon_ratings.npz -------------------------------------------------------------------------------- /data/chameleon.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/data/chameleon.npz -------------------------------------------------------------------------------- /data/chameleon_directed.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/data/chameleon_directed.npz -------------------------------------------------------------------------------- /data/chameleon_filtered.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/data/chameleon_filtered.npz -------------------------------------------------------------------------------- /data/chameleon_filtered_directed.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/data/chameleon_filtered_directed.npz -------------------------------------------------------------------------------- /data/cornell.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/data/cornell.npz -------------------------------------------------------------------------------- /data/minesweeper.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/data/minesweeper.npz -------------------------------------------------------------------------------- /data/questions.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/data/questions.npz -------------------------------------------------------------------------------- /data/roman_empire.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/data/roman_empire.npz -------------------------------------------------------------------------------- /data/squirrel.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/data/squirrel.npz -------------------------------------------------------------------------------- /data/squirrel_directed.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/data/squirrel_directed.npz -------------------------------------------------------------------------------- /data/squirrel_filtered.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/data/squirrel_filtered.npz -------------------------------------------------------------------------------- /data/squirrel_filtered_directed.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/data/squirrel_filtered_directed.npz -------------------------------------------------------------------------------- /data/texas.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/data/texas.npz -------------------------------------------------------------------------------- /data/texas_4_classes.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/data/texas_4_classes.npz -------------------------------------------------------------------------------- /data/tolokers.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/data/tolokers.npz -------------------------------------------------------------------------------- /data/wisconsin.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/data/wisconsin.npz -------------------------------------------------------------------------------- /datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/datasets.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/environment.yml -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/model.py -------------------------------------------------------------------------------- /modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/modules.py -------------------------------------------------------------------------------- /notebooks/results.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/notebooks/results.ipynb -------------------------------------------------------------------------------- /scripts/run_all_experiments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/scripts/run_all_experiments.sh -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yandex-research/heterophilous-graphs/HEAD/utils.py --------------------------------------------------------------------------------