Merge pull request #578 from MissPenguin/develop
fix parameter missing bug of hub serving
This commit is contained in:
commit
549108fe0a
|
@ -33,6 +33,8 @@ def read_params():
|
||||||
cfg.rec_image_shape = "3, 32, 320"
|
cfg.rec_image_shape = "3, 32, 320"
|
||||||
cfg.rec_char_type = 'ch'
|
cfg.rec_char_type = 'ch'
|
||||||
cfg.rec_batch_num = 30
|
cfg.rec_batch_num = 30
|
||||||
|
cfg.max_text_length = 25
|
||||||
|
|
||||||
cfg.rec_char_dict_path = "./ppocr/utils/ppocr_keys_v1.txt"
|
cfg.rec_char_dict_path = "./ppocr/utils/ppocr_keys_v1.txt"
|
||||||
cfg.use_space_char = True
|
cfg.use_space_char = True
|
||||||
|
|
||||||
|
|
|
@ -33,6 +33,8 @@ def read_params():
|
||||||
cfg.rec_image_shape = "3, 32, 320"
|
cfg.rec_image_shape = "3, 32, 320"
|
||||||
cfg.rec_char_type = 'ch'
|
cfg.rec_char_type = 'ch'
|
||||||
cfg.rec_batch_num = 30
|
cfg.rec_batch_num = 30
|
||||||
|
cfg.max_text_length = 25
|
||||||
|
|
||||||
cfg.rec_char_dict_path = "./ppocr/utils/ppocr_keys_v1.txt"
|
cfg.rec_char_dict_path = "./ppocr/utils/ppocr_keys_v1.txt"
|
||||||
cfg.use_space_char = True
|
cfg.use_space_char = True
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue