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
51193f88
Commit
51193f88
authored
Jul 06, 2021
by
littletomatodonkey
Browse files
fix bug of inference
parent
b94c88a9
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
8 deletions
+6
-8
deploy/hubserving/readme.md
deploy/hubserving/readme.md
+1
-1
deploy/hubserving/readme_en.md
deploy/hubserving/readme_en.md
+1
-1
tools/infer/predict_det.py
tools/infer/predict_det.py
+4
-4
tools/infer/predict_system.py
tools/infer/predict_system.py
+0
-2
No files found.
deploy/hubserving/readme.md
View file @
51193f88
...
@@ -29,7 +29,7 @@ deploy/hubserving/ocr_system/
...
@@ -29,7 +29,7 @@ deploy/hubserving/ocr_system/
### 1. 准备环境
### 1. 准备环境
```
shell
```
shell
# 安装paddlehub
# 安装paddlehub
pip3
install
paddlehub
==
1.8.3
--upgrade
-i
https://pypi.tuna.tsinghua.edu.cn/simple
pip3
install
paddlehub
==
2.1.0
--upgrade
-i
https://pypi.tuna.tsinghua.edu.cn/simple
```
```
### 2. 下载推理模型
### 2. 下载推理模型
...
...
deploy/hubserving/readme_en.md
View file @
51193f88
...
@@ -30,7 +30,7 @@ The following steps take the 2-stage series service as an example. If only the d
...
@@ -30,7 +30,7 @@ The following steps take the 2-stage series service as an example. If only the d
### 1. Prepare the environment
### 1. Prepare the environment
```
shell
```
shell
# Install paddlehub
# Install paddlehub
pip3
install
paddlehub
==
1.8.3
--upgrade
-i
https://pypi.tuna.tsinghua.edu.cn/simple
pip3
install
paddlehub
==
2.1.0
--upgrade
-i
https://pypi.tuna.tsinghua.edu.cn/simple
```
```
### 2. Download inference model
### 2. Download inference model
...
...
tools/infer/predict_det.py
View file @
51193f88
...
@@ -175,7 +175,7 @@ class TextDetector(object):
...
@@ -175,7 +175,7 @@ class TextDetector(object):
st
=
time
.
time
()
st
=
time
.
time
()
if
args
.
benchmark
:
if
self
.
args
.
benchmark
:
self
.
autolog
.
times
.
start
()
self
.
autolog
.
times
.
start
()
data
=
transform
(
data
,
self
.
preprocess_op
)
data
=
transform
(
data
,
self
.
preprocess_op
)
...
@@ -186,7 +186,7 @@ class TextDetector(object):
...
@@ -186,7 +186,7 @@ class TextDetector(object):
shape_list
=
np
.
expand_dims
(
shape_list
,
axis
=
0
)
shape_list
=
np
.
expand_dims
(
shape_list
,
axis
=
0
)
img
=
img
.
copy
()
img
=
img
.
copy
()
if
args
.
benchmark
:
if
self
.
args
.
benchmark
:
self
.
autolog
.
times
.
stamp
()
self
.
autolog
.
times
.
stamp
()
self
.
input_tensor
.
copy_from_cpu
(
img
)
self
.
input_tensor
.
copy_from_cpu
(
img
)
...
@@ -195,7 +195,7 @@ class TextDetector(object):
...
@@ -195,7 +195,7 @@ class TextDetector(object):
for
output_tensor
in
self
.
output_tensors
:
for
output_tensor
in
self
.
output_tensors
:
output
=
output_tensor
.
copy_to_cpu
()
output
=
output_tensor
.
copy_to_cpu
()
outputs
.
append
(
output
)
outputs
.
append
(
output
)
if
args
.
benchmark
:
if
self
.
args
.
benchmark
:
self
.
autolog
.
times
.
stamp
()
self
.
autolog
.
times
.
stamp
()
preds
=
{}
preds
=
{}
...
@@ -220,7 +220,7 @@ class TextDetector(object):
...
@@ -220,7 +220,7 @@ class TextDetector(object):
else
:
else
:
dt_boxes
=
self
.
filter_tag_det_res
(
dt_boxes
,
ori_im
.
shape
)
dt_boxes
=
self
.
filter_tag_det_res
(
dt_boxes
,
ori_im
.
shape
)
if
args
.
benchmark
:
if
self
.
args
.
benchmark
:
self
.
autolog
.
times
.
end
(
stamp
=
True
)
self
.
autolog
.
times
.
end
(
stamp
=
True
)
et
=
time
.
time
()
et
=
time
.
time
()
return
dt_boxes
,
et
-
st
return
dt_boxes
,
et
-
st
...
...
tools/infer/predict_system.py
View file @
51193f88
...
@@ -174,8 +174,6 @@ def main(args):
...
@@ -174,8 +174,6 @@ def main(args):
logger
.
info
(
"The predict total time is {}"
.
format
(
time
.
time
()
-
_st
))
logger
.
info
(
"The predict total time is {}"
.
format
(
time
.
time
()
-
_st
))
logger
.
info
(
"
\n
The predict total time is {}"
.
format
(
total_time
))
logger
.
info
(
"
\n
The predict total time is {}"
.
format
(
total_time
))
img_num
=
text_sys
.
text_detector
.
det_times
.
img_num
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
args
=
utility
.
parse_args
()
args
=
utility
.
parse_args
()
...
...
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