PaddleOCR/benchmark/run_det.sh

29 lines
1.4 KiB
Bash
Raw Normal View History

2021-09-23 19:25:11 +08:00
# 提供可稳定复现性能的脚本默认在标准docker环境内py37执行 paddlepaddle/paddle:latest-gpu-cuda10.1-cudnn7 paddle=2.1.2 py=37
2021-09-28 20:22:13 +08:00
# 执行目录: ./PaddleOCR
2021-09-23 19:25:11 +08:00
# 1 安装该模型需要的依赖 (如需开启优化策略请注明)
2021-09-23 19:42:27 +08:00
python3.7 -m pip install -r requirements.txt
2021-09-23 19:25:11 +08:00
# 2 拷贝该模型需要数据、预训练模型
2021-09-28 20:22:13 +08:00
wget -c -p ./tain_data/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/icdar2015.tar && cd train_data && tar xf icdar2015.tar && cd ../
wget -c -p ./pretrain_models/ https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/ResNet50_vd_pretrained.pdparams
2021-09-23 19:25:11 +08:00
# 3 批量运行如不方便批量12需放到单个模型中
2021-09-28 19:47:32 +08:00
model_mode_list=(det_res18_db_v2.0 det_r50_vd_east)
2021-09-23 19:25:11 +08:00
fp_item_list=(fp32)
2021-09-28 19:44:17 +08:00
bs_list=(8 16)
2021-09-23 19:25:11 +08:00
for model_mode in ${model_mode_list[@]}; do
for fp_item in ${fp_item_list[@]}; do
for bs_item in ${bs_list[@]}; do
echo "index is speed, 1gpus, begin, ${model_name}"
run_mode=sp
2021-09-28 19:44:17 +08:00
CUDA_VISIBLE_DEVICES=0 bash benchmark/run_benchmark_det.sh ${run_mode} ${bs_item} ${fp_item} 10 ${model_mode} # (5min)
2021-09-23 19:25:11 +08:00
sleep 60
echo "index is speed, 8gpus, run_mode is multi_process, begin, ${model_name}"
2021-09-28 19:44:17 +08:00
run_mode=mp
CUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7 bash benchmark/run_benchmark_det.sh ${run_mode} ${bs_item} ${fp_item} 10 ${model_mode}
sleep 60
2021-09-23 19:25:11 +08:00
done
done
done