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.11.0-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12 Windows x86-64

onnxruntime_extensions-0.11.0-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.11.0-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.11.0-cp312-cp312-macosx_11_0_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12 macOS 11.0+ x86-64

onnxruntime_extensions-0.11.0-cp312-cp312-macosx_11_0_universal2.whl (5.4 MB view details)

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

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 Windows x86-64

onnxruntime_extensions-0.11.0-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.11.0-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.11.0-cp311-cp311-macosx_11_0_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11 macOS 11.0+ x86-64

onnxruntime_extensions-0.11.0-cp311-cp311-macosx_11_0_universal2.whl (5.4 MB view details)

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

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 Windows x86-64

onnxruntime_extensions-0.11.0-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.11.0-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.11.0-cp310-cp310-macosx_11_0_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10 macOS 11.0+ x86-64

onnxruntime_extensions-0.11.0-cp310-cp310-macosx_11_0_universal2.whl (5.4 MB view details)

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

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

onnxruntime_extensions-0.11.0-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.11.0-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.11.0-cp39-cp39-macosx_11_0_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9 macOS 11.0+ x86-64

onnxruntime_extensions-0.11.0-cp39-cp39-macosx_11_0_universal2.whl (5.4 MB view details)

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

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 Windows x86-64

onnxruntime_extensions-0.11.0-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.11.0-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.11.0-cp38-cp38-macosx_11_0_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.8 macOS 11.0+ x86-64

onnxruntime_extensions-0.11.0-cp38-cp38-macosx_11_0_universal2.whl (5.4 MB view details)

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

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4ae8f8fa9c6671ca5eac870498cda1061b0ff0ce1f55b0b8a52294ddfa37b90f
MD5 0e4e5aa5af6d8f518d238002709ce5b5
BLAKE2b-256 8f461c5b1eb5ff1f9f4ce8dd89c6b6de0542e309d267598549aeefa96744c407

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23d976f83d6682169d3b23ac12a92d28b62d76d7b4a9b22df0017d30da3c1f97
MD5 fa99ed361ccb4cf7fe5d0de6c54c7589
BLAKE2b-256 512c6aa234323f01daedb81ca94f9e30a5d6ea63811e3f1daa764abddfc0e841

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39c3424da578f84dd5167e415dfe16f6b44042b9112126caa7fa883b94968505
MD5 b0fd6dcfe0163cf3980811d1771c4503
BLAKE2b-256 2bea61099466952abe80e098743dd749762e30720c05d52c6fbc2bd35d3e6d12

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.11.0-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 5e006ea7f10ea918947be357bc8674aef4529c44f09660008f8d35e8b4bc8e22
MD5 21b161f0d5b6a71faa95a6ee5786d0f1
BLAKE2b-256 5b96a7402874ff2e3d00d7e56f6eedd319c6d7081a683d6cf4a18aefd2142fa7

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.11.0-cp312-cp312-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp312-cp312-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 6084718f847c655fa138a83226986c9eb32a379487d401ecf5929e5dd962b9ff
MD5 72ec90db09a8c2f4ff085f972d1d2c27
BLAKE2b-256 d001998b8e8b29c247b297f360f855b9b74ac2331e8a48ec5d224a7ed0b14c9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de811a6ac6779e34f306c069e1db72a995c29aefc0b9207050181ac2ea3c4e7d
MD5 20c85ce45eb0516195bd468614fc08b1
BLAKE2b-256 edc4df06b5884fb8c0099d0a327d4a37f0f0e62ee49520092b251069ba9f385b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9fe0dbe2014ab3f9958130261757e7f441ff26a1a5b719d18f87f9acaa29f722
MD5 3645b468189ca0571cc2d56d36e7114a
BLAKE2b-256 e25c8380f06b059f5fe71719979b91de8585464e1653c1b99691ff76167e7db8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00e7c7b408b2de21eb69c7a3a91c4985e9a5dc062957d8456b20b9ac3818d0f5
MD5 cd2f7d071ded08846315d91d26701612
BLAKE2b-256 06c3d08c3553e51ae244126ed6425521d409c302bf0504e9f470f4a134cca2d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d24c3dba07f69680f9caeaa86a39ca8edec5b5b5bf7953ea1451dd74fd9409d9
MD5 402de9302878d5ca7d97875187a96347
BLAKE2b-256 b9d42614727e61f2b687f6fbf8e66a383b9fcf275f7c81217bd07088169c6838

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.11.0-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 82761d668a7edcafdd2148962539466f5d5b696992b874880ad42fcb3d6616af
MD5 84371e9ea9507cb6e2d2d2ba5a6eee1a
BLAKE2b-256 9830c4d5b90d9e8e9ffa39c080345aa7abc369ec8616762abd9b2d46e6fce64f

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.11.0-cp311-cp311-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 0bf95febb1da842220a4f69b1261f0fc4bf6357a6a9141adc0302f515b0c2ab5
MD5 04f173c3339e7802a2afaa893b2fa04f
BLAKE2b-256 02b3ab7e2e827215e64c9190ded404c64bbd4349f4d3879fa1f0c699f45e8818

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 848f47091521045409566a935ab4d09aa6eaa72262e87c58d8f98df6fa54ba49
MD5 0643218b719188dab56163f39cf81318
BLAKE2b-256 25cafe813c149a9b9ee2cbf47a3e5af2d537deb8fdc00e60f7d7e3ead61e1b3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4d09fe2d9f53dcd94437af47b85317b99a9031c5989cd4116488a6460c6535f8
MD5 4a1efdfe09b12c23baef2ce5440986f1
BLAKE2b-256 205c8d9400cde3ae53d5e22622989f8447b082d30ca96db031f96f9925e9321f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72e8a06e658ed1d167c34a793d838bab1c9c467006c4b36a2d2323a8ab7b5e2f
MD5 da0903fbb8a05a040bf41e88dbdccbe6
BLAKE2b-256 3ea24f5175ef9da505ec605e4e00ed3a7fba98bec02f5610029bb7b20a4cb8a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64fa111c879fe97a76e2ae9db8c09844f992b63792f8b25aa1cde660989827b9
MD5 8fbb4b7020ea8436c9f08380bf2ecb62
BLAKE2b-256 0e2668f7cbc18cfcda44f50a4be6b2d302f94992b86bd6e5053b7d657c6a9056

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.11.0-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d6f340a606282fc0e73d4a6b732f4d6e3b57e6be608d96a61b385ae4c8534cd9
MD5 850b253ad1b15a2f422c7393978836e9
BLAKE2b-256 a45c02ae31b8e8bb10b0fd2b10ecc09289f5e710622b2ff0c4dc4642e72ce5f5

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.11.0-cp310-cp310-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 a7a9f8efafa6fc5e68e0cf2cd1583ebfc06d66837e7e6c6aaa6c59f84ee59433
MD5 f848e4ebcde1c75fdef6749356f604a1
BLAKE2b-256 db83f755586c4f877b01f027c7a306cf4d1caca4435a281c24c453cd3b050989

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a3cc9577576c6b7f9fa39c4f38a795b64ecb21b4317867a847361fe1f3659fe
MD5 db10a0e4408a6d1f977cd4f654c32df7
BLAKE2b-256 9c28a30d944e412c5ea7a2e0febeef24951038804c61dbda811785e01920f375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 464394b374796855a297851f450213fdbd833f2477f5cc82c5e9a643f7786b99
MD5 4b34c184ecafd4012398a7d998daa324
BLAKE2b-256 325fef1c51b8451933eced32e0b383131730f6790a92e553380d90bb919fc3f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29913ea5d95fd5fba64fa16d360f4fb59c4b34866545f4c0b43b265255168435
MD5 4843367148b77f0d6971a1e196d7d434
BLAKE2b-256 c38411b7f5a5206a6e9adf92b8db9d5df0931779cd9aab88fe1b731f87ffb606

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a1c6561075c31aa936375cdf53ed8d0d470b5cb29dba27e228900b589c9e101
MD5 5418b388d2ed4f02eb41e606baafbf70
BLAKE2b-256 816ed59749eb3fb683913cc6d5dabb2bc035afa15235c829965df4f48605b8cd

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.11.0-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 cdeefd54ca080e3a7c973e5298d6fa7786e565e95a00caeee45c65bc7a050f84
MD5 ce657e264a38867dadef6a6d6a263c23
BLAKE2b-256 c7a5fa2789477066907fcf916a8afd5389f11008c04aee33573dfda1eb685a03

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.11.0-cp39-cp39-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp39-cp39-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 212bd3154fa3e82098584339ca69c50d926cf2855c07e74c512e44b3fddd138f
MD5 4768f3f4d5fd54688ee533f29d36fe51
BLAKE2b-256 c1777bbeedfbd0ccd0752c7b9aa4c34b13eeaef73e44438e1377c96693736b57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6c247140033b88fa7b3a9db2468d84a79931bab13aca3cc830a8bab5c852aba
MD5 57dba92656179f9393d8b0e3cd17cc25
BLAKE2b-256 4840f80f9bfa010cdff2b9e4858a2db0acd02211ffd11adddee31276f6f96602

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 da4ae90e50ef2530ab6f02c488bdd797a207cc91b73d282d26069dc4f2e7258d
MD5 f0ac390992d7b0a5f64ffd4b3d7aa2e8
BLAKE2b-256 d3f880f83e40518f1dcc4d701424744b694ab3d470a73a4fd748cb3b42b18f2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fde86a206ecfc050057cdae8a820c5362804f696b3817949b08b5704a7a4b7d3
MD5 a4b2e587f3ca3a06bc5f9d197d01dcc2
BLAKE2b-256 830e102deb2b40d8104c44892051c89c62734e6c09bd781580dc292a3107e83c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a32ec68d5b996dfe891f0a8f2892de95eb26e3545c9a2d77fa3ae17559d678e6
MD5 0fa3623b75209856f8bd7f16aab64b7f
BLAKE2b-256 7c588dfc295c8afd188001429e2281ae4ac2801915157b5b7394f7339520d92c

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.11.0-cp38-cp38-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 9b77982c8085e0a959855b9516721ca5ed66073dda9a0ee29703e761808bbd86
MD5 2aab51a2774e19f6b1e91f3925ccf7a8
BLAKE2b-256 8aa4ebf2805dcd7bf63bf6f819b872adfd009f3b35dd4971f595f1241b96b96c

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.11.0-cp38-cp38-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 bdd89c70028c0e73e7c43737cf04c643f858e0808851c447552ee9a1dfa041b8
MD5 53b405f914f3214f2d6b068edb5ee142
BLAKE2b-256 0ffae835962caa30d9320247cf702677e3a1811256a9d5cf6d4b3e52452b42e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.11.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a740c9bc4226c1e80d331c089cba3ef91553825d8bfd9b9f3b7c6754f61f08e4
MD5 599f456b13e1bc6c85cd15bdbbf1205d
BLAKE2b-256 37ef654d2559dd5c7aad8d773f6124ea0a7c8f5d8ef4eab24fb0d87968ec87da

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