Skip to content

Commit e73f2bd

Browse files
committed
file w/o tests
1 parent 32d0e7e commit e73f2bd

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

official/mnist/BUILD

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Description:
2+
# Benchmarking a model
3+
4+
load(
5+
"//tensorflow/tools/test:performance.bzl",
6+
"tf_py_logged_benchmark",
7+
)
8+
9+
licenses(["notice"]) # Apache 2.0
10+
11+
exports_files(["LICENSE"])
12+
13+
py_test(
14+
name = "mnist_test",
15+
srcs = ["mnist_test.py"],
16+
srcs_version = "PY2AND3",
17+
deps = [
18+
"//tensorflow:tensorflow_py",
19+
],
20+
)
21+
22+
tf_py_logged_benchmark(
23+
name = "mnist_logged_benchmark",
24+
target = "//tensorflow/models/official/mnist:mnist_test",
25+
)

0 commit comments

Comments
 (0)