onnxruntime/docs/python/inference/examples/plot_backend.py

59 lines
1.6 KiB
Python
Raw Normal View History

2018-11-20 00:48:22 +00:00
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
"""
.. _l-example-backend-api:
ONNX Runtime Backend for ONNX
=============================
*ONNX Runtime* extends the
`onnx backend API <https://github.com/onnx/onnx/blob/main/docs/ImplementingAnOnnxBackend.md>`_
2018-11-20 00:48:22 +00:00
to run predictions using this runtime.
Let's use the API to compute the prediction
of a simple logistic regression model.
"""
import numpy as np
from onnx import load
import onnxruntime.backend as backend
########################################
# The device depends on how the package was compiled,
# GPU or CPU.
from onnxruntime import datasets, get_device
from onnxruntime.capi.onnxruntime_pybind11_state import InvalidArgument
device = get_device()
2018-11-20 00:48:22 +00:00
name = datasets.get_example("logreg_iris.onnx")
model = load(name)
rep = backend.prepare(model, device)
2018-11-20 00:48:22 +00:00
x = np.array([[-1.0, -2.0]], dtype=np.float32)
2019-09-26 18:25:59 +00:00
try:
label, proba = rep.run(x)
print("label={}".format(label))
print("probabilities={}".format(proba))
except (RuntimeError, InvalidArgument) as e:
print(e)
2018-11-20 00:48:22 +00:00
########################################
# The backend can also directly load the model
# without using *onnx*.
rep = backend.prepare(name, device)
2018-11-20 00:48:22 +00:00
x = np.array([[-1.0, -2.0]], dtype=np.float32)
2019-09-26 18:25:59 +00:00
try:
label, proba = rep.run(x)
print("label={}".format(label))
print("probabilities={}".format(proba))
except (RuntimeError, InvalidArgument) as e:
print(e)
2018-11-20 00:48:22 +00:00
#######################################
# The backend API is implemented by other frameworks
# and makes it easier to switch between multiple runtimes
# with the same API.