fix warn
This commit is contained in:
parent
896e573975
commit
3a18b08fc5
|
@ -364,7 +364,7 @@ def process_image(img,
|
||||||
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(
|
logger.info(
|
||||||
"Warning in ppocr/data/rec/img_tools.py:line362: Wrong data type."
|
"Warning in ppocr/data/rec/img_tools.py: Wrong data type."
|
||||||
"Excepted string with length between 1 and {}, but "
|
"Excepted string with length between 1 and {}, but "
|
||||||
"got '{}'. Label is '{}'".format(max_text_length,
|
"got '{}'. Label is '{}'".format(max_text_length,
|
||||||
len(text), label))
|
len(text), label))
|
||||||
|
|
Loading…
Reference in New Issue