Some utilities for tensorflow serving
Project description
serving-utils
Some python utilities when using tensorflow-serving.
Installation
From PYPI: 1. Manually install tensorflow CPU or GPU version. 2. pip install serving-utils
From Github repository: 1. git clone git@github.com:Yoctol/serving-utils.git 2. make install
Usage
Client ```python from serving_utils import Client
client = Client(addr=”localhost:8500”) client.predict(…)
or async
await client.async_predict(…) ```
Saver ```python import tensorflow as tf
from serving_utils import Saver
saver = Saver( session=tf.Session(graph=your_graph), output_dir=’/path/to/serving’, signature_def_map={ ‘predict’: tf.saved_model.signature_def_utils.predict_signature_def( inputs={‘tensor_name’: tf.Tensor…}, outputs={‘tensor_name’: tf.Tensor…}, ) }, ) saver.save(…)
## Test Run the following commands:
make lint make test
## Dev
make 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
Hashes for serving_utils-0.5.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 393e3b403f1d374b53d58ab289bbbbdf7f287c237956cb8fcf644c257e2d6ab6 |
|
MD5 | 2eeb2ba1716ed9519183dae083622a9e |
|
BLAKE2b-256 | 27572dd70b4d3ec67b09a19062d8588e7c50b1b9a76d9da691ba709bed73a3c0 |