We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32d0e7e commit e73f2bdCopy full SHA for e73f2bd
official/mnist/BUILD
@@ -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