# Run the main file (at the root of the project)
python main_molecules_graph_regression.py --config 'configs/molecules_GraphTransformer_LapPE_ZINC_500k_sparse_graph_BN.json' # for CPU
python main_molecules_graph_regression.py --gpu_id 0 --config 'configs/molecules_GraphTransformer_LapPE_ZINC_500k_sparse_graph_BN.json' # for GPU
The training and network parameters for each experiment is stored in a json file in the configs/
directory.
Output results are located in the folder defined by the variable out_dir
in the corresponding config file (eg. configs/molecules_GraphTransformer_LapPE_ZINC_500k_sparse_graph_BN.json
file).
If out_dir = 'out/ZINC_sparse_LapPE_BN/'
, then
- Go to
out/ZINC_sparse_LapPE_BN/results
to view all result text files. - Directory
out/ZINC_sparse_LapPE_BN/checkpoints
contains model checkpoints.
- Go to the logs directory, i.e.
out/ZINC_sparse_LapPE_BN/logs/
. - Run the commands
source activate graph_transformer
tensorboard --logdir='./' --port 6006
- Open
http://localhost:6006
in your browser. Note that the port information (here 6006 but it may change) appears on the terminal immediately after starting tensorboard.
- Go to the logs directory, i.e.
out/ZINC_sparse_LapPE_BN/logs/
. - Run the script with
bash script_tensorboard.sh
. - On your local machine, run the command
ssh -N -f -L localhost:6006:localhost:6006 user@xx.xx.xx.xx
. - Open
http://localhost:6006
in your browser. Note thatuser@xx.xx.xx.xx
corresponds to your user login and the IP of the remote machine.
# At the root of the project
# reproduce main results (Table 1 in paper)
bash scripts/ZINC/script_main_molecules_graph_regression_ZINC_500k.sh
bash scripts/SBMs/script_main_SBMs_node_classification_CLUSTER_500k.sh
bash scripts/SBMs/script_main_SBMs_node_classification_PATTERN_500k.sh
# reproduce WL-PE ablation results (Table 3 in paper)
bash scripts/ZINC/script_main_molecules_graph_regression_ZINC_500k_WL_ablation.sh
bash scripts/SBMs/script_main_SBMs_node_classification_CLUSTER_500k_WL_ablation.sh
bash scripts/SBMs/script_main_SBMs_node_classification_PATTERN_500k_WL_ablation.sh
Scripts are located at the scripts/
directory of the repository.
After running a script, statistics (mean and standard variation) can be generated from a notebook. For example, after running the script scripts/ZINC/script_main_molecules_graph_regression_ZINC_500k.sh
, go to the results folder out/ZINC_sparse_LapPE_LN/results/
, and run the notebook scripts/StatisticalResults/generate_statistics_molecules_graph_regression_ZINC.ipynb
to generate the statistics.