aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/factorization/examples/BUILD
blob: 363baa121ab3854a802ca3606e35597d31b35a57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Example TensorFlow models using factorization ops.

licenses(["notice"])  # Apache 2.0

exports_files(["LICENSE"])

package(default_visibility = ["//tensorflow:__subpackages__"])

load("//tensorflow:tensorflow.bzl", "tf_py_test")

tf_py_test(
    name = "mnist",
    size = "medium",
    srcs = [
        "mnist.py",
    ],
    additional_deps = [
        "//tensorflow:tensorflow_py",
        "//tensorflow/examples/tutorials/mnist",
        "//tensorflow/examples/tutorials/mnist:input_data",
    ],
    tags = ["notsan"],
)