X-RayDemo / scripts /1-2.shallow_test_iuxray.sh
tousin23's picture
Upload 41 files
6551065 verified
raw
history blame contribute delete
812 Bytes
#!/bin/bash
dataset="iu_xray"
annotation="data/iu_xray/annotation.json"
base_dir="./data/iu_xray/images"
delta_file="/apdcephfs/share_733425/vinnylywang/zhanyuwang/Code/R2GenGPT/save/iu_xray/v1_shallow/checkpoints/checkpoint_epoch11_step1548_bleu0.155866_cider0.450477.pth"
version="v1_shallow"
savepath="./save/$dataset/$version"
python -u train.py \
--test \
--dataset ${dataset} \
--annotation ${annotation} \
--base_dir ${base_dir} \
--delta_file ${delta_file} \
--test_batch_size 16 \
--freeze_vm True \
--vis_use_lora False \
--savedmodel_path ${savepath} \
--max_length 60 \
--min_new_tokens 40 \
--max_new_tokens 100 \
--repetition_penalty 2.0 \
--length_penalty 2.0 \
--num_workers 8 \
--devices 1 \
2>&1 |tee -a ${savepath}/log.txt