STT-tensorflow/tensorflow/python/saved_model/model_utils/BUILD
Scott Zhu d85bb53d3e Update the export_output_test to not rely on Keras metrics.
The API interface of export_outputs_for_mode made it clear that the input metric need to be a tuple of metric value and update_op, rather than metric instance itself.

PiperOrigin-RevId: 315932763
Change-Id: Id5c032e90c678313e9b42933dbbaada82b7f7d08
2020-06-11 11:02:26 -07:00

120 lines
3.4 KiB
Python

# Copyright 2016 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
# Description:
# Keras saving and loading libraries.
load("//tensorflow:tensorflow.bzl", "py_test")
package(
default_visibility = ["//tensorflow:__subpackages__"],
licenses = ["notice"], # Apache 2.0
)
exports_files(["LICENSE"])
py_library(
name = "model_utils",
srcs = ["__init__.py"],
srcs_version = "PY2AND3",
deps = [
":export_output",
":export_utils",
":mode_keys",
],
)
py_library(
name = "export_output",
srcs = ["export_output.py"],
srcs_version = "PY2AND3",
deps = [
"//tensorflow/python:constant_op",
"//tensorflow/python:dtypes",
"//tensorflow/python:framework_ops",
"//tensorflow/python/saved_model:signature_def_utils",
],
)
py_test(
name = "export_output_test",
srcs = ["export_output_test.py"],
python_version = "PY3",
srcs_version = "PY2AND3",
deps = [
":export_output",
"//tensorflow/core:protos_all_py",
"//tensorflow/python:array_ops",
"//tensorflow/python:client_testlib",
"//tensorflow/python:constant_op",
"//tensorflow/python:control_flow_ops",
"//tensorflow/python:dtypes",
"//tensorflow/python:framework_ops",
"//tensorflow/python:sparse_tensor",
"//tensorflow/python/saved_model:signature_constants",
],
)
py_library(
name = "export_utils",
srcs = ["export_utils.py"],
srcs_version = "PY2AND3",
deps = [
":export_output",
":mode_keys",
"//tensorflow/python:platform",
"//tensorflow/python:util",
"//tensorflow/python/saved_model:signature_constants",
"//tensorflow/python/saved_model:signature_def_utils",
"//tensorflow/python/saved_model:tag_constants",
],
)
py_test(
name = "export_test",
srcs = ["export_test.py"],
python_version = "PY3",
srcs_version = "PY2AND3",
deps = [
":export_utils",
"//tensorflow/python:array_ops",
"//tensorflow/python:client_testlib",
"//tensorflow/python:constant_op",
"//tensorflow/python:control_flow_ops",
"//tensorflow/python:dtypes",
"//tensorflow/python:framework_ops",
"//tensorflow/python:framework_test_lib",
"//tensorflow/python:sparse_tensor",
"//tensorflow/python/saved_model:signature_constants",
"//tensorflow/python/saved_model:signature_def_utils",
],
)
py_library(
name = "mode_keys",
srcs = ["mode_keys.py"],
srcs_version = "PY2AND3",
)
py_test(
name = "mode_keys_test",
srcs = ["mode_keys_test.py"],
python_version = "PY3",
srcs_version = "PY2AND3",
deps = [
":mode_keys",
"//tensorflow/python:client_testlib",
],
)