forked from graphdeeplearning/benchmarking-gnns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
script_one_code_to_rull_them_all.sh
192 lines (149 loc) · 10.6 KB
/
script_one_code_to_rull_them_all.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
#!/bin/bash
# bash script_one_code_to_rull_them_all.sh
tmux new -s benchmark_script -d
tmux send-keys "source activate benchmark_gnn" C-m
seed0=41
############
# TU
############
code=main_TUs_graph_classification.py
dataset=ENZYMES
tmux send-keys "
python $code --dataset $dataset --gpu_id 0 --seed $seed0 --config 'configs/TUs_graph_classification_MLP_ENZYMES.json' &
python $code --dataset $dataset --gpu_id 0 --seed $seed0 --config 'configs/TUs_graph_classification_MLP_GATED_ENZYMES.json' &
python $code --dataset $dataset --gpu_id 1 --seed $seed0 --config 'configs/TUs_graph_classification_GIN_ENZYMES.json' &
python $code --dataset $dataset --gpu_id 2 --seed $seed0 --config 'configs/TUs_graph_classification_GCN_ENZYMES.json' &
python $code --dataset $dataset --gpu_id 3 --seed $seed0 --config 'configs/TUs_graph_classification_GraphSage_ENZYMES.json' &
wait" C-m
tmux send-keys "
python $code --dataset $dataset --gpu_id 0 --seed $seed0 --config 'configs/TUs_graph_classification_GatedGCN_ENZYMES.json' &
python $code --dataset $dataset --gpu_id 1 --seed $seed0 --config 'configs/TUs_graph_classification_GAT_ENZYMES.json' &
python $code --dataset $dataset --gpu_id 2 --seed $seed0 --config 'configs/TUs_graph_classification_DiffPool_ENZYMES.json' &
python $code --dataset $dataset --gpu_id 3 --seed $seed0 --config 'configs/TUs_graph_classification_MoNet_ENZYMES.json' &
wait" C-m
dataset=DD
tmux send-keys "
python $code --dataset $dataset --gpu_id 0 --seed $seed0 --config 'configs/TUs_graph_classification_MLP_DD.json' &
python $code --dataset $dataset --gpu_id 0 --seed $seed0 --config 'configs/TUs_graph_classification_MLP_GATED_DD.json' &
python $code --dataset $dataset --gpu_id 1 --seed $seed0 --config 'configs/TUs_graph_classification_GIN_DD.json' &
python $code --dataset $dataset --gpu_id 2 --seed $seed0 --config 'configs/TUs_graph_classification_GCN_DD.json' &
python $code --dataset $dataset --gpu_id 3 --seed $seed0 --config 'configs/TUs_graph_classification_GraphSage_DD.json' &
wait" C-m
tmux send-keys "
python $code --dataset $dataset --gpu_id 0 --seed $seed0 --config 'configs/TUs_graph_classification_GatedGCN_DD.json' &
python $code --dataset $dataset --gpu_id 1 --seed $seed0 --config 'configs/TUs_graph_classification_GAT_DD.json' &
python $code --dataset $dataset --gpu_id 2 --seed $seed0 --config 'configs/TUs_graph_classification_DiffPool_DD.json' &
python $code --dataset $dataset --gpu_id 3 --seed $seed0 --config 'configs/TUs_graph_classification_MoNet_DD.json' &
wait" C-m
dataset=PROTEINS_full
tmux send-keys "
python $code --dataset $dataset --gpu_id 0 --seed $seed0 --config 'configs/TUs_graph_classification_MLP_PROTEINS_full.json' &
python $code --dataset $dataset --gpu_id 0 --seed $seed0 --config 'configs/TUs_graph_classification_MLP_GATED_PROTEINS_full.json' &
python $code --dataset $dataset --gpu_id 1 --seed $seed0 --config 'configs/TUs_graph_classification_GIN_PROTEINS_full.json' &
python $code --dataset $dataset --gpu_id 2 --seed $seed0 --config 'configs/TUs_graph_classification_GCN_PROTEINS_full.json' &
python $code --dataset $dataset --gpu_id 3 --seed $seed0 --config 'configs/TUs_graph_classification_GraphSage_PROTEINS_full.json' &
wait" C-m
tmux send-keys "
python $code --dataset $dataset --gpu_id 0 --seed $seed0 --config 'configs/TUs_graph_classification_GatedGCN_PROTEINS_full.json' &
python $code --dataset $dataset --gpu_id 1 --seed $seed0 --config 'configs/TUs_graph_classification_GAT_PROTEINS_full.json' &
python $code --dataset $dataset --gpu_id 2 --seed $seed0 --config 'configs/TUs_graph_classification_DiffPool_PROTEINS_full.json' &
python $code --dataset $dataset --gpu_id 3 --seed $seed0 --config 'configs/TUs_graph_classification_MoNet_PROTEINS_full.json' &
wait" C-m
############
# ZINC
############
code=main_molecules_graph_regression.py
dataset=ZINC
tmux send-keys "
python $code --dataset $dataset --gpu_id 0 --seed $seed0 --config 'configs/molecules_graph_regression_MLP_ZINC.json' &
python $code --dataset $dataset --gpu_id 0 --seed $seed0 --config 'configs/molecules_graph_regression_MLP_GATED_ZINC.json' &
python $code --dataset $dataset --gpu_id 1 --seed $seed0 --config 'configs/molecules_graph_regression_GIN_ZINC.json' &
python $code --dataset $dataset --gpu_id 2 --seed $seed0 --config 'configs/molecules_graph_regression_GCN_ZINC.json' &
python $code --dataset $dataset --gpu_id 3 --seed $seed0 --config 'configs/molecules_graph_regression_GraphSage_ZINC.json' &
wait" C-m
tmux send-keys "
python $code --dataset $dataset --gpu_id 0 --seed $seed0 --config 'configs/molecules_graph_regression_GatedGCN_ZINC.json' &
python $code --dataset $dataset --gpu_id 1 --seed $seed0 --config 'configs/molecules_graph_regression_GAT_ZINC.json' &
python $code --dataset $dataset --gpu_id 2 --seed $seed0 --config 'configs/molecules_graph_regression_DiffPool_ZINC.json' &
python $code --dataset $dataset --gpu_id 3 --seed $seed0 --config 'configs/molecules_graph_regression_MoNet_ZINC.json' &
wait" C-m
############
# MNIST and CIFAR10
############
code=main_superpixels_graph_classification.py
dataset=MNIST
tmux send-keys "
python $code --dataset $dataset --gpu_id 0 --seed $seed0 --config 'configs/superpixels_graph_classification_MLP_MNIST.json' &
python $code --dataset $dataset --gpu_id 0 --seed $seed0 --config 'configs/superpixels_graph_classification_MLP_GATED_MNIST.json' &
python $code --dataset $dataset --gpu_id 1 --seed $seed0 --config 'configs/superpixels_graph_classification_GIN_MNIST.json' &
python $code --dataset $dataset --gpu_id 2 --seed $seed0 --config 'configs/superpixels_graph_classification_GCN_MNIST.json' &
python $code --dataset $dataset --gpu_id 3 --seed $seed0 --config 'configs/superpixels_graph_classification_GraphSage_MNIST.json' &
wait" C-m
tmux send-keys "
python $code --dataset $dataset --gpu_id 0 --seed $seed0 --config 'configs/superpixels_graph_classification_GatedGCN_MNIST.json' &
python $code --dataset $dataset --gpu_id 1 --seed $seed0 --config 'configs/superpixels_graph_classification_GAT_MNIST.json' &
python $code --dataset $dataset --gpu_id 2 --seed $seed0 --config 'configs/superpixels_graph_classification_DiffPool_MNIST.json' &
python $code --dataset $dataset --gpu_id 3 --seed $seed0 --config 'configs/superpixels_graph_classification_MoNet_MNIST.json' &
wait" C-m
dataset=CIFAR10
tmux send-keys "
python $code --dataset $dataset --gpu_id 0 --seed $seed0 --config 'configs/superpixels_graph_classification_MLP_CIFAR10.json' &
python $code --dataset $dataset --gpu_id 0 --seed $seed0 --config 'configs/superpixels_graph_classification_MLP_GATED_CIFAR10.json' &
python $code --dataset $dataset --gpu_id 1 --seed $seed0 --config 'configs/superpixels_graph_classification_GIN_CIFAR10.json' &
python $code --dataset $dataset --gpu_id 2 --seed $seed0 --config 'configs/superpixels_graph_classification_GCN_CIFAR10.json' &
python $code --dataset $dataset --gpu_id 3 --seed $seed0 --config 'configs/superpixels_graph_classification_GraphSage_CIFAR10.json' &
wait" C-m
tmux send-keys "
python $code --dataset $dataset --gpu_id 0 --seed $seed0 --config 'configs/superpixels_graph_classification_GatedGCN_CIFAR10.json' &
python $code --dataset $dataset --gpu_id 1 --seed $seed0 --config 'configs/superpixels_graph_classification_GAT_CIFAR10.json' &
python $code --dataset $dataset --gpu_id 2 --seed $seed0 --config 'configs/superpixels_graph_classification_DiffPool_CIFAR10.json' &
python $code --dataset $dataset --gpu_id 3 --seed $seed0 --config 'configs/superpixels_graph_classification_MoNet_CIFAR10.json' &
wait" C-m
############
# PATTERN and CLUSTER
############
code=main_SBMs_node_classification.py
dataset=SBM_PATTERN
tmux send-keys "
python $code --dataset $dataset --gpu_id 0 --seed $seed0 --config 'configs/SBMs_node_clustering_MLP_PATTERN.json' &
python $code --dataset $dataset --gpu_id 1 --seed $seed0 --config 'configs/SBMs_node_clustering_MLP_GATED_PATTERN.json' &
python $code --dataset $dataset --gpu_id 2 --seed $seed0 --config 'configs/SBMs_node_clustering_GIN_PATTERN.json' &
python $code --dataset $dataset --gpu_id 3 --seed $seed0 --config 'configs/SBMs_node_clustering_GCN_PATTERN.json' &
wait" C-m
tmux send-keys "
python $code --dataset $dataset --gpu_id 0 --seed $seed0 --config 'configs/SBMs_node_clustering_GraphSage_PATTERN.json' &
python $code --dataset $dataset --gpu_id 1 --seed $seed0 --config 'configs/SBMs_node_clustering_GatedGCN_PATTERN.json' &
python $code --dataset $dataset --gpu_id 2 --seed $seed0 --config 'configs/SBMs_node_clustering_GAT_PATTERN.json' &
python $code --dataset $dataset --gpu_id 3 --seed $seed0 --config 'configs/SBMs_node_clustering_MoNet_PATTERN.json' &
wait" C-m
dataset=SBM_CLUSTER
tmux send-keys "
python $code --dataset $dataset --gpu_id 0 --seed $seed0 --config 'configs/SBMs_node_clustering_MLP_CLUSTER.json' &
python $code --dataset $dataset --gpu_id 1 --seed $seed0 --config 'configs/SBMs_node_clustering_MLP_GATED_CLUSTER.json' &
python $code --dataset $dataset --gpu_id 2 --seed $seed0 --config 'configs/SBMs_node_clustering_GIN_CLUSTER.json' &
python $code --dataset $dataset --gpu_id 3 --seed $seed0 --config 'configs/SBMs_node_clustering_GCN_CLUSTER.json' &
wait" C-m
tmux send-keys "
python $code --dataset $dataset --gpu_id 0 --seed $seed0 --config 'configs/SBMs_node_clustering_GraphSage_CLUSTER.json' &
python $code --dataset $dataset --gpu_id 1 --seed $seed0 --config 'configs/SBMs_node_clustering_GatedGCN_CLUSTER.json' &
python $code --dataset $dataset --gpu_id 2 --seed $seed0 --config 'configs/SBMs_node_clustering_GAT_CLUSTER.json' &
python $code --dataset $dataset --gpu_id 3 --seed $seed0 --config 'configs/SBMs_node_clustering_MoNet_CLUSTER.json' &
wait" C-m
############
# TSP
############
code=main_TSP_edge_classification.py
dataset=TSP
tmux send-keys "
python $code --dataset $dataset --gpu_id 0 --seed $seed0 --config 'configs/TSP_edge_classification_MLP.json' &
python $code --dataset $dataset --gpu_id 1 --seed $seed0 --config 'configs/TSP_edge_classification_MLP_GATED.json' &
python $code --dataset $dataset --gpu_id 2 --seed $seed0 --config 'configs/TSP_edge_classification_GIN.json' &
python $code --dataset $dataset --gpu_id 3 --seed $seed0 --config 'configs/TSP_edge_classification_GCN.json' &
wait" C-m
tmux send-keys "
python $code --dataset $dataset --gpu_id 0 --seed $seed0 --config 'configs/TSP_edge_classification_GraphSage.json' &
python $code --dataset $dataset --gpu_id 1 --seed $seed0 --config 'configs/TSP_edge_classification_GatedGCN.json' &
python $code --dataset $dataset --gpu_id 2 --seed $seed0 --config 'configs/TSP_edge_classification_GAT.json' &
python $code --dataset $dataset --gpu_id 3 --seed $seed0 --config 'configs/TSP_edge_classification_MoNet.json' &
wait" C-m
tmux send-keys "tmux kill-session -t benchmark_script" C-m