-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy patheval_explanation.sh
29 lines (27 loc) · 1.59 KB
/
eval_explanation.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
echo "============================= 对RSR的预测结果进行解释 ============================="
python run_ts_dgl.py --data_root "/home/zhangzexi/.qlib/qlib_data/" \
--ckpt_root "/data/dengjiale/qlib_exp/tmp_ckpt/" \
--result_root "/data/dengjiale/qlib_exp/results/" \
--market "A_share" \
--relation_type "stock-stock" \
--graph_model "RSR" \
--graph_type "heterograph" \
--gpu 0
echo "============================= 对simpleHGN的预测结果进行解释 ============================="
python run_ts_dgl.py --data_root "/home/zhangzexi/.qlib/qlib_data/" \
--ckpt_root "/data/dengjiale/qlib_exp/tmp_ckpt/" \
--result_root "/data/dengjiale/qlib_exp/results/" \
--market "A_share" \
--relation_type "stock-stock" \
--graph_model "simpleHGN" \
--graph_type "heterograph" \
--gpu 0
echo "============================= 对GAT的预测结果进行解释 ============================="
python run_ts_dgl.py --data_root "/home/zhangzexi/.qlib/qlib_data/" \
--ckpt_root "/data/dengjiale/qlib_exp/tmp_ckpt/" \
--result_root "/data/dengjiale/qlib_exp/results/" \
--market "A_share" \
--relation_type "stock-stock" \
--graph_model "GAT" \
--graph_type "homograph" \
--gpu 0