Python client API for the Keras Model Server
Project description
keras-model-client
Python client API for the Keras Model Server.
Install from PyPI:
pip install keras-model-client
Basic usage:
from keras_model_client import predict
# Using Detectron2 with the default model server
result = predict('/path/to/image.jpg', 'image_queue_detectron2')
# Using YOLOv5 with a custom model server
result = predict('/path/to/image.jpg', 'image_queue_yolov5', url='http://your-model-server/predictor/')
print(result)
# PredictionResult(success=True, predictions=[...])
Note: The default model server is currently hosted at https://adamant.tator.io:8082/.
CLI
The package provides a command-line interface invoked with model-server-predict
. For example:
model-server-predict /path/to/image.jpg image_queue_detectron2 -f json
will run the image at /path/to/image.jpg
through the Detectron2 model and format the results as JSON. Additional help is available with the -h
or --help
flag.
Install from source
Clone the repository:
git clone https://github.com/kevinsbarnard/keras-model-client
cd keras-model-client
and install from source with Poetry:
poetry install
or with pip:
pip install .
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
Close
Hashes for keras_model_client-0.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 98e7697b434767ac49faacaffa0d4971bb52049dcfba246e276816abfea72308 |
|
MD5 | f6237f59f14d07acb153f49203e6ee84 |
|
BLAKE2b-256 | 8793693600f5baf9feb4508daa1e6608b6a26eafc25cb7e6fdd00590af7ac132 |