-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreproducibility_reverse.sh
58 lines (51 loc) · 5.98 KB
/
reproducibility_reverse.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
device=1
gnn_type=gcn
cpus=16-31
# reproducibility_reverse for PGExplainer
taskset -c $cpus python source/reproducibility_reverse.py --dataset Mutagenicity --gnn_type $gnn_type --explainer_name pgexplainer --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset Proteins --gnn_type $gnn_type --explainer_name pgexplainer --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset IMDB-B --gnn_type $gnn_type --explainer_name pgexplainer --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset AIDS --gnn_type $gnn_type --explainer_name pgexplainer --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset Mutag --gnn_type $gnn_type --explainer_name pgexplainer --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset NCI1 --gnn_type $gnn_type --explainer_name pgexplainer --device $device
# reproducibility_reverse for TAGExplainer_1
taskset -c $cpus python source/reproducibility_reverse.py --dataset Mutagenicity --gnn_type $gnn_type --explainer_name tagexplainer_1 --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset Proteins --gnn_type $gnn_type --explainer_name tagexplainer_1 --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset IMDB-B --gnn_type $gnn_type --explainer_name tagexplainer_1 --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset AIDS --gnn_type $gnn_type --explainer_name tagexplainer_1 --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset Mutag --gnn_type $gnn_type --explainer_name tagexplainer_1 --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset NCI1 --gnn_type $gnn_type --explainer_name tagexplainer_1 --device $device
# reproducibility_reverse for RCExplainer
taskset -c $cpus python source/reproducibility_reverse.py --dataset Mutagenicity --gnn_type $gnn_type --explainer_name rcexplainer_1.0 --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset Proteins --gnn_type $gnn_type --explainer_name rcexplainer_1.0 --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset IMDB-B --gnn_type $gnn_type --explainer_name rcexplainer_1.0 --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset AIDS --gnn_type $gnn_type --explainer_name rcexplainer_1.0 --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset Mutag --gnn_type $gnn_type --explainer_name rcexplainer_1.0 --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset NCI1 --gnn_type $gnn_type --explainer_name rcexplainer_1.0 --device $device
# reproducibility_reverse for GNNExplainer
taskset -c $cpus python source/reproducibility_reverse.py --dataset Mutagenicity --gnn_type $gnn_type --explainer_name gnnexplainer --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset Proteins --gnn_type $gnn_type --explainer_name gnnexplainer --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset IMDB-B --gnn_type $gnn_type --explainer_name gnnexplainer --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset AIDS --gnn_type $gnn_type --explainer_name gnnexplainer --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset Mutag --gnn_type $gnn_type --explainer_name gnnexplainer --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset NCI1 --gnn_type $gnn_type --explainer_name gnnexplainer --device $device
# reproducibility_reverse for CFF
taskset -c $cpus python source/reproducibility_reverse.py --dataset Mutagenicity --gnn_type $gnn_type --explainer_name cff_1.0 --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset Proteins --gnn_type $gnn_type --explainer_name cff_1.0 --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset IMDB-B --gnn_type $gnn_type --explainer_name cff_1.0 --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset AIDS --gnn_type $gnn_type --explainer_name cff_1.0 --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset Mutag --gnn_type $gnn_type --explainer_name cff_1.0 --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset NCI1 --gnn_type $gnn_type --explainer_name cff_1.0 --device $device
# reproducibility_reverse for GEM
taskset -c $cpus python source/reproducibility_reverse.py --dataset Mutagenicity --gnn_type $gnn_type --explainer_name gem --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset Proteins --gnn_type $gnn_type --explainer_name gem --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset IMDB-B --gnn_type $gnn_type --explainer_name gem --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset AIDS --gnn_type $gnn_type --explainer_name gem --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset Mutag --gnn_type $gnn_type --explainer_name gem --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset NCI1 --gnn_type $gnn_type --explainer_name gem --device $device
# reproducibility_reverse for SubgraphX
taskset -c $cpus python source/reproducibility_reverse.py --dataset Mutagenicity --gnn_type $gnn_type --explainer_name subgraphx --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset IMDB-B --gnn_type $gnn_type --explainer_name subgraphx --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset AIDS --gnn_type $gnn_type --explainer_name subgraphx --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset Mutag --gnn_type $gnn_type --explainer_name subgraphx --device $device
taskset -c $cpus python source/reproducibility_reverse.py --dataset NCI1 --gnn_type $gnn_type --explainer_name subgraphx --device $device