25 lines
514 B
Python
25 lines
514 B
Python
|
# -*- coding:utf-8 -*-
|
||
|
from __future__ import absolute_import
|
||
|
from __future__ import division
|
||
|
from __future__ import print_function
|
||
|
|
||
|
|
||
|
class Config(object):
|
||
|
pass
|
||
|
|
||
|
|
||
|
def read_params():
|
||
|
cfg = Config()
|
||
|
|
||
|
#params for text classifier
|
||
|
cfg.cls_model_dir = "./inference/ch_ppocr_mobile_v1.1_cls_infer/"
|
||
|
cfg.cls_image_shape = "3, 48, 192"
|
||
|
cfg.label_list = ['0', '180']
|
||
|
cfg.cls_batch_num = 30
|
||
|
cfg.cls_thresh = 0.9
|
||
|
|
||
|
cfg.use_zero_copy_run = False
|
||
|
cfg.use_pdserving = False
|
||
|
|
||
|
return cfg
|