forked from tensorflow/tensorflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD
More file actions
40 lines (35 loc) · 889 Bytes
/
Copy pathBUILD
File metadata and controls
40 lines (35 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Description: SavedModel half plus two example.
package(
default_visibility = ["//tensorflow/python/saved_model:__subpackages__"],
features = [
"-layering_check",
],
)
licenses(["notice"]) # Apache 2.0
exports_files(["LICENSE"])
filegroup(
name = "all_files",
srcs = glob(
["**/*"],
exclude = [
"**/METADATA",
"**/OWNERS",
"g3doc/sitemap.md",
],
),
visibility = ["//visibility:public"],
)
py_binary(
name = "saved_model_half_plus_two",
srcs = [
"saved_model_half_plus_two.py",
],
srcs_version = "PY2AND3",
deps = [
"//tensorflow:tensorflow_py",
"//tensorflow/core:protos_all_py",
"//tensorflow/python/saved_model:builder",
"//tensorflow/python/saved_model:constants",
"//tensorflow/python/saved_model:utils",
],
)