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
13e59395
Commit
13e59395
authored
Jul 10, 2020
by
LDOUBLEV
Browse files
add warning when label length greater than setting length
parent
29aea6a2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
ppocr/data/rec/img_tools.py
ppocr/data/rec/img_tools.py
+5
-0
No files found.
ppocr/data/rec/img_tools.py
View file @
13e59395
...
@@ -359,6 +359,11 @@ def process_image(img,
...
@@ -359,6 +359,11 @@ def process_image(img,
# char_num = char_ops.get_char_num()
# char_num = char_ops.get_char_num()
text
=
char_ops
.
encode
(
label
)
text
=
char_ops
.
encode
(
label
)
if
len
(
text
)
==
0
or
len
(
text
)
>
max_text_length
:
if
len
(
text
)
==
0
or
len
(
text
)
>
max_text_length
:
logger
.
info
(
"Warning in ppocr/data/rec/img_tools.py:line362: Wrong data type."
"Excepted string with length between 1 and {}, but "
"got '{}'. Label is '{}'"
.
format
(
max_text_length
,
len
(
text
),
label
))
return
None
return
None
else
:
else
:
if
loss_type
==
"ctc"
:
if
loss_type
==
"ctc"
:
...
...
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