-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Description
System information
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Linux Ubuntu 20.04 on s390x
- TensorFlow Serving installed from (source or binary): Source
- TensorFlow Serving version: 2.5.1
Describe the problem
When running test suites on an s390x machine, test_tf_text
in //tensorflow_serving/model_servers:tensorflow_model_server_test
will fail with the following error message:
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
status = StatusCode.INTERNAL
details = "U_INVALID_FORMAT_ERROR: Could not retrieve ICU NFKC normalizer
[[{{node NormalizeUTF8WithOffsets/NormalizeUTF8WithOffsetsMap}}]]"
debug_error_string = "{"created":"@1626196655.285737838","description":"Error received from peer ipv4:127.0.0.1:41813","file":"src/core/lib/surface/call.cc","file_line":1066,"grpc_message":"U_INVALID_FORMAT_ERROR: Could not retrieve ICU NFKC normalizer\n\t [[{{node NormalizeUTF8WithOffsets/NormalizeUTF8WithOffsetsMap}}]]","grpc_status":13}"
>
This seems to be caused by the fact that TF text is using Little Endian ICU normalization data, so I tried to manually generate this normalization data file on a Big Endian machine from ICU repo.
The next step I would like to try was to regenerate the tf_text_regrassion model for serving. However, after I run the script here, it does not seem to produce the correct model for this test.
TF serving 2.5.1 is depending on TF text 2.4.3, so I tried this script for both 2.4.3
and 2.5.0
versions TF text (because 2.5.0 is the first version it supports TF 2.5.0 - TF serving 2.5.1 is also depending on TF 2.5.0). But they either could not run or the generated model is still making the test case fail.
My question would be is there a clear way to regenerate the tf_text_regression
model for a particular TF serving version (2.5.1)? Simply running the script is not working and also there is this version discrepancy here, so I would appreciate it if someone could guide me through generating this model on a local machine.
Exact Steps to Reproduce
This will reproduce the test case failure
bazel test --build_tests_only --test_output=errors --verbose_failures -c opt //tensorflow_serving/model_servers:tensorflow_model_server_test