How to parse the output received by gRPC stub client from tensorflow serving server?
You can do the following
result = stub.Predict(request, 5.0)
float_val = result.outputs['outputs'].float_val
Note that this method calls stub.Predict
instead of stub.Predict.future