Unverified 提交 750c42e4 authored 作者: Glenn Jocher's avatar Glenn Jocher 提交者: GitHub

`export.py` automatic `forward_export` (#6352)

* `export.py` automatic `forward_export` * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ciCo-authored-by: 's avatarpre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
上级 e5219099
...@@ -427,7 +427,8 @@ def run(data=ROOT / 'data/coco128.yaml', # 'dataset.yaml path' ...@@ -427,7 +427,8 @@ def run(data=ROOT / 'data/coco128.yaml', # 'dataset.yaml path'
elif isinstance(m, Detect): elif isinstance(m, Detect):
m.inplace = inplace m.inplace = inplace
m.onnx_dynamic = dynamic m.onnx_dynamic = dynamic
# m.forward = m.forward_export # assign forward (optional) if hasattr(m, 'forward_export'):
m.forward = m.forward_export # assign custom forward (optional)
for _ in range(2): for _ in range(2):
y = model(im) # dry runs y = model(im) # dry runs
......
...@@ -1099,4 +1099,4 @@ ...@@ -1099,4 +1099,4 @@
"outputs": [] "outputs": []
} }
] ]
} }
\ No newline at end of file
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论