Python client for OpenVINO Model Server
Project description
OpenVINO™ Model Server Client
OpenVINO™ Model Server Client package makes the interaction with the model server easy. It is very lightweight thanks to minimal number of included dependencies. The total size of the package, along with all dependencies is less than 100 MB.
The ovmsclient
package works both with OpenVINO™ Model Server and TensorFlow Serving. It supports both gRPC and REST API calls: Predict
, GetModelMetadata
and GetModelStatus
.
The ovmsclient
can replace tensorflow-serving-api
package with reduced footprint and simplified interface.
See API reference for usage details.
Usage example
import ovmsclient
# Create connection to the model server
client = ovmsclient.make_grpc_client("localhost:9000")
# Get model metadata to learn about model inputs
model_metadata = client.get_model_metadata(model_name="model")
# If model has only one input, get its name
input_name = next(iter(model_metadata["inputs"]))
# Read the image file
with open("path/to/img.jpg", 'rb') as f:
img = f.read()
# Place the data in a dict, along with model input name
inputs = {input_name: img}
# Run prediction and wait for the result
results = client.predict(inputs=inputs, model_name="model")
Learn more on ovmsclient
documentation site.
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
Built Distribution
File details
Details for the file ovmsclient-2022.2-py3-none-any.whl
.
File metadata
- Download URL: ovmsclient-2022.2-py3-none-any.whl
- Upload date:
- Size: 155.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7e8e3bf13b9342fa01bfe6116833b512c399231c95427f836da08294a956c4ee |
|
MD5 | b460affe50cb3442c8372770d927b48d |
|
BLAKE2b-256 | 144dd289d085dbf0b2291b97926697e37dd5135711b34c19263fc5b228106aa8 |