The parameters of export are consistent with the static image
This commit is contained in:
parent
7e0324a4de
commit
042034b61d
|
@ -28,21 +28,15 @@ from ppocr.modeling.architectures import build_model
|
||||||
from ppocr.postprocess import build_post_process
|
from ppocr.postprocess import build_post_process
|
||||||
from ppocr.utils.save_load import init_model
|
from ppocr.utils.save_load import init_model
|
||||||
from ppocr.utils.logging import get_logger
|
from ppocr.utils.logging import get_logger
|
||||||
from tools.program import load_config
|
from tools.program import load_config, merge_config,ArgsParser
|
||||||
|
|
||||||
|
|
||||||
def parse_args():
|
|
||||||
parser = argparse.ArgumentParser()
|
|
||||||
parser.add_argument("-c", "--config", help="configuration file to use")
|
|
||||||
parser.add_argument(
|
|
||||||
"-o", "--output_path", type=str, default='./output/infer/')
|
|
||||||
return parser.parse_args()
|
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
FLAGS = parse_args()
|
FLAGS = ArgsParser().parse_args()
|
||||||
config = load_config(FLAGS.config)
|
config = load_config(FLAGS.config)
|
||||||
|
merge_config(FLAGS.opt)
|
||||||
logger = get_logger()
|
logger = get_logger()
|
||||||
|
print(config)
|
||||||
# build post process
|
# build post process
|
||||||
|
|
||||||
post_process_class = build_post_process(config['PostProcess'],
|
post_process_class = build_post_process(config['PostProcess'],
|
||||||
|
@ -57,7 +51,7 @@ def main():
|
||||||
init_model(config, model, logger)
|
init_model(config, model, logger)
|
||||||
model.eval()
|
model.eval()
|
||||||
|
|
||||||
save_path = '{}/inference'.format(FLAGS.output_path)
|
save_path = '{}/inference'.format(config['Global']['save_inference_dir'])
|
||||||
infer_shape = [3, 32, 100] if config['Architecture'][
|
infer_shape = [3, 32, 100] if config['Architecture'][
|
||||||
'model_type'] != "det" else [3, 640, 640]
|
'model_type'] != "det" else [3, 640, 640]
|
||||||
model = to_static(
|
model = to_static(
|
||||||
|
|
Loading…
Reference in New Issue