mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-22 22:01:08 +00:00
* bump up version number (#752) * bump up version number * Minor change to kick off build * update version to 0.3.1
21 lines
940 B
Python
21 lines
940 B
Python
#-------------------------------------------------------------------------
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
# Licensed under the MIT License.
|
|
#--------------------------------------------------------------------------
|
|
"""
|
|
ONNX Runtime
|
|
enables high-performance evaluation of trained machine learning (ML)
|
|
models while keeping resource usage low.
|
|
Building on Microsoft's dedication to the
|
|
`Open Neural Network Exchange (ONNX) <https://onnx.ai/>`_
|
|
community, it supports traditional ML models as well
|
|
as Deep Learning algorithms in the
|
|
`ONNX-ML format <https://github.com/onnx/onnx/blob/master/docs/IR.md>`_.
|
|
"""
|
|
__version__ = "0.3.1"
|
|
__author__ = "Microsoft"
|
|
|
|
from onnxruntime.capi import onnxruntime_validation
|
|
onnxruntime_validation.check_distro_info()
|
|
from onnxruntime.capi.session import InferenceSession
|
|
from onnxruntime.capi._pybind_state import RunOptions, SessionOptions, get_device, NodeArg, ModelMetadata
|