Closed thhart closed 4 years ago
Also interested to know about output tensors.
I guess the output tensors are
probability output
taken from tensorflow model server rest api results.
Here is what people are using
image_tensor = detection_graph.get_tensor_by_name('input_image_as_bytes:0')
prediction_result = detection_graph.get_tensor_by_name('prediction:0')
allProbs = detection_graph.get_tensor_by_name('probability:0')
I want to integrate the model programmatically, how to receive more detailed information from the output model. How are the tensors named and structured in the graph to receive information like this (if available):
input:
image data bytes
output:
bounding box location score/probability single character location