mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-18 21:21:17 +00:00
21 lines
1 KiB
Python
21 lines
1 KiB
Python
# -------------------------------------------------------------------------
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
# Licensed under the MIT License.
|
|
# --------------------------------------------------------------------------
|
|
"""
|
|
ONNX Runtime is a performance-focused scoring engine for Open Neural Network Exchange (ONNX) models.
|
|
For more information on ONNX Runtime, please see `aka.ms/onnxruntime <https://aka.ms/onnxruntime/>`_
|
|
or the `Github project <https://github.com/microsoft/onnxruntime/>`_.
|
|
"""
|
|
__version__ = "1.4.0"
|
|
__author__ = "Microsoft"
|
|
|
|
from onnxruntime.capi._pybind_state import get_all_providers, get_available_providers, get_device, set_seed, \
|
|
RunOptions, SessionOptions, set_default_logger_severity, NodeArg, ModelMetadata, GraphOptimizationLevel, \
|
|
ExecutionMode, OrtDevice, SessionIOBinding
|
|
from onnxruntime.capi.session import InferenceSession, IOBinding
|
|
from onnxruntime.capi import onnxruntime_validation
|
|
|
|
from onnxruntime.capi.training import * # noqa: F403
|
|
|
|
onnxruntime_validation.check_distro_info()
|