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
4042247c
Commit
4042247c
authored
Jul 05, 2021
by
LDOUBLEV
Browse files
fix ci and output
parent
65118f30
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
9 deletions
+8
-9
test/ocr_det_params.txt
test/ocr_det_params.txt
+3
-3
test/test.sh
test/test.sh
+2
-2
tools/infer/predict_det.py
tools/infer/predict_det.py
+3
-4
No files found.
test/ocr_det_params.txt
View file @
4042247c
model_name:ocr_det
model_name:ocr_det
python:python3.7
python:python3.7
gpu_list:
-1|0|0,1
gpu_list:
0
Global.auto_cast:False
|True
Global.auto_cast:False
Global.epoch_num:10
Global.epoch_num:10
Global.save_model_dir:./output/
Global.save_model_dir:./output/
Global.save_inference_dir:./output/
Global.save_inference_dir:./output/
...
@@ -9,7 +9,7 @@ Train.loader.batch_size_per_card:
...
@@ -9,7 +9,7 @@ Train.loader.batch_size_per_card:
Global.use_gpu
Global.use_gpu
Global.pretrained_model
Global.pretrained_model
trainer:norm|pact
|fpgm
trainer:norm|pact
norm_train:tools/train.py -c configs/det/det_mv3_db.yml -o Global.pretrained_model=./pretrain_models/MobileNetV3_large_x0_5_pretrained
norm_train:tools/train.py -c configs/det/det_mv3_db.yml -o Global.pretrained_model=./pretrain_models/MobileNetV3_large_x0_5_pretrained
quant_train:deploy/slim/quantization/quant.py -c configs/det/det_mv3_db.yml -o Global.pretrained_model=./pretrain_models/det_mv3_db_v2.0_train/best_accuracy
quant_train:deploy/slim/quantization/quant.py -c configs/det/det_mv3_db.yml -o Global.pretrained_model=./pretrain_models/det_mv3_db_v2.0_train/best_accuracy
fpgm_train:null
fpgm_train:null
...
...
test/test.sh
View file @
4042247c
...
@@ -110,7 +110,7 @@ function func_inference(){
...
@@ -110,7 +110,7 @@ function func_inference(){
for
threads
in
${
cpu_threads_list
[*]
}
;
do
for
threads
in
${
cpu_threads_list
[*]
}
;
do
for
batch_size
in
${
batch_size_list
[*]
}
;
do
for
batch_size
in
${
batch_size_list
[*]
}
;
do
_save_log_path
=
"
${
_log_path
}
/infer_cpu_usemkldnn_
${
use_mkldnn
}
_threads_
${
threads
}
_batchsize_
${
batch_size
}
"
_save_log_path
=
"
${
_log_path
}
/infer_cpu_usemkldnn_
${
use_mkldnn
}
_threads_
${
threads
}
_batchsize_
${
batch_size
}
"
command
=
"
${
_python
}
${
_script
}
${
use_gpu_key
}
=
${
use_gpu
}
${
use_mkldnn_key
}
=
${
use_mkldnn
}
${
cpu_threads_key
}
=
${
threads
}
${
model_dir_key
}
=
${
_model_dir
}
${
batch_size_key
}
=
${
batch_size
}
${
image_dir_key
}
=
${
_img_dir
}
${
save_log_key
}
=
${
_save_log_path
}
--benchmark=True"
command
=
"
${
_python
}
${
_script
}
${
use_gpu_key
}
=
${
use_gpu
}
${
use_mkldnn_key
}
=
${
use_mkldnn
}
${
cpu_threads_key
}
=
${
threads
}
${
model_dir_key
}
=
${
_model_dir
}
${
batch_size_key
}
=
${
batch_size
}
${
image_dir_key
}
=
${
_img_dir
}
${
save_log_key
}
=
${
_save_log_path
}
--benchmark=True
"
eval
$command
eval
$command
status_check
$?
"
${
command
}
"
"
${
status_log
}
"
status_check
$?
"
${
command
}
"
"
${
status_log
}
"
done
done
...
@@ -124,7 +124,7 @@ function func_inference(){
...
@@ -124,7 +124,7 @@ function func_inference(){
fi
fi
for
batch_size
in
${
batch_size_list
[*]
}
;
do
for
batch_size
in
${
batch_size_list
[*]
}
;
do
_save_log_path
=
"
${
_log_path
}
/infer_gpu_usetrt_
${
use_trt
}
_precision_
${
precision
}
_batchsize_
${
batch_size
}
"
_save_log_path
=
"
${
_log_path
}
/infer_gpu_usetrt_
${
use_trt
}
_precision_
${
precision
}
_batchsize_
${
batch_size
}
"
command
=
"
${
_python
}
${
_script
}
${
use_gpu_key
}
=
${
use_gpu
}
${
use_trt_key
}
=
${
use_trt
}
${
precision_key
}
=
${
precision
}
${
model_dir_key
}
=
${
_model_dir
}
${
batch_size_key
}
=
${
batch_size
}
${
image_dir_key
}
=
${
_img_dir
}
${
save_log_key
}
=
${
_save_log_path
}
--benchmark=True"
command
=
"
${
_python
}
${
_script
}
${
use_gpu_key
}
=
${
use_gpu
}
${
use_trt_key
}
=
${
use_trt
}
${
precision_key
}
=
${
precision
}
${
model_dir_key
}
=
${
_model_dir
}
${
batch_size_key
}
=
${
batch_size
}
${
image_dir_key
}
=
${
_img_dir
}
${
save_log_key
}
=
${
_save_log_path
}
--benchmark=True
"
eval
$command
eval
$command
status_check
$?
"
${
command
}
"
"
${
status_log
}
"
status_check
$?
"
${
command
}
"
"
${
status_log
}
"
done
done
...
...
tools/infer/predict_det.py
View file @
4042247c
...
@@ -106,7 +106,7 @@ class TextDetector(object):
...
@@ -106,7 +106,7 @@ class TextDetector(object):
model_precision
=
args
.
precision
,
model_precision
=
args
.
precision
,
batch_size
=
1
,
batch_size
=
1
,
data_shape
=
"dynamic"
,
data_shape
=
"dynamic"
,
save_path
=
"./output/auto_log.lpg"
,
save_path
=
args
.
save_log_path
,
inference_config
=
self
.
config
,
inference_config
=
self
.
config
,
pids
=
pid
,
pids
=
pid
,
process_name
=
None
,
process_name
=
None
,
...
@@ -174,7 +174,7 @@ class TextDetector(object):
...
@@ -174,7 +174,7 @@ class TextDetector(object):
data
=
{
'image'
:
img
}
data
=
{
'image'
:
img
}
st
=
time
.
time
()
st
=
time
.
time
()
if
args
.
benchmark
:
if
args
.
benchmark
:
self
.
autolog
.
times
.
start
()
self
.
autolog
.
times
.
start
()
...
@@ -262,7 +262,6 @@ if __name__ == "__main__":
...
@@ -262,7 +262,6 @@ if __name__ == "__main__":
"det_res_{}"
.
format
(
img_name_pure
))
"det_res_{}"
.
format
(
img_name_pure
))
cv2
.
imwrite
(
img_path
,
src_im
)
cv2
.
imwrite
(
img_path
,
src_im
)
logger
.
info
(
"The visualized image saved in {}"
.
format
(
img_path
))
logger
.
info
(
"The visualized image saved in {}"
.
format
(
img_path
))
if
args
.
benchmark
:
if
args
.
benchmark
:
text_detector
.
autolog
.
report
()
text_detector
.
autolog
.
report
()
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