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. Generate the pre-/post- processing ONNX model

With onnxruntime-extensions Python package, you can easily get the ONNX processing graph by converting them from Huggingface transformer data processing classes, check the following API for details.

help(onnxruntime_extensions.gen_processing_models)

NOTE: These data processing model can be merged into other model 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.9.0-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11 Windows x86-64

onnxruntime_extensions-0.9.0-cp311-cp311-musllinux_1_1_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

onnxruntime_extensions-0.9.0-cp311-cp311-musllinux_1_1_i686.whl (6.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

onnxruntime_extensions-0.9.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.9.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (6.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

onnxruntime_extensions-0.9.0-cp311-cp311-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

onnxruntime_extensions-0.9.0-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.9.0-cp311-cp311-macosx_10_9_universal2.whl (5.2 MB view details)

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

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

Uploaded CPython 3.10 Windows x86-64

onnxruntime_extensions-0.9.0-cp310-cp310-musllinux_1_1_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

onnxruntime_extensions-0.9.0-cp310-cp310-musllinux_1_1_i686.whl (6.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

onnxruntime_extensions-0.9.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.9.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (6.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

onnxruntime_extensions-0.9.0-cp310-cp310-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

onnxruntime_extensions-0.9.0-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.9.0-cp310-cp310-macosx_10_9_universal2.whl (5.2 MB view details)

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

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

Uploaded CPython 3.9 Windows x86-64

onnxruntime_extensions-0.9.0-cp39-cp39-musllinux_1_1_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

onnxruntime_extensions-0.9.0-cp39-cp39-musllinux_1_1_i686.whl (6.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

onnxruntime_extensions-0.9.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.9.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (6.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

onnxruntime_extensions-0.9.0-cp39-cp39-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

onnxruntime_extensions-0.9.0-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.9.0-cp39-cp39-macosx_10_9_universal2.whl (5.2 MB view details)

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

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

Uploaded CPython 3.8 Windows x86-64

onnxruntime_extensions-0.9.0-cp38-cp38-musllinux_1_1_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

onnxruntime_extensions-0.9.0-cp38-cp38-musllinux_1_1_i686.whl (6.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

onnxruntime_extensions-0.9.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.9.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (6.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

onnxruntime_extensions-0.9.0-cp38-cp38-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

onnxruntime_extensions-0.9.0-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.9.0-cp38-cp38-macosx_10_9_universal2.whl (5.2 MB view details)

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

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e43eeaa2279498c88aca0a5cdf8ad261fdbf6843160082559569b01e345c1526
MD5 fe8b5db689c6c8c1ee2370b898b0553e
BLAKE2b-256 34df2ac373307df480c9be67f696278b4573b2ccc0464ebdaed03ca074044228

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d8f6e765989fe0667e859832f1734c6a7420827b47ace17f85748976b179dd86
MD5 2e4f63266c6c74f11e062a7cab9e526c
BLAKE2b-256 0c4d3df1375f8da0e3b6f9b326768416ccd354468d2b41477304fbee49269974

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.9.0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 18d602e708846f690f8cb2f744091db6e4c18fd75848b3e277e694585836bbaf
MD5 6100a06032197b966f61199a0081b25f
BLAKE2b-256 3d83fa6e21bfaed503e0495b9a9185873366a6ead6aad241b7c20c9a6e278679

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ac584d40f44ad9813d7eca962f45772846ab3473703d101413350825c17a0fa
MD5 75d71a20d19a17b878f58da6df48a7ea
BLAKE2b-256 f69724ff03e8e30166a351b82e7d3290d2487df9c5b90d0a2a7b37cf1843e0ce

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.9.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 35a1a5bcfc6ad71c0e4dd1f0478acfbcf5c8bc69be8abfbb4954a31e54f1bfb8
MD5 b8ad1c263c9dd55c29f33234540fcc9a
BLAKE2b-256 3cc64a880aec4ea287d1ab9066ca3816a791446c6154775d6935cb433dbd3cc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4586485b5fd61cf37acf6c38f5a179e9dcfac2c6bba9d84a179105950bd59fbd
MD5 542baa3cdba0be9a4e44cab31fc0833a
BLAKE2b-256 9ce4b84132b040c73a282b4bd2b3b8a761fa6ffe8ec6dff25ef3d374082df6ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 68a59273fc47675bf6eddc050eac57d2139db26ce185fb7afb304d574078740f
MD5 9c7198e9c85d4fcea75ffbdb172dcc0c
BLAKE2b-256 a0be061b72eb8dbad2409acaad9542ddc4692bc18d6b623d2af342879993bb98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d399fb62d222c587407d34ef3f7e24780da67512378f9efa494d30cecee1c04d
MD5 a9005e113942ae5c63bb29177874d72d
BLAKE2b-256 76c1b734633262fe750184ddb0dc1343253a80e285fc0dcddcaaad18f16d7126

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fbdfdb4e4a2ef82160bf3d828ee43e1533e638217a8f8a552fbf76a050f8817b
MD5 3e461bac040fa89e95d209f62714a614
BLAKE2b-256 a0e1d4328282917600d7bf2ee303f8ef15a5753a32d79bf1497237a3d05f8756

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5c518c34eab48145277482ecb74f166d34939aa3b859b723e5d4ec6204504e2b
MD5 4c9bc9c9a2eb02bb9edf2d710d34d3ac
BLAKE2b-256 d4b6cff22d89cb23fd03dde945f75dbbf0ee2447741ffa68f7bd4cc3bc7acf90

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.9.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 92fe9e8dd0ce3acfe23c614373e156b98a6e5a4ba761b781da8f862afa77f996
MD5 fd870c8ab4c8fa874f561685735ef80e
BLAKE2b-256 bf8116258cb6d9ac31eead85e9da437b3b14dcd0e4dc72a0c486dbc8ad71d80a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3f80f729792a23d8d3dbb184c3d0771be71189373814d16643cec1bbd88ff34
MD5 18ab38ba02cb2545853a17fe4edd42ce
BLAKE2b-256 08ef6af97a642f8e4bb866df714075921679d4bc300dfb6b34c2702dc1d99481

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.9.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 390a8333cb6f07cdfaef2f692f8c7a5dbfa92a818b6ffb82a10289e8a7d9b7dc
MD5 de758a918cd074b27617b2b511970f9d
BLAKE2b-256 d9b214385d6d79453cf3202fc44580dbb9774e41e140b90554378977ab74c718

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 482fe270fd6fe661063dd45feb5c1e15d679c40566b5e117f6eb00287abbc5df
MD5 014c54afa8a78a329f91f4e28af385d6
BLAKE2b-256 9d653172ae99954940d0acee1923f81dfa8da3d8d7c43cda7ab5b7bf502b4f8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 818e4ee472c896ab2248f9e54b2b2bf3dce269fa45e05edc19be97eb2c786ae0
MD5 b0cc40a79e15a1c2c55d8149dcbeca37
BLAKE2b-256 2db5dd7ef0a09f146498cd227914e0f2233977dea6931e9732bf51ca36d41e2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c78885df698f30605d3ff84d0346387c67fba387025c77a34800cfef2ac506bf
MD5 09311d3e64967564a46fc5768a4ae3b8
BLAKE2b-256 f9402b50f636d7ed9f264160b40a9c25d1d755013c862ceeb1dc235eadd5e267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 30a7fd7f8b389ecc68c010682addc503338be75f6c271828ffcea2bd71b46d83
MD5 bd32d19059863c89604073a074aa3972
BLAKE2b-256 72ead58d16b2c4ddd7e3ec4a9dd79bf9f02b3cbd91dbba5ae64f0280733efa35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b9659755d99444d14b898a3bad44cb659193b0fbf78661f3ecd9d93a7bad4365
MD5 d4539d68e730f89356640fca7159d497
BLAKE2b-256 6711f0d8a5524d5180e07af93dbb6cb50f29cedd067a5d02b2b45239a260621d

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.9.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 368556b4c04c833395c880bc7ca722b4624b3d68386f5bf2318fe8e4ede5b639
MD5 5f7de444822af0432daed46a5967841e
BLAKE2b-256 a09081a653388a0f7b9f36e03b2d21f8d19195296c76fa19f2ac503ba666b69d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ff73d5779c9fa295b45885d5e1cf4f55130237cc0e810598b57507bdaad8b2c
MD5 b1a18f8d7e8692c19868267edbd504cf
BLAKE2b-256 e48ece55856d93a5f15f597d3d202cf92d03b4f979c8ab1bc5fac4fe9fa0df5b

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.9.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 181e8642b9516ef73f3e764b222e516b1d5edca609ac9bf94071948996a2712d
MD5 f73d97ee276ff2a0dae009000940fbe1
BLAKE2b-256 0e4ae1195ecddeea23bd9b16d80adab59957065ae291e14fb9992706c75b2b29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8df5e8bf6dc7dbb04a8025b89a18628a53fd30576e83e07b6dfa134b3c79e249
MD5 0a527a2f53e79235d677932cb2e9ebc8
BLAKE2b-256 1d68793477502df8c52b70b373d4f4108dfcf4c0c2e47c65fc530a31c3b8e006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c5cbbc75ea99fcf320b3fb313dc7d3ec0d85738f489d161f524583482c65449a
MD5 b765c5d45f59ae3aad9a42d714f5fb8a
BLAKE2b-256 a8f71f0628e305f8e96b2a1268d21844c28b0687d1abf5f0d7f4ecbce708e440

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e0437d280e173a5ca9c3d63fffdbc162917eb78aaf2f115e56567a651d3ccb71
MD5 99e8fa48dd33ca52084e1149b94367dd
BLAKE2b-256 1c88a340846415b17a0c7be0d309ebe9178150fd25fd726d14406f95f87e4c51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9551a2dee247ccecb1a2ce06552d80fa0468713557e0931c75d80aafb667dcb3
MD5 d02655a8ba8d324c92e0978bf6cc5cfa
BLAKE2b-256 d7faae90590c6227c4d9a3e46d6073f1394e26c6cb35b8b5aed92e0282f1f5e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f22b62e08903c5fd84ba806a7cdae648b5a4460b16308c1b8ea908c1647df5f8
MD5 680261103a145e971bb667f95a87b6ba
BLAKE2b-256 da6389c64824ec12df63bdc79d3ef984e9cd899d36216e018e99dfe91cbf569f

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.9.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d6a7ebcfd86e31c6dd58f6d7d666c8d4a3ce9e98276c9b345e5914972a194c37
MD5 bf1d5cad67dadc595d04467fb6a005fe
BLAKE2b-256 4f952ff3ee0c50c3ef6187a79a92d234137c7bd1bd0f84b46a438a9e2f9b42c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7b7a67239fb0b7d661342fc0c9878f0e36be6949905d76641de44eb6ac53a97
MD5 1b6a1856c38b4619a3d02126f61363bc
BLAKE2b-256 d07a104a64965c8f66049c3e30887e599c9ed0d5f1c47a86bef35e963d58bcdd

See more details on using hashes here.

File details

Details for the file onnxruntime_extensions-0.9.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ae74c03abe55b2379197fa5294d40c5ce47779847df2655b1a76b34be24dd208
MD5 aa8e63a76ad1e29798211555066d9e6d
BLAKE2b-256 d281ab8aa741f57280e4ba031987d452f137e30a31f7850d921615432663e317

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 217fd658a5edc7ff83733679fee32663ab5480df4abac46410ceefa6cf1cb0cd
MD5 d1d034030df67bf5da810c3600b51189
BLAKE2b-256 7fe4a56c1b306f84cf8bbfc8eb0afd207d5d78c3f66208c1f2aa60ce6e9ba64b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 102a7767a231b56603241c566ccc1a244227741934882fc98de7fcea2c44eeba
MD5 5b682dbf5fec554ba8f46a5c7d67bb87
BLAKE2b-256 dbe34b4b242a264f122aaa40687cc5fee591372f6e7088847b0c5b9ae7e90a74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for onnxruntime_extensions-0.9.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2efc728da09b69a63293031887726838245504ed0258c74321a41a52bdb53ad4
MD5 2fcb54673c1166b804383742bd4a645b
BLAKE2b-256 66eaef6d0daf1c16ab937602755c28a15ac6d8e56224056666ae0071977b71f8

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