Checking the operability of the tensor

I am trying to create Tensorflow Serving on Ubuntu. I compiled Tensorflow and Tensorflow serving from the source without errors, but when I ran:

bazel test -c opt tensorflow_serving/... 

I get the following error:

 //tensorflow_serving/model_servers:tensorflow_model_server_test TIMEOUT in 315.1s 

All other tests pass.

When I look at the log file, I only see the following:

 exec ${PAGER:-/usr/bin/less} "$0" || exit 1 

I do not know what the error is, or why the model server test does not work.

+8
tensorflow-serving
source share
2 answers

It may just be that the test runs slowly in your environment and will pass if configured with a more generous timeout. Try editing the BUILD file to set the size of the test huge and see if it passes then.

0
source share

This was a problem when servicing TensorFlow. See this Github issue for more information.

0
source share

All Articles