Keras (TensorFlow 2.0)
This page illustrates a simple client-server interaction to perform inference on a Keras LSTM model using the Python SDK for Konduit Serving.
from konduit import ModelConfig, ParallelInferenceConfig, ModelConfigType, \
ModelStep, ServingConfig
from konduit.server import Server
from konduit.client import Client
import os
import numpy as npSaving models in Keras HDF5 (.h5) format
Overview
Configure the step
Configure the server
Start the server
Configure the client
Inference
Last updated
Was this helpful?