GraphLand Baselines
October 29, 2025 · View on GitHub
This repository provides the code for reproducing the results of graph foundation models and tabular baselines in the paper GraphLand: Evaluating Graph Machine Learning Models on Diverse Industrial Data.
Code
In source directory, one can find the source code for reproducing experiments in our paper. Each subdirectory is adapted from the corresponding open source repository:
gbdt— github.com/yandex-research/tabular-dl-tabranygraph— github.com/HKUDS/AnyGraphopengraph— github.com/HKUDS/OpenGraphtsgnn— github.com/benfinkelshtein/EquivarianceEverywheregcope— github.com/cshhzhao/GCOPE
Environment
To install the enviroment suitable for all the considered baselines, do the following:
-
Install pixi according to https://pixi.sh/dev/installation/
-
Run
pixi installto install the dependencies listed inpixi.toml
Datasets
-
Download GraphLand datasets and unzip them into
datasetsdirectory -
Run
pixi run python scripts/nfa.pyto prepare NFA features -
Run
pixi run python scripts/convert.pyto convert datasets into the format required by each baseline
Experiments
- Change working directory to the specific baseline repository:
# for GBDT
cd source/gbdt
# for AnyGraph
cd source/anygraph/node_classification
# for OpenGraph
cd source/opengraph/node_classification
# for TS-GNN
cd source/tsgnn
# for GCOPE
cd source/gcope
- Run the script:
pixi run python __run.py