-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.sh
More file actions
executable file
·41 lines (31 loc) · 1.75 KB
/
test.sh
File metadata and controls
executable file
·41 lines (31 loc) · 1.75 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
## FastRx's result
model_name=FastRx
log_dir=lr1e-4_ddi0.06_dim64_alpha0.95_thres0.5_visitlg2_Adam_wd1e-6_Cyclic1e-4_FastRx_emb_dim_ff128_seed1203_triangular1_3
resume_path=Epoch_72_TARGET_0.06_JA_0.5422_DDI_0.06674.model
python FastRx.py --cuda 0 --log_dir $log_dir \
--model_name $model_name --Test --resume_path $resume_path
# ## Ablation Study
# # FastRx without Diagnosis
# model_name=FastRx_wo_Diag
# log_dir=lr1e-4_ddi0.06_dim64_alpha0.95_thres0.5_visitlg2_Adam_wd1e-6_Reduce4e-5_FastRx_wo_Diag_emb_dim_ff128_seed1203
# resume_path=Epoch_77_TARGET_0.06_JA_0.5102_DDI_0.06711.model
# python FastRx.py --cuda 0 --log_dir $log_dir \
# --model_name $model_name --Test --resume_path $resume_path
# # FastRx without Procedure
# model_name=FastRx_wo_Proc
# log_dir=lr1e-4_ddi0.06_dim64_alpha0.95_thres0.5_visitlg2_Adam_wd1e-6_Reduce4e-5_FastRx_wo_Proc_emb_dim_ff128_seed1203
# resume_path=Epoch_85_TARGET_0.06_JA_0.5221_DDI_0.06868.model
# python FastRx.py --cuda 0 --log_dir $log_dir \
# --model_name $model_name --Test --resume_path $resume_path
# # FastRx without GCN
# model_name=FastRx_wo_GCN
# log_dir=lr1e-4_ddi0.06_dim64_alpha0.95_thres0.5_visitlg2_Adam_wd1e-6_Reduce4e-5_FastRx_wo_GCN_emb_dim_ff128_seed1203
# resume_path=Epoch_85_TARGET_0.06_JA_0.5394_DDI_0.06939.model
# python FastRx.py --cuda 0 --log_dir $log_dir \
# --model_name $model_name --Test --resume_path $resume_path
# # FastRx without 1D-CNN
# model_name=FastRx_wo_CNN1D
# log_dir=lr1e-4_ddi0.06_dim64_alpha0.95_thres0.5_visitlg2_Adam_wd1e-6_Reduce4e-5_FastRx_wo_CNN1D_emb_dim_ff128_seed1203
# resume_path=Epoch_61_TARGET_0.06_JA_0.542_DDI_0.06931.model
# python FastRx.py --cuda 0 --log_dir $log_dir \
# --model_name $model_name --Test --resume_path $resume_path