A lightweight http client library for communicating with Nvidia Triton Inference Server (with Pyodide support in the browser)
Project description
Triton HTTP Client for Pyodide
A Pyodide python http client library and utilities for communicating with Triton Inference Server (based on tritonclient from NVIDIA).
This is a simplified implemetation of the triton client from NVIDIA, it works both in the browser with Pyodide Python or the native Python. It only implement the http client, and most of the API remains the similar but changed into async and with additional utility functions.
Usage
To use it in native CPython, you can install the package by running:
pip install pyotritonclient
For Pyodide-based Python environment, for example: JupyterLite or Pyodide console, you can install the client by running the following python code:
import micropip
micropip.install("pyotritonclient")
To execute the model, we provide utility functions to make it much easier:
import numpy as np
from pyotritonclient import execute
# create fake input tensors
input0 = np.zeros([2, 349, 467], dtype='float32')
input1 = np.array([30], dtype='float32')
# run inference
results = await execute(inputs=[input0, input1], server_url='https://ai.imjoy.io/triton', model_name='cellpose-python')
You can access the lower level api, see the test example.
You can also find the official client examples demonstrate how to use the
package to issue request to triton inference server. However, please notice that you will need to
change the http client code into async style. For example, instead of doing client.infer(...)
, you need to do await client.infer(...)
.
The http client code is forked from triton client git repo since commit b3005f9db154247a4c792633e54f25f35ccadff0.
To simplify the manipulation on stateful models with sequence, we also provide the SequenceExecutor
to make it easier to run models in a sequence.
from pyotritonclient import SequenceExcutor
(image, labels, info) = train_samples[0]
model_id = 100
async with SequenceExcutor(
server_url='https://ai.imjoy.io/triton',
model_name='cellpose-train',
auto_end=True,
sequence_id=model_id) as se:
for i in range(2):
print(await se.execute([
image.astype('float32'),
labels.astype('float32'),
{"steps": 1, "pretrained_model": None}
]))
Note that above example used auto_end=True
, this means when exiting the block, the last inputs will be sent again to end the sequence.
If you don't want that, you can set auto_end=False
and run se.execute(..., sequence_end=True)
before exiting the block.
Server setup
Since we access the server from the browser environment which typically has more security restrictions, it is important that the server is configured to enable browser access.
Please make sure you configured following aspects:
- The server must provide HTTPS endpoints instead of HTTP
- The server should send the following headers:
Access-Control-Allow-Headers: Inference-Header-Content-Length,Accept-Encoding,Content-Encoding,Access-Control-Allow-Headers
Access-Control-Expose-Headers: Inference-Header-Content-Length,Range,Origin,Content-Type
Access-Control-Allow-Methods: GET,HEAD,OPTIONS,PUT,POST
Access-Control-Allow-Origin: *
(This is optional depending on whether you want to support CORS)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyotritonclient-0.1.18.tar.gz
.
File metadata
- Download URL: pyotritonclient-0.1.18.tar.gz
- Upload date:
- Size: 20.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.0.1 pkginfo/1.5.0.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0f8d34ae54c6019d23bc03c574027abf4d969657582176c57a133a2f4c9e711b |
|
MD5 | 23002ec3ca60eb852bd1e3371a2c0c75 |
|
BLAKE2b-256 | 46948e7a3180b3b47755acb850d28282927a0d76532d1f0a31e070dcdae75016 |
File details
Details for the file pyotritonclient-0.1.18-py3-none-any.whl
.
File metadata
- Download URL: pyotritonclient-0.1.18-py3-none-any.whl
- Upload date:
- Size: 22.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.0.1 pkginfo/1.5.0.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc3405060c457a72ba208bbcbb91c01502ad652080c48e0d1a52de5cc7451ec3 |
|
MD5 | b1f2d78f4a6450960827d994ca4474fc |
|
BLAKE2b-256 | d9639416f591a9622bca82908abb6527eaef3baa6714ae04885e379b3447105e |