def __infer(stub, model_name, model_input): with open(model_input, 'rb') as f: data = f.read() input_data = {'data': data} response = stub.Predictions( inference_pb2.PredictionsRequest(model_name=model_name, input=input_data)) prediction = response.prediction.decode('utf-8') return prediction
def infer(stub, model_name, model_input): with open(model_input, 'rb') as f: data = f.read() input_data = {'data': data} response = stub.Predictions( inference_pb2.PredictionsRequest(model_name=model_name, input=input_data)) try: prediction = response.prediction.decode('utf-8') print(prediction) except grpc.RpcError as e: exit(1)
def infer(stub, model_name, model_input): data = model_input input_data = {'data': data} print(type(data)) print(model_name) response = stub.Predictions( inference_pb2.PredictionsRequest(model_name=model_name, input=input_data)) try: prediction = response.prediction.decode('utf-8') print(prediction) except grpc.RpcError as e: exit(1)