-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathrun_classification_32_hop.sh
12 lines (11 loc) · 1.57 KB
/
run_classification_32_hop.sh
1
2
3
4
5
6
7
8
9
10
11
python -u node_class.py --data cora --layer 32 --w_att 0.01 --w_fc2 0.0 --w_fc1 0.001 --dropout 0.6 --lr_fc 0.01 --lr_att 0.005 --layer_norm 1 --dev 0
python -u node_class.py --data citeseer --layer 32 --w_att 0.001 --w_fc2 0.0001 --w_fc1 0.001 --dropout 0.6 --lr_fc 0.01 --lr_att 0.01 --layer_norm 1 --dev 0
python -u node_class.py --data pubmed --layer 32 --w_att 0.001 --w_fc2 0.001 --w_fc1 0.0001 --dropout 0.7 --lr_fc 0.01 --lr_att 0.01 --layer_norm 1 --dev 0
python -u node_class.py --data chameleon --layer 32 --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
python -u node_class.py --data wisconsin --layer 32 --w_att 0.01 --w_fc2 0.0001 --w_fc1 0.001 --dropout 0.5 --lr_fc 0.01 --lr_att 0.01 --layer_norm 1 --dev 0
python -u node_class.py --data texas --layer 32 --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
python -u node_class.py --data cornell --layer 32 --w_att 0.001 --w_fc2 0.0001 --w_fc1 0.001 --dropout 0.5 --lr_fc 0.01 --lr_att 0.04 --layer_norm 1 --dev 0
python -u node_class.py --data squirrel --layer 32 --w_att 0.1 --w_fc2 0.0 --w_fc1 0.0 --dropout 0.5 --lr_fc 0.01 --lr_att 0.005 --layer_norm 1 --dev 0
python -u node_class.py --data film --layer 32 --w_att 0.0001 --w_fc2 0.001 --w_fc1 0.001 --dropout 0.7 --lr_fc 0.01 --lr_att 0.02 --layer_norm 1 --dev 0
echo "=== Actor dataset with no hop normalization ==="
python -u node_class.py --data film --layer 32 --w_att 0.001 --w_fc2 0.0001 --w_fc1 0.0001 --dropout 0.7 --lr_fc 0.01 --lr_att 0.02 --layer_norm 0 --dev 0