From fd8ab28f92d9a6bf22a84047ff5d0400f3fdb06c Mon Sep 17 00:00:00 2001 From: jiangjiajun Date: Tue, 22 Nov 2022 06:25:40 +0000 Subject: [PATCH] Fix wrong api in fastdeploy model --- .../vision/detection/paddledetection/python/infer_ppyoloe.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/examples/vision/detection/paddledetection/python/infer_ppyoloe.py b/examples/vision/detection/paddledetection/python/infer_ppyoloe.py index 10163d83b..1d3260b53 100644 --- a/examples/vision/detection/paddledetection/python/infer_ppyoloe.py +++ b/examples/vision/detection/paddledetection/python/infer_ppyoloe.py @@ -53,8 +53,6 @@ config_file = os.path.join(model_dir, "infer_cfg.yml") runtime_option = build_option(args) model = fd.vision.detection.PPYOLOE( model_file, params_file, config_file, runtime_option=runtime_option) -print(model._model.input_info_of_runtime(0)) -print(model._model.output_info_of_runtime(0)) # 预测图片检测结果 if args.image is None: