-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathrun.sh
200 lines (168 loc) · 12.7 KB
/
run.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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
#!/bin/bash
################################################################ CSL ################################################################
# MPGNN
CONFIG='train/configs/MPGNN/csl.yaml'
python -m train.csl --config $CONFIG device 0 model.gnn_type ResGatedGraphConv &
python -m train.csl --config $CONFIG device 1 model.gnn_type GINEConv &
python -m train.csl --config $CONFIG device 2 model.gnn_type GCNConv &
python -m train.csl --config $CONFIG device 3 model.gnn_type TransformerConv ;
# Graph MLPMixer
CONFIG='train/configs/GraphMLPMixer/csl.yaml'
python -m train.csl --config $CONFIG device 0 model.gnn_type ResGatedGraphConv &
python -m train.csl --config $CONFIG device 1 model.gnn_type GINEConv &
python -m train.csl --config $CONFIG device 2 model.gnn_type GCNConv &
python -m train.csl --config $CONFIG device 3 model.gnn_type TransformerConv ;
#######################################################################################################################################
################################################################ EXP ################################################################
# MPGNN
CONFIG='train/configs/MPGNN/exp.yaml'
python -m train.exp --config $CONFIG device 0 model.gnn_type ResGatedGraphConv &
python -m train.exp --config $CONFIG device 1 model.gnn_type GINEConv &
python -m train.exp --config $CONFIG device 2 model.gnn_type GCNConv &
python -m train.exp --config $CONFIG device 3 model.gnn_type TransformerConv ;
# Graph MLPMixer
CONFIG='train/configs/GraphMLPMixer/exp.yaml'
python -m train.exp --config $CONFIG device 0 model.gnn_type ResGatedGraphConv &
python -m train.exp --config $CONFIG device 1 model.gnn_type GINEConv &
python -m train.exp --config $CONFIG device 2 model.gnn_type GCNConv &
python -m train.exp --config $CONFIG device 3 model.gnn_type TransformerConv ;
#######################################################################################################################################
################################################################ SR25 ################################################################
# MPGNN
CONFIG='train/configs/MPGNN/sr25.yaml'
python -m train.sr25 --config $CONFIG device 0 model.gnn_type ResGatedGraphConv &
python -m train.sr25 --config $CONFIG device 1 model.gnn_type GINEConv &
python -m train.sr25 --config $CONFIG device 2 model.gnn_type GCNConv &
python -m train.sr25 --config $CONFIG device 3 model.gnn_type TransformerConv ;
# Graph MLPMixer
CONFIG='train/configs/GraphMLPMixer/sr25.yaml'
python -m train.sr25 --config $CONFIG device 0 model.gnn_type ResGatedGraphConv &
python -m train.sr25 --config $CONFIG device 1 model.gnn_type GINEConv &
python -m train.sr25 --config $CONFIG device 2 model.gnn_type GCNConv &
python -m train.sr25 --config $CONFIG device 3 model.gnn_type TransformerConv ;
#######################################################################################################################################
################################################################ ZINC ################################################################
# MPGNN
CONFIG='train/configs/MPGNN/zinc.yaml'
python -m train.zinc --config $CONFIG device 0 model.gnn_type ResGatedGraphConv &
python -m train.zinc --config $CONFIG device 1 model.gnn_type GINEConv &
python -m train.zinc --config $CONFIG device 2 model.gnn_type GCNConv &
python -m train.zinc --config $CONFIG device 3 model.gnn_type TransformerConv ;
# Graph MLPMixer
CONFIG='train/configs/GraphMLPMixer/zinc.yaml'
python -m train.zinc --config $CONFIG device 0 model.gnn_type ResGatedGraphConv &
python -m train.zinc --config $CONFIG device 1 model.gnn_type GINEConv &
python -m train.zinc --config $CONFIG device 2 model.gnn_type GCNConv &
python -m train.zinc --config $CONFIG device 3 model.gnn_type TransformerConv ;
#######################################################################################################################################
################################################################ MNIST ################################################################
# MPGNN
CONFIG='train/configs/MPGNN/mnist.yaml'
python -m train.mnist --config $CONFIG device 0 model.gnn_type ResGatedGraphConv &
python -m train.mnist --config $CONFIG device 1 model.gnn_type GINEConv &
python -m train.mnist --config $CONFIG device 2 model.gnn_type GCNConv &
python -m train.mnist --config $CONFIG device 3 model.gnn_type TransformerConv ;
# Graph MLPMixer
CONFIG='train/configs/GraphMLPMixer/mnist.yaml'
python -m train.mnist --config $CONFIG device 0 model.gnn_type ResGatedGraphConv &
python -m train.mnist --config $CONFIG device 1 model.gnn_type GINEConv &
python -m train.mnist --config $CONFIG device 2 model.gnn_type GCNConv &
python -m train.mnist --config $CONFIG device 3 model.gnn_type TransformerConv ;
#######################################################################################################################################
################################################################ CIFAR10 ################################################################
# MPGNN
CONFIG='train/configs/MPGNN/cifar10.yaml'
python -m train.cifar10 --config $CONFIG device 0 model.gnn_type ResGatedGraphConv &
python -m train.cifar10 --config $CONFIG device 1 model.gnn_type GINEConv &
python -m train.cifar10 --config $CONFIG device 2 model.gnn_type GCNConv &
python -m train.cifar10 --config $CONFIG device 3 model.gnn_type TransformerConv ;
# Graph MLPMixer
CONFIG='train/configs/GraphMLPMixer/cifar10.yaml'
python -m train.cifar10 --config $CONFIG device 0 model.gnn_type ResGatedGraphConv &
python -m train.cifar10 --config $CONFIG device 1 model.gnn_type GINEConv &
python -m train.cifar10 --config $CONFIG device 2 model.gnn_type GCNConv &
python -m train.cifar10 --config $CONFIG device 3 model.gnn_type TransformerConv ;
#######################################################################################################################################
################################################################ MolTox21 ################################################################
# MPGNN
CONFIG='train/configs/MPGNN/moltox21.yaml'
python -m train.moltox21 --config $CONFIG device 0 model.gnn_type ResGatedGraphConv &
python -m train.moltox21 --config $CONFIG device 1 model.gnn_type GINEConv &
python -m train.moltox21 --config $CONFIG device 2 model.gnn_type GCNConv &
python -m train.moltox21 --config $CONFIG device 3 model.gnn_type TransformerConv ;
# Graph MLPMixer
CONFIG='train/configs/GraphMLPMixer/moltox21.yaml'
python -m train.moltox21 --config $CONFIG device 0 model.gnn_type ResGatedGraphConv &
python -m train.moltox21 --config $CONFIG device 1 model.gnn_type GINEConv &
python -m train.moltox21 --config $CONFIG device 2 model.gnn_type GCNConv &
python -m train.moltox21 --config $CONFIG device 3 model.gnn_type TransformerConv ;
#######################################################################################################################################
################################################################ MolHIV ################################################################
# MPGNN
CONFIG='train/configs/MPGNN/molhiv.yaml'
python -m train.molhiv --config $CONFIG device 0 model.gnn_type ResGatedGraphConv &
python -m train.molhiv --config $CONFIG device 1 model.gnn_type GINEConv &
python -m train.molhiv --config $CONFIG device 2 model.gnn_type GCNConv &
python -m train.molhiv --config $CONFIG device 3 model.gnn_type TransformerConv ;
# Graph MLPMixer
CONFIG='train/configs/GraphMLPMixer/molhiv.yaml'
python -m train.molhiv --config $CONFIG device 0 model.gnn_type ResGatedGraphConv &
python -m train.molhiv --config $CONFIG device 1 model.gnn_type GINEConv &
python -m train.molhiv --config $CONFIG device 2 model.gnn_type GCNConv &
python -m train.molhiv --config $CONFIG device 3 model.gnn_type TransformerConv ;
#######################################################################################################################################
################################################################ Peptides-func ################################################################
# MPGNN
CONFIG='train/configs/MPGNN/peptides_func.yaml'
python -m train.peptides_func --config $CONFIG device 0 model.gnn_type ResGatedGraphConv &
python -m train.peptides_func --config $CONFIG device 1 model.gnn_type GINEConv &
python -m train.peptides_func --config $CONFIG device 2 model.gnn_type GCNConv &
python -m train.peptides_func --config $CONFIG device 3 model.gnn_type TransformerConv ;
# Graph MLPMixer
CONFIG='train/configs/GraphMLPMixer/peptides_func.yaml'
python -m train.peptides_func --config $CONFIG device 0 model.gnn_type ResGatedGraphConv &
python -m train.peptides_func --config $CONFIG device 1 model.gnn_type GINEConv &
python -m train.peptides_func --config $CONFIG device 2 model.gnn_type GCNConv &
python -m train.peptides_func --config $CONFIG device 3 model.gnn_type TransformerConv ;
#######################################################################################################################################
################################################################ Peptides-struct ################################################################
# MPGNN
CONFIG='train/configs/MPGNN/peptides_struct.yaml'
python -m train.peptides_struct --config $CONFIG device 0 model.gnn_type ResGatedGraphConv &
python -m train.peptides_struct --config $CONFIG device 1 model.gnn_type GINEConv &
python -m train.peptides_struct --config $CONFIG device 2 model.gnn_type GCNConv &
python -m train.peptides_struct --config $CONFIG device 3 model.gnn_type TransformerConv ;
# Graph MLPMixer
CONFIG='train/configs/GraphMLPMixer/peptides_struct.yaml'
python -m train.peptides_struct --config $CONFIG device 0 model.gnn_type ResGatedGraphConv &
python -m train.peptides_struct --config $CONFIG device 1 model.gnn_type GINEConv &
python -m train.peptides_struct --config $CONFIG device 2 model.gnn_type GCNConv &
python -m train.peptides_struct --config $CONFIG device 3 model.gnn_type TransformerConv ;
#######################################################################################################################################
################################################################ TreeNeighbourMatch ################################################################
# MPGNN
CONFIG='train/configs/MPGNN/tree_neighbour.yaml'
for DEPTH in 2 3 4 5 6 7 8
do
NLAYER_GNN=$(($DEPTH+1))
python -m train.tree_neighbour --config $CONFIG depth $DEPTH model.nlayer_gnn $NLAYER_GNN device 0 model.gnn_type GATConv &
python -m train.tree_neighbour --config $CONFIG depth $DEPTH model.nlayer_gnn $NLAYER_GNN device 1 model.gnn_type GINEConv &
python -m train.tree_neighbour --config $CONFIG depth $DEPTH model.nlayer_gnn $NLAYER_GNN device 2 model.gnn_type GCNConv &
python -m train.tree_neighbour --config $CONFIG depth $DEPTH model.nlayer_gnn $NLAYER_GNN device 3 model.gnn_type GatedGraphConv ;
done
# Graph MLPMixer
CONFIG='train/configs/GraphMLPMixer/tree_neighbour.yaml'
DEPTH=2
python -m train.tree_neighbour --config $CONFIG depth $DEPTH metis.n_patches 8 train.dropout 0.5 device 0 model.gnn_type GATConv &
python -m train.tree_neighbour --config $CONFIG depth $DEPTH metis.n_patches 8 train.dropout 0.5 device 1 model.gnn_type GINEConv &
python -m train.tree_neighbour --config $CONFIG depth $DEPTH metis.n_patches 8 train.dropout 0.5 device 2 model.gnn_type GCNConv &
python -m train.tree_neighbour --config $CONFIG depth $DEPTH metis.n_patches 8 train.dropout 0.5 device 3 model.gnn_type GatedGraphConv ;
for DEPTH in 3 4 5 6 7 8
do
NLAYER_GNN=$(($DEPTH+1))
python -m train.tree_neighbour --config $CONFIG depth $DEPTH model.nlayer_gnn $NLAYER_GNN device 0 model.gnn_type GATConv &
python -m train.tree_neighbour --config $CONFIG depth $DEPTH model.nlayer_gnn $NLAYER_GNN device 1 model.gnn_type GINEConv &
python -m train.tree_neighbour --config $CONFIG depth $DEPTH model.nlayer_gnn $NLAYER_GNN device 2 model.gnn_type GCNConv &
python -m train.tree_neighbour --config $CONFIG depth $DEPTH model.nlayer_gnn $NLAYER_GNN device 3 model.gnn_type GatedGraphConv ;
done
####################################################################################################################################################