-
Notifications
You must be signed in to change notification settings - Fork 3
/
train_real.sh
66 lines (64 loc) · 1.26 KB
/
train_real.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
for seed in {12..15};
do
python train_real.py \
--seed=${seed} \
--K=20\
--T=1\
--alpha=0.5\
--attr_mask=0.15\
--batch_size=32\
--beta1=0.01\
--beta2=0.01\
--dataset=Pubmed\
--epochs=200\
--hidden=64\
--hop=2\
--lr=0.01\
--model=DeGNN\
--nlayer=3\
--weight_decay=0.0005\
--debug
done
for seed in {11..15};
do
python train_real.py \
--seed=${seed} \
--K=25\
--T=1\
--alpha=0.5\
--attr_mask=0.4\
--batch_size=32\
--beta1=0.001\
--beta2=0.001\
--dataset=citeseer\
--epochs=200\
--hidden=64\
--hop=2\
--lr=0.01\
--model=DeGNN\
--nlayer=2\
--weight_decay=0.0005 \
--debug
done
for seed in {11..15}
do
python train_real.py \
--K=30\
--T=1\
--alpha=0.2\
--attr_mask=0.4\
--batch_size=32\
--beta1=0.01\
--beta2=0.01\
--dataset=Cora\
--epochs=100\
--hidden=128\
--hop=2\
--lr=0.01\
--model=DeGNN\
--nlayer=2\
--seed=${seed}\
--weight_decay=0.0005\
--debug\
--init
done