Skip to main content

ONNXRuntime Extensions

Project description

ONNXRuntime-Extensions

Build Status

What's ONNXRuntime-Extensions

Introduction: ONNXRuntime-Extensions is a library that extends the capability of the ONNX models and inference with ONNX Runtime, via ONNX Runtime Custom Operator ABIs. It includes a set of ONNX Runtime Custom Operator to support the common pre- and post-processing operators for vision, text, and nlp models. And it supports multiple languages and platforms, like Python on Windows/Linux/macOS, some mobile platforms like Android and iOS, and Web-Assembly etc. The basic workflow is to enhance a ONNX model firstly and then do the model inference with ONNX Runtime and ONNXRuntime-Extensions package.

Quickstart

Python installation

pip install onnxruntime-extensions

Nightly Build

on Windows

pip install --index-url https://aiinfra.pkgs.visualstudio.com/PublicPackages/_packaging/ORT-Nightly/pypi/simple/ onnxruntime-extensions

Please ensure that you have met the prerequisites of onnxruntime-extensions (e.g., onnx and onnxruntime) in your Python environment.

on Linux/macOS

Please make sure the compiler toolkit like gcc(later than g++ 8.0) or clang are installed before the following command

python -m pip install git+https://github.com/microsoft/onnxruntime-extensions.git

Usage

1. Generation of Pre-/Post-Processing ONNX Model

The onnxruntime-extensions Python package provides a convenient way to generate the ONNX processing graph. This can be achieved by converting the Huggingface transformer data processing classes into the desired format. For more detailed information, please refer to the API below:

help(onnxruntime_extensions.gen_processing_models)

NOTE:

The generation of model processing requires the ONNX package to be installed. The data processing models generated in this manner can be merged with other models using the onnx.compose if needed.

2. Using Extensions for ONNX Runtime inference

Python

There are individual packages for the following languages, please install it for the build.

import onnxruntime as _ort
from onnxruntime_extensions import get_library_path as _lib_path

so = _ort.SessionOptions()
so.register_custom_ops_library(_lib_path())

# Run the ONNXRuntime Session, as ONNXRuntime docs suggested.
# sess = _ort.InferenceSession(model, so)
# sess.run (...)

C++

  // The line loads the customop library into ONNXRuntime engine to load the ONNX model with the custom op
  Ort::ThrowOnError(Ort::GetApi().RegisterCustomOpsLibrary((OrtSessionOptions*)session_options, custom_op_library_filename, &handle));

  // The regular ONNXRuntime invoking to run the model.
  Ort::Session session(env, model_uri, session_options);
  RunSession(session, inputs, outputs);

Java

var env = OrtEnvironment.getEnvironment();
var sess_opt = new OrtSession.SessionOptions();

/* Register the custom ops from onnxruntime-extensions */
sess_opt.registerCustomOpLibrary(OrtxPackage.getLibraryPath());

C#

SessionOptions options = new SessionOptions()
options.RegisterOrtExtensions()
session = new InferenceSession(model, options)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

onnxruntime_extensions-0.10.1-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12 Windows x86-64

onnxruntime_extensions-0.10.1-cp312-cp312-musllinux_1_1_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

onnxruntime_extensions-0.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

onnxruntime_extensions-0.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

onnxruntime_extensions-0.10.1-cp312-cp312-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

onnxruntime_extensions-0.10.1-cp312-cp312-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

onnxruntime_extensions-0.10.1-cp312-cp312-macosx_10_9_universal2.whl (5.3 MB view details)

Uploaded CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64)

onnxruntime_extensions-0.10.1-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11 Windows x86-64

onnxruntime_extensions-0.10.1-cp311-cp311-musllinux_1_1_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

onnxruntime_extensions-0.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

onnxruntime_extensions-0.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

onnxruntime_extensions-0.10.1-cp311-cp311-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

onnxruntime_extensions-0.10.1-cp311-cp311-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

onnxruntime_extensions-0.10.1-cp311-cp311-macosx_10_9_universal2.whl (5.3 MB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

onnxruntime_extensions-0.10.1-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10 Windows x86-64

onnxruntime_extensions-0.10.1-cp310-cp310-musllinux_1_1_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

onnxruntime_extensions-0.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

onnxruntime_extensions-0.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

onnxruntime_extensions-0.10.1-cp310-cp310-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

onnxruntime_extensions-0.10.1-cp310-cp310-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

onnxruntime_extensions-0.10.1-cp310-cp310-macosx_10_9_universal2.whl (5.3 MB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

onnxruntime_extensions-0.10.1-cp39-cp39-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

onnxruntime_extensions-0.10.1-cp39-cp39-musllinux_1_1_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

onnxruntime_extensions-0.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

onnxruntime_extensions-0.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

onnxruntime_extensions-0.10.1-cp39-cp39-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

onnxruntime_extensions-0.10.1-cp39-cp39-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

onnxruntime_extensions-0.10.1-cp39-cp39-macosx_10_9_universal2.whl (5.3 MB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

onnxruntime_extensions-0.10.1-cp38-cp38-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.8 Windows x86-64

onnxruntime_extensions-0.10.1-cp38-cp38-musllinux_1_1_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

onnxruntime_extensions-0.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

onnxruntime_extensions-0.10.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

onnxruntime_extensions-0.10.1-cp38-cp38-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

onnxruntime_extensions-0.10.1-cp38-cp38-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

onnxruntime_extensions-0.10.1-cp38-cp38-macosx_10_9_universal2.whl (5.3 MB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file onnxruntime_extensions-0.10.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 809e28d24444de551f3a72e91500d560e2c14924dcb965608a549415a2391015
MD5 917533c496c0063c9658dc9d3935e666
BLAKE2b-256 d144ae239e14cfc9e66d193db09422f09eb969bddbe5b2aed7ceb7569fa8506a

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d11046323a5f6aea31efc489fc861dd1add6d0e290508118fe687e92d09171fa
MD5 4787a61b416e3b90ff11519653fb296c
BLAKE2b-256 14833d2be44f68eb940fe68907eacc997b220060d24633297300f0fc58995863

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c009d279c227dfa2e659c5be85929f4b6b981dba4970d62db32a161d70f3a3b4
MD5 d9724e5eeaee9cf9436dc78c46c7b308
BLAKE2b-256 aacc120b577b3716690365125edb0fa2d8d2a979812d8f2922067dd7ef19e504

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81276ad42a291d6888933f8b104bba262ce715e4d9c601068a15a16eac023f48
MD5 b1a7f4349304b3e20babf1ea7cc62169
BLAKE2b-256 277f02e478bfefd508d819ad1011602133e3162dd94e28ae79f1da56325a1db1

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c339e4d9bd73883966214a48552bd5b5dafe38d3d013d6d5076c7c095c2a453
MD5 c2097ef53ebcb89b725592d04aeab0d3
BLAKE2b-256 242851dff8ed01cf2172666686a5a1b7292f57962dd0edc4a0cd3b14cd4a9eda

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5835e18a0aff47beab2c12acfcd3c78a0ba9ff228809b116ca5612b55e45c38a
MD5 4d9259f401a0061527ea410aa374266b
BLAKE2b-256 1e071458caeb1a4c0ff8db4019e13cc3f8f72b49c1373b1042bde6debf1085e8

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cf2b3e17c9416a7d4d05ba46a66d0396de462f6826e9b1b88b7c0b1d994ac1f3
MD5 f98cd131c4ef356e28dcfdd767310fd2
BLAKE2b-256 17ac1d20784f418725130ccf99e61c8408ea49d555bfae3626f73a68e5180887

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c5142a00a284f8707a01c6a10788ecab2335507b206d8ab46b1a9ce233868199
MD5 5667f845269aab91781bb6b9de657214
BLAKE2b-256 af6e9da6b7dbae5eb90ab1eb23dec8d653996ec7e1ca9209edbfcc023758048f

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fc116cd935e43484241302efc428c6eb7e45d3ff779b8b42a70901ee3c0443af
MD5 b178bf3c4f97fbaada2d16d369f7913d
BLAKE2b-256 030b4fd7c665b3fda86a4e9113691d8bc5d785d8dcfd92423a8b2db6141a3ea2

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab439168a2c096528d3d5f8d10c1ce081e57595c4de350a34bbc4775a3a6dd35
MD5 7b81a013866d6127bd7d4e740183d30a
BLAKE2b-256 f3a4aebcc206c10bcbe75615a7121dc6150812d708dcb80ed4b46ce3e6f57421

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d4cfa6972478a25b3d896e95fb561b29a22aab0809ecef09d82ed4d83340881
MD5 780fbe436cc020c8c87af75268928abd
BLAKE2b-256 df07e4abb5124e78a2ec318fc3bb2fe616048a616bc0a205696d196529e47c84

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90da78f0f14bbefd48a288d4ab3d7d7578bb0275af56bba9f2b7b58a0f62d6d2
MD5 914b5faa8ea358fbd2af41259126f4e4
BLAKE2b-256 3d40409282d03cbb04fdc12b06681b62bb4db7d10785f87fdc2b1a26b170e270

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 267dfb361a7f387e25cda35c4aa063bf693da2a04fad6780b2e58d5da81a6f9c
MD5 31d9d831318ba93d9dcb1161ed21ce0c
BLAKE2b-256 96e05ef60383584027ae859ffed171848b9e38f8b21816e4d549e3a2b259364d

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0c0627c63ef99d36db38f24ee6c57f6bf73e1ff00ffa07ff544990c22cd11fa1
MD5 1e21ed48b5f08518daf2e00a99c8eb51
BLAKE2b-256 d7fb60234c61eada3c792056f1650a6f0c667d9a5f237fa1d7b76ba2e1a1ea4b

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 65ce9b52768cfd428dfefccd59b2d2bfa49cede21e5ab4ce2f11a390c746dd47
MD5 053c82159b8abb2c80a2ef7a9e06aa74
BLAKE2b-256 2835a45da76dbfec87a419d7cde2a53230f1a74e90cc1a39be86f364d59b1cb8

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 38d46be1b0d3cedb4922e1774b6a9d7bd150edfe3fd877e9862178b53596353c
MD5 217e27cd8474643fd4d657fb805fd1eb
BLAKE2b-256 6c4d58069943975f24453abe1143cb326b30e0685393b0744f0d3e2e3b0668d4

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2db10c5ee4205822e5c83f2036309086ad30402c0fd991ac016843c8eaa3da25
MD5 334edfe011490b39c9383c7dcf3b4250
BLAKE2b-256 aeda9324273f87157ffa612de55b41405f919cc1ac8d29953368a266127c6af4

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 802afd4f056e13592ac8795c1858aeff20a56fc77cc232c23dc347b8d7bb0ff6
MD5 51d111db4ae49fed3f01d5eab070341d
BLAKE2b-256 4d8b511637703e8e51cf9b83754b626f66a6e93af0d6f89f844f94206b847380

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd9b1bd6e0183c65a0d27262d306503b29bd4eb2cf711443728036afda2bb010
MD5 48115ee23d878df761286f61c6e1417b
BLAKE2b-256 9232c179f14d66893df974a968cac0b7b10c7ee8bef6fd19430f01e7961c5c24

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f16c596006b0c0c93a8f16bdd99d6a69f3a581bfbc2fdf2b6bb313f406a0d4f3
MD5 99c1c0998a7380ac3d08c121d8e82169
BLAKE2b-256 a1d8f991ae848414cd923c18ae504f7f53cdecb2173125ab05cb2e1c90ddf27d

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3f5405e309e6e5c01003f20a651fd8a7b81ce513910cf08cfca10404a044e6f6
MD5 c5414bbedb09db58c460eb635939891c
BLAKE2b-256 1ba17905262b730ee38f503c3d9dd45df5a9ee5ee3599f14984aa27653cb8e7e

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1ff00af545f44f3ca5c60f3883ad0a3b5229a7218397c49c35ee61667f9e3f39
MD5 d0b0d505992efc4f78713af368355fba
BLAKE2b-256 f58c5e23b742056f05d91146386baa67abb22dcdbe8ac287bc1aa29a96a54ddd

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 96773a6a880fba0e2b073c7daf914e1e3e890d897fc504e40af929323b5a266c
MD5 d8537699d4a4f20966d755546abe1dbc
BLAKE2b-256 584a5aac5385fcf4f27ba064973e9e08a0fad4b16cd8f988d61561837692b8bb

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8443ff5d2a8102297e287b3bac94a58185510c2e342e5498c1b788f80098b98b
MD5 a7e4d339128591f2c087208984b353d8
BLAKE2b-256 e7852f69b9503e3193ea9fe50fa55d49544c77289b010ca60d10e220313eb0ca

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 490d6211f32efb1168abe6ce34f274f478abfcbe120ece877ee915f615daa5b7
MD5 62cf08ce9b24c02e4236cbb7e8c49d2e
BLAKE2b-256 a18fe2f7537de12157f15e80ec38195c7e81c6c1102627cb7da235575d1c9dfc

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96cdb65d88eace23f00c6627ff27cf66f92425c2b440775c23a697915abcd0ef
MD5 388853368301c418e33655f0c7d0ac9a
BLAKE2b-256 0dad647935bc934778c2035098ea5db50e8d1c5577d6609d2f44d5ee035fa6c0

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8b4d86082877be29ac2bc05401a341129bb2cbc15ffabc28b71dc761d0237b3d
MD5 beb444afadec28d3f5569f1b03e4be37
BLAKE2b-256 480409239c599dd86e769dc94487e605645b2c6661418ef2f4b30a7781bab2aa

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2a741fc19b4eaa0d6ccce038c42fbde7be251b9dd2a1a3b7c8cccecb0ffc4e5d
MD5 a1b3618bc70439a9a61f06daaf47ea38
BLAKE2b-256 3ca26dddb2c91382321723a348ce7f239cc5c9ebce06cdaa822c9d19111df479

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3d344e46e6631ee31ae378242cf8b70c96126843aafdff72858862022b234f74
MD5 e0894f647bf883baef8ffcb2cabced4f
BLAKE2b-256 d08559e4919b3285a7b1491be43ffb96c23ed94acc56da20ced482a4555f6baa

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 98b2fdbec03a3036eb8a47d12ce481ca029b4a27afb9f9059e918b7a7893afb1
MD5 f9fd39705e6b1d8d2b79dedb42d735ab
BLAKE2b-256 aa3dd087e27e753bf4a04be1e00a6609e86470de2edc1378175d3559f8caabff

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5e599063cd7e884e695637412e959bd2e7dab5df466694398ec1837c6cc5a34
MD5 91a631d9568842b02e3e730cd7676b2e
BLAKE2b-256 085e9a7b4145122c9d850e2764eb53ee191fade2ff27d53eddff9dc52e678c78

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4c4d309d5b74a89c2b7ae02bd17fa0bf99e792a3add893c6f49299257677840
MD5 5457741918bdc041758ea7649f146fe7
BLAKE2b-256 d0afb229494ec59bf5fee32bf208cb123d95ba95287445f4d2b9e0df01ba0c9b

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23b36b2b4533ca68c735279ad61cb5239825349dd751f90cd451ac6087294538
MD5 ddf72c53a38670ff5cc17914b850abb5
BLAKE2b-256 04b43f92254515436708c1d4975d5361a5585d301243167fdd72116af4d120ff

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af8cb99c4f84e077dfaab9971349c8db9ada4700f45ccfc62380ed0761527cb1
MD5 5c27a3ecb0275dfe82c7e028f1875c4b
BLAKE2b-256 71f0fcd680498b12b1f2e4ff1a75cc26ae8b8799bb7babf83e9f3fce1976cbcd

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.10.1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.10.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 13997d1c7252e19189c3b6a7da23e0dad7b6b0fd7864e48afae99510e2864888
MD5 fc719b67d414aefe2e54074920e86adf
BLAKE2b-256 32a0b7138c7fe827b9f15c018fec1d85b09628ca9c1be04eb71bb9159598c08c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page