forked from CRIPAC-DIG/GRACE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_all.sh
More file actions
16 lines (16 loc) · 695 Bytes
/
run_all.sh
File metadata and controls
16 lines (16 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
python train.py --dataset Cora --method recoverability > core_recoverability.txt &
sleep 30s
python train.py --dataset Cora --method GRACE > core_grace.txt &
sleep 30s
python train.py --dataset CiteSeer --method recoverability > citeseer_recoverability.txt &
sleep 30s
python train.py --dataset CiteSeer --method GRACE > citeseer_grace.txt &
sleep 30s
python train.py --dataset PubMed --method recoverability > pubmed_recoverability.txt &
sleep 30s
python train.py --dataset PubMed --method GRACE > pubmed_grace.txt &
sleep 30s
python train.py --dataset DBLP --method recoverability > dblp_recoverability.txt &
sleep 30s
python train.py --dataset DBLP --method GRACE > dblp_grace.txt &
sleep 30s