commit
b6982b7fc7
|
@ -22,17 +22,19 @@ trainer_list=$(func_parser_value "${lines[14]}")
|
|||
|
||||
if [ ${MODE} = "benchmark_train" ];then
|
||||
pip install -r requirements.txt
|
||||
if [[ ${model_name} =~ "det_mv3_db_v2_0" || ${model_name} =~ "det_r50_vd_east_v2_0" || ${model_name} =~ "det_r50_vd_pse_v2_0" || ${model_name} =~ "det_r18_db_v2_0" ]];then
|
||||
if [[ ${model_name} =~ "det_mv3_db_v2_0" || ${model_name} =~ "det_r50_vd_pse_v2_0" || ${model_name} =~ "det_r18_db_v2_0" ]];then
|
||||
rm -rf ./train_data/icdar2015
|
||||
wget -nc -P ./pretrain_models/ https://paddleocr.bj.bcebos.com/pretrained/MobileNetV3_large_x0_5_pretrained.pdparams --no-check-certificate
|
||||
wget -nc -P ./train_data/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/icdar2015.tar --no-check-certificate
|
||||
cd ./train_data/ && tar xf icdar2015.tar && cd ../
|
||||
fi
|
||||
if [[ ${model_name} =~ "det_r50_vd_east_v2_0"; then
|
||||
if [[ ${model_name} =~ "det_r50_vd_east_v2_0" ]]; then
|
||||
wget -nc -P ./pretrain_models/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_r50_vd_east_v2.0_train.tar --no-check-certificate
|
||||
cd ./pretrain_models/ && tar xf det_r50_vd_east_v2.0_train.tar && cd ../
|
||||
wget -nc -P ./train_data/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/icdar2015.tar --no-check-certificate
|
||||
cd ./train_data/ && tar xf icdar2015.tar && cd ../
|
||||
fi
|
||||
if [[ ${model_name} =~ "det_r50_vd_east_v2_0" || ${model_name} =~ "det_r50_vd_pse_v2_0" ]];then
|
||||
if [[ ${model_name} =~ "det_r50_vd_pse_v2_0" ]];then
|
||||
wget -nc -P ./pretrain_models/ https://paddleocr.bj.bcebos.com/pretrained/ResNet50_vd_ssld_pretrained.pdparams --no-check-certificate
|
||||
wget -nc -P ./train_data/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/icdar2015.tar --no-check-certificate
|
||||
cd ./train_data/ && tar xf icdar2015.tar && cd ../
|
||||
|
|
Loading…
Reference in New Issue