Skip to content

Commit

Permalink
Upgrade versions
Browse files Browse the repository at this point in the history
  • Loading branch information
gawsoftpl committed Sep 24, 2023
1 parent 8f6e973 commit 5998a44
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions mlserver_openvino/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
def _convert_onnx_to_openvino(path_in, path_out):
OpenvinoRuntime.convert_onnx(path_in, path_out)

def convert_onnx(path_in, path_out):
def convert_onnx_controller(path_in, path_out):
if os.path.isdir(path_in):
abs_path = os.path.abspath(path_in)
save_path = os.path.dirname(abs_path)
Expand All @@ -24,4 +24,4 @@ def convert_onnx(path_in, path_out):
if len(args) > 2:
path_out = args[2]

_convert_onnx_to_openvino(path_in, path_out)
convert_onnx_controller(path_in, path_out)
2 changes: 1 addition & 1 deletion mlserver_openvino/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.4.7"
__version__ = "0.4.8"

0 comments on commit 5998a44

Please sign in to comment.