-
Notifications
You must be signed in to change notification settings - Fork 10
/
test_mimic.sh
33 lines (33 loc) · 872 Bytes
/
test_mimic.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
30
31
32
33
python test.py \
--image_dir data/mimic_cxr/images/ \
--ann_path data/mimic_cxr/annotation.json \
--label_path data/mimic_cxr/labels_14.pickle \
--init_protypes_path data/mimic_cxr/init_prototypes.pt \
--dataset_name mimic_cxr \
--max_seq_length 100 \
--threshold 10 \
--epochs 30 \
--batch_size 16 \
--lr_ve 5e-5 \
--lr_ed 1e-4 \
--step_size 3 \
--gamma 0.8 \
--num_layers 3 \
--topk 15 \
--cmm_size 2048 \
--cmm_dim 512 \
--seed 7580 \
--beam_size 3 \
--save_dir results/mimic_cxr/ \
--log_period 1000 \
--n_gpu 1 \
--num_cluster 14 \
--img_con_margin 0.4 \
--txt_con_margin 0.4 \
--weight_img_bce_loss 0 \
--weight_txt_bce_loss 0 \
--weight_txt_con_loss 0.1 \
--weight_img_con_loss 1 \
--d_img_ebd 2048 \
--d_txt_ebd 768 \
--num_protype 20