-
Notifications
You must be signed in to change notification settings - Fork 1
/
camrest_TB.sh
32 lines (25 loc) · 1.13 KB
/
camrest_TB.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
#!/bin/bash
# set gpu id to use
export CUDA_VISIBLE_DEVICES=0
# set python path according to your actual environment
pythonpath_test='python3'
pythonpath_eval='python3 -m'
# set parameters
data_name='camrest'
data_dir=./data/CamRest
save_dir=./models-camrest
test_model=TB
output_dir=./outputs-camrest-${test_model}
ckpt=best.model
beam_size=2
max_dec_len=25
mkdir -p ${output_dir}/${ckpt}
${pythonpath_test} ./main.py --test --test_model=${test_model} --data_dir=${data_dir} --save_dir=${save_dir} --ckpt=${ckpt} --beam_size=${beam_size} --max_dec_len=${max_dec_len} --save_file=${output_dir}/${ckpt}/output.txt
${pythonpath_eval} tools.eval --data_name=${data_name} --data_dir=${data_dir} --eval_dir=${output_dir}/${ckpt}
for i in {1..15}
do
ckpt=state_epoch_${i}.model
mkdir -p ${output_dir}/${ckpt}
${pythonpath_test} ./main.py --test --test_model=${test_model} --data_dir=${data_dir} --save_dir=${save_dir} --ckpt=${ckpt} --beam_size=${beam_size} --max_dec_len=${max_dec_len} --save_file=${output_dir}/${ckpt}/output.txt
${pythonpath_eval} tools.eval --data_name=${data_name} --data_dir=${data_dir} --eval_dir=${output_dir}/${ckpt}
done