未验证 提交 4b715cf2 编写于 作者: Z zhoujun 提交者: GitHub

Merge pull request #1837 from Channingss/dygraph

export_model support dynamic input shape
......@@ -51,8 +51,11 @@ def main():
model.eval()
save_path = '{}/inference'.format(config['Global']['save_inference_dir'])
infer_shape = [3, 32, 100] if config['Architecture'][
'model_type'] != "det" else [3, 640, 640]
infer_shape = [3, -1, -1]
if config['Architecture']['model_type'] == "rec":
infer_shape = [3, 32, -1]
model = to_static(
model,
input_spec=[
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册