-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrain_foggycity.sh
46 lines (46 loc) · 1.57 KB
/
train_foggycity.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
34
35
36
37
38
39
40
41
42
43
44
45
46
id="foggycity_1016_nic"
if [ ! -f log/log_$id/infos_$id.pkl ]; then
start_from=""
else
start_from="--start_from log/log_$id"
fi
python train_2.py --id show_tell \
--caption_model show_tell \
--refine 1 \
--refine_aoa 1 \
--use_ff 0 \
--decoder_type LSTM \
--use_multi_head 2 \
--num_heads 8 \
--multi_head_scale 1 \
--mean_feats 1 \
--ctx_drop 1 \
--dropout_aoa 0.3 \
--label_smoothing 0.2 \
--input_json data/foggycityscapes/FoggyCityscapes_paragraph_trainval_talk.json \
--input_label_h5 data/foggycityscapes/FoggyCityscapes_paragraph_trainval_talk.h5 \
--input_fc_dir data/foggycityscapes/fc \
--input_att_dir data/foggycityscapes/att \
--input_word_dir /data2/fjq/1.next_paper/foggyCityscapes-total/3.foggycity_label_filter_0.4/num \
--input_attr_dir /data2/fjq/1.next_paper/foggyCityscapes-total/4.foggycity_attr_filter_1.0/num \
--input_seg_dir /data2/fjq/1.next_paper/foggyCityscapes-total/5.foggycity_seg_filter_0.6/num \
--input_box_dir data/foggycityscapes/box \
--seq_per_img 1 \
--batch_size 16 \
--beam_size 2 \
--use_box 1 \
--learning_rate 5e-4 \
--num_layers 2 \
--input_encoding_size 512 \
--rnn_size 512 \
--learning_rate_decay_start 0 \
--scheduled_sampling_start 0 \
--checkpoint_path log/log_$id \
$start_from \
--save_checkpoint_every 200 \
--language_eval 1 \
--val_images_use -1 \
--max_epochs 15 \
--scheduled_sampling_increase_every 5 \
--scheduled_sampling_max_prob 0.5 \
--learning_rate_decay_every 3