Closed wlsonia closed 5 years ago
Hi! I was able to do the inference file using this. There is a typo. Do change it from:
forward_model = Forward('path/to/pb/', my_config)
results = forward_model(list_of_image_arrays)
to:
forward_model = ForwardModel('path/to/pb/', my_config)
results = forward_model(list_of_image_arrays)
what's the list_of_image_arrays?
Hi bendangnuksung, Very thanks to your code. It helped me a lot The client code use gRPC to send the request. How can I implement the same using HTTP request. I'm really struggling to create the 'request body' with a test image.
Dear bendangnuksung,
First of all thanks for the code it was really helpful. but,I have a question,how can I use the pb file to inference?