-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.sh
More file actions
46 lines (35 loc) · 2.86 KB
/
run.sh
File metadata and controls
46 lines (35 loc) · 2.86 KB
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
# python pretrain.py --dataset 'MUTAG' --dim_feat 7
# python pretrain.py --dataset 'PTC' --dim_feat 19
# python pretrain.py --dataset 'REDDITBINARY' --dim_feat 1
# python pretrain.py --dataset 'NCI1' --dim_feat 37
# python pseudo_graphs_generation.py --dataset 'PTC' --dim_feat 19 --base_model 'GAT'
# python pseudo_graphs_generation.py --dataset 'PTC' --dim_feat 19 --base_model 'GIN'
# python pseudo_graphs_generation.py --dataset 'PTC' --dim_feat 19 --base_model 'GCN'
python train_model_fusion.py --dataset 'MUTAG' --dim_feat 7 --gen_epoch 100
python train_model_fusion.py --dataset 'PTC' --dim_feat 19 --gen_epoch 100
python train_model_fusion.py --dataset 'REDDITBINARY' --dim_feat 1 --gen_epoch 200
python train_model_fusion.py --dataset 'NCI1' --dim_feat 37 --gen_epoch 200
# python train_model_fusion.py --dataset 'IMDBMULTI' --dim_feat 1 --gcls 3 --gen_epoch 200
# 'MaskCL', 'MaskNN', 'MaskALL'
# python train_maskgnn.py --dataset 'MUTAG' --dim_feat 7 --model_name 'MaskCL' --test_index 0
# python train_maskgnn.py --dataset 'MUTAG' --dim_feat 7 --model_name 'MaskCL' --test_index 1
# python train_maskgnn.py --dataset 'MUTAG' --dim_feat 7 --model_name 'MaskCL' --test_index 2
# python train_maskgnn.py --dataset 'MUTAG' --dim_feat 7 --model_name 'MaskNN'
# python train_maskgnn.py --dataset 'MUTAG' --dim_feat 7 --model_name 'MaskALL'
# python train_maskgnn.py --dataset 'PTC' --dim_feat 19 --model_name 'MaskCL' --test_index 0
# python train_maskgnn.py --dataset 'PTC' --dim_feat 19 --model_name 'MaskCL' --test_index 1
# python train_maskgnn.py --dataset 'PTC' --dim_feat 19 --model_name 'MaskCL' --test_index 2
# python train_maskgnn.py --dataset 'PTC' --dim_feat 19 --model_name 'MaskNN'
# python train_maskgnn.py --dataset 'PTC' --dim_feat 19 --model_name 'MaskALL'
# python train_maskgnn.py --dataset 'REDDITBINARY' --dim_feat 1 --model_name 'MaskCL' --test_index 0
# python train_maskgnn.py --dataset 'REDDITBINARY' --dim_feat 1 --model_name 'MaskCL' --test_index 1
# python train_maskgnn.py --dataset 'REDDITBINARY' --dim_feat 1 --model_name 'MaskCL' --test_index 2
# python train_maskgnn.py --dataset 'REDDITBINARY' --dim_feat 1 --model_name 'MaskNN'
# python train_maskgnn.py --dataset 'REDDITBINARY' --dim_feat 1 --model_name 'MaskALL'
# python train_maskgnn.py --dataset 'NCI1' --dim_feat 37 --model_name 'MaskCL' --test_index 0
# python train_maskgnn.py --dataset 'NCI1' --dim_feat 37 --model_name 'MaskNN' --test_index 0
# python train_maskgnn.py --dataset 'NCI1' --dim_feat 37 --model_name 'MaskALL' --test_index 0
# python train_maskgnn.py --dataset 'NCI1' --dim_feat 37 --model_name 'MaskCL' --test_index 1
# python train_maskgnn.py --dataset 'NCI1' --dim_feat 37 --model_name 'MaskNN' --test_index 1
# python train_maskgnn.py --dataset 'NCI1' --dim_feat 37 --model_name 'MaskALL' --test_index 1
# python train_maskgnn.py --dataset 'NCI1' --dim_feat 37 --model_name 'MaskCL' --test_index 2