Python client configuration
The Client class allows a client to obtain outputs from a Konduit Serving instance given a named set of inputs via the predict() method.
from konduit.client import Client
Client(
timeout=60,
input_data_format='NUMPY',
output_data_format='NUMPY',
input_names=['default'],
output_names=['default'],
host='http://localhost',
port=None,
prediction_type=None
)Data formats
client = Client(port=3226)
client.convert_to_format = "ARROW"Input and output names
Other arguments
.predict()method
.predict()methodExample
YAML configuration
Last updated
Was this helpful?