-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathrun_classification_feat_type.sh
25 lines (22 loc) · 3.18 KB
/
run_classification_feat_type.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
echo ""
echo "****** Hops - 3 ******"
python -u node_class.py --data cora --layer 3 --w_att 0.1 --w_fc2 0.0 --w_fc1 0.001 --dropout 0.5 --lr_fc 0.01 --lr_att 0.005 --layer_norm 1 --dev 0 --feat_type homophily
python -u node_class.py --data citeseer --layer 3 --w_att 0.1 --w_fc2 0.0 --w_fc1 0.001 --dropout 0.5 --lr_fc 0.01 --lr_att 0.04 --layer_norm 1 --dev 0 --feat_type homophily
python -u node_class.py --data pubmed --layer 3 --w_att 0.01 --w_fc2 0.0001 --w_fc1 0.001 --dropout 0.7 --lr_fc 0.01 --lr_att 0.005 --layer_norm 1 --dev 0 --feat_type homophily
python -u node_class.py --data chameleon --layer 3 --w_att 0.1 --w_fc2 0.0 --w_fc1 0.0 --dropout 0.5 --lr_fc 0.005 --lr_att 0.005 --layer_norm 1 --dev 0 --feat_type heterophily
python -u node_class.py --data wisconsin --layer 3 --w_att 0.001 --w_fc2 0.0 --w_fc1 0.001 --dropout 0.5 --lr_fc 0.01 --lr_att 0.01 --layer_norm 1 --dev 0 --feat_type heterophily
python -u node_class.py --data texas --layer 3 --w_att 0.0001 --w_fc2 0.0001 --w_fc1 0.001 --dropout 0.6 --lr_fc 0.01 --lr_att 0.01 --layer_norm 1 --dev 0 --feat_type heterophily
python -u node_class.py --data cornell --layer 3 --w_att 0.001 --w_fc2 0.0 --w_fc1 0.001 --dropout 0.5 --lr_fc 0.01 --lr_att 0.02 --layer_norm 1 --dev 0 --feat_type heterophily
python -u node_class.py --data squirrel --layer 3 --w_att 0.1 --w_fc2 0.001 --w_fc1 0.0 --dropout 0.5 --lr_fc 0.005 --lr_att 0.04 --layer_norm 1 --dev 0 --feat_type heterophily
python -u node_class.py --data film --layer 3 --w_att 0.0001 --w_fc2 0.0 --w_fc1 0.001 --dropout 0.7 --lr_fc 0.01 --lr_att 0.02 --layer_norm 1 --dev 0 --feat_type heterophily
echo ""
echo "****** Hops:8 ******"
python -u node_class.py --data cora --layer 8 --w_att 0.1 --w_fc2 0.0 --w_fc1 0.001 --dropout 0.6 --lr_fc 0.01 --lr_att 0.02 --layer_norm 1 --dev 0 --feat_type homophily
python -u node_class.py --data citeseer --layer 8 --w_att 0.01 --w_fc2 0.0 --w_fc1 0.001 --dropout 0.5 --lr_fc 0.01 --lr_att 0.005 --layer_norm 1 --dev 0 --feat_type homophily
python -u node_class.py --data pubmed --layer 8 --w_att 0.01 --w_fc2 0.0 --w_fc1 0.0001 --dropout 0.6 --lr_fc 0.005 --lr_att 0.005 --layer_norm 1 --dev 0 --feat_type homophily
python -u node_class.py --data chameleon --layer 8 --w_att 0.1 --w_fc2 0.0001 --w_fc1 0.0 --dropout 0.5 --lr_fc 0.005 --lr_att 0.04 --layer_norm 1 --dev 0 --feat_type heterophily
python -u node_class.py --data wisconsin --layer 8 --w_att 0.001 --w_fc2 0.0 --w_fc1 0.001 --dropout 0.6 --lr_fc 0.01 --lr_att 0.01 --layer_norm 1 --dev 0 --feat_type heterophily
python -u node_class.py --data texas --layer 8 --w_att 0.001 --w_fc2 0.0001 --w_fc1 0.001 --dropout 0.7 --lr_fc 0.01 --lr_att 0.005 --layer_norm 1 --dev 0 --feat_type heterophily
python -u node_class.py --data cornell --layer 8 --w_att 0.0001 --w_fc2 0.0 --w_fc1 0.001 --dropout 0.5 --lr_fc 0.01 --lr_att 0.04 --layer_norm 1 --dev 0 --feat_type heterophily
python -u node_class.py --data squirrel --layer 8 --w_att 0.1 --w_fc2 0.0001 --w_fc1 0.0 --dropout 0.5 --lr_fc 0.005 --lr_att 0.04 --layer_norm 1 --dev 0 --feat_type heterophily
python -u node_class.py --data film --layer 8 --w_att 0.01 --w_fc2 0.001 --w_fc1 0.001 --dropout 0.7 --lr_fc 0.01 --lr_att 0.04 --layer_norm 1 --dev 0 --feat_type heterophily