Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
wangsen
paddle_dbnet
Commits
4b56069d
Commit
4b56069d
authored
Jun 09, 2021
by
LDOUBLEV
Browse files
fix bug
parent
0f84fc1e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
15 deletions
+24
-15
test/infer.sh
test/infer.sh
+22
-13
test/test.sh
test/test.sh
+2
-2
No files found.
test/infer.sh
View file @
4b56069d
...
@@ -45,13 +45,14 @@ for train_model in ${train_model_list[*]}; do
...
@@ -45,13 +45,14 @@ for train_model in ${train_model_list[*]}; do
if
[
${
train_model
}
=
"ocr_det"
]
;
then
if
[
${
train_model
}
=
"ocr_det"
]
;
then
model_name
=
"det"
model_name
=
"det"
yml_file
=
"configs/det/det_mv3_db.yml"
yml_file
=
"configs/det/det_mv3_db.yml"
#
wget -nc -P ./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ch_det_data_50.tar
wget
-nc
-P
./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ch_det_data_50.tar
tar
xf
./inference
/
ch_det_data_50.tar
cd
./inference
&&
tar
xf
ch_det_data_50.tar
&&
cd
../
img_dir
=
"./inference/ch_det_data_50/"
img_dir
=
"./inference/ch_det_data_50/"
elif
[
${
train_model
}
=
"ocr_rec"
]
;
then
elif
[
${
train_model
}
=
"ocr_rec"
]
;
then
model_name
=
"rec"
model_name
=
"rec"
yml_file
=
"configs/rec/rec_mv3_none_bilstm_ctc.yml"
yml_file
=
"configs/rec/rec_mv3_none_bilstm_ctc.yml"
wget
-nc
-P
./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ch_rec_data_200.tar
&&
tar
xf ./inference/ch_rec_data_200.tar
wget
-nc
-P
./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/ch_rec_data_200.tar
cd
./inference
&&
tar
xf ch_rec_data_200.tar
&&
cd
../
img_dir
=
"./inference/ch_rec_data_200/"
img_dir
=
"./inference/ch_rec_data_200/"
fi
fi
...
@@ -59,45 +60,53 @@ for train_model in ${train_model_list[*]}; do
...
@@ -59,45 +60,53 @@ for train_model in ${train_model_list[*]}; do
for
slim_trainer
in
${
slim_trainer_list
[*]
}
;
do
for
slim_trainer
in
${
slim_trainer_list
[*]
}
;
do
if
[
${
slim_trainer
}
=
"norm"
]
;
then
if
[
${
slim_trainer
}
=
"norm"
]
;
then
if
[
${
model_name
}
=
"det"
]
;
then
if
[
${
model_name
}
=
"det"
]
;
then
eval_model_name
=
"ch_ppocr_mobile_v2.0_det_
infer
"
eval_model_name
=
"ch_ppocr_mobile_v2.0_det_
train
"
wget
-nc
-P
./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_train.tar
wget
-nc
-P
./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_det_train.tar
cd
./inference
&&
tar
xf
${
eval_model_name
}
.tar
&&
cd
../
else
else
eval_model_name
=
"ch_ppocr_mobile_v2.0_rec_
infer
"
eval_model_name
=
"ch_ppocr_mobile_v2.0_rec_
train
"
wget
-nc
-P
./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_train.tar
wget
-nc
-P
./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/ch/ch_ppocr_mobile_v2.0_rec_train.tar
cd
./inference
&&
tar
xf
${
eval_model_name
}
.tar
&&
cd
../
fi
fi
elif
[
${
slim_trainer
}
=
"quant"
]
;
then
elif
[
${
slim_trainer
}
=
"quant"
]
;
then
if
[
${
model_name
}
=
"det"
]
;
then
if
[
${
model_name
}
=
"det"
]
;
then
eval_model_name
=
"ch_ppocr_mobile_v2.0_det_quant_
infer
"
eval_model_name
=
"ch_ppocr_mobile_v2.0_det_quant_
train
"
wget
-nc
-P
./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/slim/ch_ppocr_mobile_v2.0_det_quant_train.tar
wget
-nc
-P
./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/slim/ch_ppocr_mobile_v2.0_det_quant_train.tar
cd
./inference
&&
tar
xf
${
eval_model_name
}
.tar
&&
cd
../
else
else
eval_model_name
=
"ch_ppocr_mobile_v2.0_rec_quant_
infer
"
eval_model_name
=
"ch_ppocr_mobile_v2.0_rec_quant_
train
"
wget
-nc
-P
./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/slim/ch_ppocr_mobile_v2.0_rec_quant_train.tar
wget
-nc
-P
./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/slim/ch_ppocr_mobile_v2.0_rec_quant_train.tar
cd
./inference
&&
tar
xf
${
eval_model_name
}
.tar
&&
cd
../
fi
fi
elif
[
${
slim_trainer
}
=
"distill"
]
;
then
elif
[
${
slim_trainer
}
=
"distill"
]
;
then
if
[
${
model_name
}
=
"det"
]
;
then
if
[
${
model_name
}
=
"det"
]
;
then
eval_model_name
=
"ch_ppocr_mobile_v2.0_det_distill_
infer
"
eval_model_name
=
"ch_ppocr_mobile_v2.0_det_distill_
train
"
wget
-nc
-P
./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/slim/ch_ppocr_mobile_v2.0_det_distill_train.tar
wget
-nc
-P
./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/slim/ch_ppocr_mobile_v2.0_det_distill_train.tar
cd
./inference
&&
tar
xf
${
eval_model_name
}
.tar
&&
cd
../
else
else
eval_model_name
=
"ch_ppocr_mobile_v2.0_rec_distill_
infer
"
eval_model_name
=
"ch_ppocr_mobile_v2.0_rec_distill_
train
"
wget
-nc
-P
./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/slim/ch_ppocr_mobile_v2.0_rec_distill_train.tar
wget
-nc
-P
./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/slim/ch_ppocr_mobile_v2.0_rec_distill_train.tar
cd
./inference
&&
tar
xf
${
eval_model_name
}
.tar
&&
cd
../
fi
fi
elif
[
${
slim_trainer
}
=
"prune"
]
;
then
elif
[
${
slim_trainer
}
=
"prune"
]
;
then
if
[
${
model_name
}
=
"det"
]
;
then
if
[
${
model_name
}
=
"det"
]
;
then
eval_model_name
=
"ch_ppocr_mobile_v2.0_det_prune_train"
eval_model_name
=
"ch_ppocr_mobile_v2.0_det_prune_train"
wget
-nc
-P
./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/slim/ch_ppocr_mobile_v2.0_det_prune_train.tar
wget
-nc
-P
./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/slim/ch_ppocr_mobile_v2.0_det_prune_train.tar
cd
./inference
&&
tar
xf
${
eval_model_name
}
.tar
&&
cd
../
else
else
eval_model_name
=
"ch_ppocr_mobile_v2.0_rec_prune_train"
eval_model_name
=
"ch_ppocr_mobile_v2.0_rec_prune_train"
wget
-nc
-P
./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/slim/ch_ppocr_mobile_v2.0_rec_prune_train.tar
wget
-nc
-P
./inference https://paddleocr.bj.bcebos.com/dygraph_v2.0/slim/ch_ppocr_mobile_v2.0_rec_prune_train.tar
cd
./inference
&&
tar
xf
${
eval_model_name
}
.tar
&&
cd
../
fi
fi
fi
fi
save_log_path
=
"
${
log_path
}
/
${
eval_model_name
}
"
save_log_path
=
"
${
log_path
}
/
${
eval_model_name
}
"
command
=
"
${
python
}
tools/eval.py -c
${
yml_file
}
-o Global.pretrained_model=
${
eval_model_name
}
Global.save_model_dir=
${
save_log_path
}
"
command
=
"
${
python
}
tools/eval.py -c
${
yml_file
}
-o Global.pretrained_model=
"
${
eval_model_name
}
/best_accuracy
"
Global.save_model_dir=
${
save_log_path
}
"
${
python
}
tools/eval.py
-c
${
yml_file
}
-o
Global.pretrained_model
=
${
eval_model_name
}
Global.save_model_dir
=
${
save_log_path
}
${
python
}
tools/eval.py
-c
${
yml_file
}
-o
Global.pretrained_model
=
"
${
eval_model_name
}
/best_accuracy"
Global.save_model_dir
=
${
save_log_path
}
status_check
$?
"
${
trainer
}
"
"
${
command
}
"
"
${
save_log_path
}
/train.log"
status_check
$?
"
${
trainer
}
"
"
${
command
}
"
"
${
save_log_path
}
/train.log"
command
=
"
${
python
}
tools/export_model.py -c
${
yml_file
}
-o Global.pretrained_model=
${
eval_model_name
}
Global.save_inference_dir=
${
log_path
}
/
${
eval_model_name
}
_infer Global.save_model_dir=
${
save_log_path
}
"
command
=
"
${
python
}
tools/export_model.py -c
${
yml_file
}
-o Global.pretrained_model=
"
${
eval_model_name
}
/best_accuracy
"
Global.save_inference_dir=
${
log_path
}
/
${
eval_model_name
}
_infer Global.save_model_dir=
${
save_log_path
}
"
${
python
}
tools/export_model.py
-c
${
yml_file
}
-o
Global.pretrained_model
=
${
eval_model_name
}
Global.save_inference_dir
=
"
${
log_path
}
/
${
eval_model_name
}
_infer"
Global.save_model_dir
=
${
save_log_path
}
${
python
}
tools/export_model.py
-c
${
yml_file
}
-o
Global.pretrained_model
=
"
${
eval_model_name
}
/best_accuracy"
Global.save_inference_dir
=
"
${
log_path
}
/
${
eval_model_name
}
_infer"
Global.save_model_dir
=
${
save_log_path
}
status_check
$?
"
${
trainer
}
"
"
${
command
}
"
"
${
save_log_path
}
/train.log"
status_check
$?
"
${
trainer
}
"
"
${
command
}
"
"
${
save_log_path
}
/train.log"
if
[
$?
-eq
0
]
;
then
if
[
$?
-eq
0
]
;
then
...
...
test/test.sh
View file @
4b56069d
...
@@ -127,8 +127,8 @@ for train_model in ${train_model_list[*]}; do
...
@@ -127,8 +127,8 @@ for train_model in ${train_model_list[*]}; do
export_model
=
"tools/export_model.py"
export_model
=
"tools/export_model.py"
fi
fi
save_log
=
"
${
log_path
}
/
${
model_name
}
_
${
slim_trainer
}
_autocast_
${
auto_cast
}
_gpuid_
${
gpu
}
"
save_log
=
"
${
log_path
}
/
${
model_name
}
_
${
slim_trainer
}
_autocast_
${
auto_cast
}
_gpuid_
${
gpu
}
"
command
=
"
${
env
}
${
python
}
${
launch
}
${
trainer
}
-c
${
yml_file
}
-o Global.epoch_num=
${
epoch
}
Global.eval_batch_step=
${
eval_batch_step
}
Global.auto_cast=
${
auto_cast
}
Global.save_model_dir=
${
save_log
}
Global.use_gpu=
${
use_gpu
}
"
command
=
"
${
env
}
${
python
}
${
launch
}
${
trainer
}
-c
${
yml_file
}
-o Global.epoch_num=
${
epoch
}
Global.eval_batch_step=
${
eval_batch_step
}
Global.auto_cast=
${
auto_cast
}
Global.save_model_dir=
${
save_log
}
Global.use_gpu=
${
use_gpu
}
Train.loader.batch_size_per_card=2
"
${
env
}
${
python
}
${
launch
}
${
trainer
}
-c
${
yml_file
}
-o
Global.epoch_num
=
${
epoch
}
Global.eval_batch_step
=
${
eval_batch_step
}
Global.auto_cast
=
${
auto_cast
}
Global.save_model_dir
=
${
save_log
}
Global.use_gpu
=
${
use_gpu
}
${
env
}
${
python
}
${
launch
}
${
trainer
}
-c
${
yml_file
}
-o
Global.epoch_num
=
${
epoch
}
Global.eval_batch_step
=
${
eval_batch_step
}
Global.auto_cast
=
${
auto_cast
}
Global.save_model_dir
=
${
save_log
}
Global.use_gpu
=
${
use_gpu
}
Train.loader.batch_size_per_card
=
2
status_check
$?
"
${
trainer
}
"
"
${
command
}
"
"
${
save_log
}
/train.log"
status_check
$?
"
${
trainer
}
"
"
${
command
}
"
"
${
save_log
}
/train.log"
command
=
"
${
env
}
${
python
}
${
export_model
}
-c
${
yml_file
}
-o Global.pretrained_model=
${
save_log
}
/latest Global.save_inference_dir=
${
save_log
}
/export_inference/ Global.save_model_dir=
${
save_log
}
"
command
=
"
${
env
}
${
python
}
${
export_model
}
-c
${
yml_file
}
-o Global.pretrained_model=
${
save_log
}
/latest Global.save_inference_dir=
${
save_log
}
/export_inference/ Global.save_model_dir=
${
save_log
}
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment