Skip to content

Commit

Permalink
Release/0.9 (#409)
Browse files Browse the repository at this point in the history
* add nms plugin for openvino

* Update openvino_ppdet_cn.md

* update version to 0.9.0

Co-authored-by: jiangjiajun <[email protected]>
  • Loading branch information
yeliang2258 and jiangjiajun authored Dec 1, 2021
1 parent ebb667e commit 94101c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions experimental/openvino_ppdet_cn.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ cd experimental
import paddle2onnx
import paddle
from openvino_ppdet import nms_mapper
# 通过上面的`nms_mapper`的import来启用插件,替换了paddle2onnx原始的nms_mapper
model_prefix = "/User/XXX/PaddleDetection/inference_model/yolov3_darknet53_270e_coco/model"
model = paddle.jit.load(model_prefix)
Expand Down
2 changes: 1 addition & 1 deletion paddle2onnx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.
from __future__ import absolute_import

__version__ = "0.8.1"
__version__ = "0.9.0"

import paddle
from .convert import dygraph2onnx, program2onnx
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

setuptools.setup(
name="paddle2onnx",
version="0.8.1",
version="0.9.0",
author="dltp-sz",
author_email="[email protected]",
description="a toolkit for converting trained model of PaddlePaddle to ONNX.",
Expand Down

0 comments on commit 94101c3

Please sign in to comment.