Tensorflow Serving Test Failing

598 Views Asked by At

I am trying to build Tensorflow Serving on Ubuntu. I have compiled Tensorflow and Tensorflow serving from source without error, but when I run:

bazel test -c opt tensorflow_serving/...

I get the following error:

//tensorflow_serving/model_servers:tensorflow_model_server_test         
TIMEOUT in 315.1s

All of the other tests pass.

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

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

I don't know what the error is, or why the model server test is failing.

2

There are 2 best solutions below

0
On

It could simply be that the test is running slow in your environment and would pass if configured with a more generous timeout. Try editing the BUILD file to set the test size to enormous and see if it passes then.

0
On

This was an issue in TensorFlow Serving. Please refer to this Github issue for more information.