未验证 提交 4c52e385 编写于 作者: D Double_V 提交者: GitHub

Update predict_det.py

上级 ea60a034
...@@ -101,21 +101,22 @@ class TextDetector(object): ...@@ -101,21 +101,22 @@ class TextDetector(object):
self.predictor, self.input_tensor, self.output_tensors, self.config = utility.create_predictor( self.predictor, self.input_tensor, self.output_tensors, self.config = utility.create_predictor(
args, 'det', logger) args, 'det', logger)
pid = os.getpid() if args.benchmark:
self.autolog = auto_log.AutoLogger( pid = os.getpid()
model_name="det", self.autolog = auto_log.AutoLogger(
model_precision="fp32", model_name="det",
batch_size=1, model_precision=args.precision,
data_shape="dynamic", batch_size=1,
save_path="./output/auto_log.lpg", data_shape="dynamic",
inference_config=self.config, save_path="./output/auto_log.lpg",
pids=pid, inference_config=self.config,
process_name=None, pids=pid,
gpu_ids=0, process_name=None,
time_keys=[ gpu_ids=0,
'preprocess_time', 'inference_time', 'postprocess_time' time_keys=[
], 'preprocess_time', 'inference_time', 'postprocess_time'
warmup=10) ],
warmup=10)
def order_points_clockwise(self, pts): def order_points_clockwise(self, pts):
""" """
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册