-
Notifications
You must be signed in to change notification settings - Fork 1
/
train_baselines.sh
27 lines (24 loc) · 1.37 KB
/
train_baselines.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
python main.py --method gat --dataset citeseer
python main.py --method gat --dataset cora
python main.py --method gat --dataset pubmed
python main.py --method gat --dataset amazon-photo
python main.py --method gat --dataset coauthor-cs
python main.py --method gat --dataset coauthor-physics
python main.py --method gcn --dataset citeseer
python main.py --method gcn --dataset cora
python main.py --method gcn --dataset pubmed
python main.py --method gcn --dataset amazon-photo
python main.py --method gcn --dataset coauthor-cs
python main.py --method gcn --dataset coauthor-physics
python main.py --method sunny-gnn --encoder gat --dataset citeseer
python main.py --method sunny-gnn --encoder gat --dataset cora
python main.py --method sunny-gnn --encoder gat --dataset pubmed
python main.py --method sunny-gnn --encoder gat --dataset amazon-photo
python main.py --method sunny-gnn --encoder gat --dataset coauthor-cs
python main.py --method sunny-gnn --encoder gat --dataset coauthor-physics
python main.py --method sunny-gnn --encoder gcn --dataset citeseer
python main.py --method sunny-gnn --encoder gcn --dataset cora
python main.py --method sunny-gnn --encoder gcn --dataset pubmed
python main.py --method sunny-gnn --encoder gcn --dataset amazon-photo
python main.py --method sunny-gnn --encoder gcn --dataset coauthor-cs
python main.py --method sunny-gnn --encoder gcn --dataset coauthor-physics