This post解释了如何通过TensorFlow Serving with Docker和HTTP发布和使用图像模型。没有Docker的客户端是完全相同的。您可以找到帖子使用的代码here。
基本上,您必须使用格式为http://host:port/v1/models/${MODEL_NAME}:predict
的JSON发布到{"instances" : [{"b64": <image_in_jpg_in_base64>}]}
。您可以了解有关TF Serving RESTful API here的更多信息。