tensorflow服务:无法连接到'ipv4:127.0.0.1:9000'

时间:2016-06-05 05:07:10

标签: tensorflow tensorflow-serving

我在“AWS t2.large Ubuntu 14.04”服务器上安装并配置了tensorflow服务。

当我通过执行命令 ID value 0 0 0 1 0 0 2 0 6 3 0 7 4 0 10 5 0 0 6 0 0 7 0 10 8 0 1 9 0 10 10 0 7 尝试test the server with the mnist_client utility时,收到以下错误消息:

bazel-bin/tensorflow_serving/example/mnist_client --num_tests=1000 --server=localhost:9000

知道如何解决这个问题吗?

2 个答案:

答案 0 :(得分:0)

我还没有听说过这样的事情,但确实注意到(至少与其他测试客户端一样)当服务器尚未准备就绪时,请求会超时。所以我的猜测是服务器尚未启动或者可能处于其他不良状态。

答案 1 :(得分:0)

之前我遇到过同样的问题。根本原因是mnist_client在我的本地计算机而不是服务器中运行,因为该命令连接到localhost bazel-bin/tensorflow_serving/example/mnist_client --num_tests=1000 --server=localhost:9000

当我在服务器中运行mnist_client实用程序时,它会成功。