aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/examples/get_started/regression/BUILD
blob: bee94d7d90fb3f70107a5dd9e9223f3013402073 (plain)
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
licenses(["notice"])  # Apache 2.0

exports_files(["LICENSE"])

py_test(
    name = "test",
    size = "medium",
    srcs = [
        "custom_regression.py",
        "dnn_regression.py",
        "imports85.py",
        "linear_regression.py",
        "linear_regression_categorical.py",
        "test.py",
    ],
    srcs_version = "PY2AND3",
    tags = [
        "manual",
        "notap",
    ],
    deps = [
        "//tensorflow:tensorflow_py",
        "//third_party/py/numpy",
    ],
)