Some utilities for tensorflow serving
Project description
serving-utils
Some python utilities when using tensorflow-serving.
Installation
Prepare an environment with python version >= 3.6
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. Manually install tensorflow CPU or GPU version. 3. make install
Usage
Saver and Loader ```python import tensorflow as tf
from serving_utils.saver import Saver from serving_utils.loader import Loader
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={‘input’: tf.Tensor…}, outputs={‘output’: tf.Tensor…}, ) }, freeze=True, # (default: True) Frozen graph will be saved if True. ) saver.save()
loader = Loader( path=’/path/to/serving’, # version=1, # if not specified, use the latest version ) new_sess = tf.Session()
loader.load(new_sess) # load the saved model into new session ```
Client ```python from serving_utils import Client, PredictInput
client = Client(addr=”localhost:8500”) client.predict( [PredictInput(name=’input’, value=np.ones(1, 10))], output_names=[‘output’], model_signature_name=’predict’, )
or async
await client.async_predict(…) ```
Freeze graph ```python from serving_utils.freeze_graph import freeze_graph, create_session_from_graphdef
frozen_graph_def = freeze_graph(session, output_op_names) new_session = create_session_from_graphdef(frozen_graph_def) ```
Loader ```python
## Test Run the following commands:
make lint make test
## Dev
make install-dev
### Protos
python -m grpc_tools.protoc -I. –python_out=. –python_grpc_out=. –grpc_python_out=. serving_utils/protos/*.proto ```
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.8.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 204972e65cc2b5c9068ecafafc96d9705ac749556218dabede4988f123f7c45b |
|
MD5 | f3b400fb8e4e7638fded3d106e3c0629 |
|
BLAKE2b-256 | 9f12c11514a91e76bec8afeeb05476d7618718d2f644901747f26800bf247418 |