aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/estimator/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/estimator/BUILD')
-rw-r--r--tensorflow/python/estimator/BUILD63
1 files changed, 0 insertions, 63 deletions
diff --git a/tensorflow/python/estimator/BUILD b/tensorflow/python/estimator/BUILD
index 03f386e9cf..26f1fd888a 100644
--- a/tensorflow/python/estimator/BUILD
+++ b/tensorflow/python/estimator/BUILD
@@ -25,7 +25,6 @@ py_library(
srcs = ["estimator_lib.py"],
srcs_version = "PY2AND3",
deps = [
- ":baseline",
":dnn",
":dnn_linear_combined",
":estimator",
@@ -188,68 +187,6 @@ py_test(
)
py_library(
- name = "baseline",
- srcs = ["canned/baseline.py"],
- srcs_version = "PY2AND3",
- deps = [
- ":estimator",
- ":head",
- ":model_fn",
- ":optimizers",
- "//tensorflow/python:init_ops",
- "//tensorflow/python:layers",
- "//tensorflow/python:nn",
- "//tensorflow/python:partitioned_variables",
- "//tensorflow/python:summary",
- "//tensorflow/python:training",
- "//tensorflow/python:variable_scope",
- "//tensorflow/python/feature_column",
- "@six_archive//:six",
- ],
-)
-
-py_test(
- name = "baseline_test",
- size = "medium",
- srcs = ["canned/baseline_test.py"],
- srcs_version = "PY2AND3",
- tags = [
- "no_pip",
- "notsan", # b/67510291
- ],
- deps = [
- ":baseline",
- ":estimator",
- ":export_export",
- ":metric_keys",
- ":numpy_io",
- ":pandas_io",
- ":run_config",
- "//tensorflow/core:protos_all_py",
- "//tensorflow/python:array_ops",
- "//tensorflow/python:check_ops",
- "//tensorflow/python:client",
- "//tensorflow/python:client_testlib",
- "//tensorflow/python:constant_op",
- "//tensorflow/python:control_flow_ops",
- "//tensorflow/python:data_flow_ops",
- "//tensorflow/python:dtypes",
- "//tensorflow/python:framework_ops",
- "//tensorflow/python:math_ops",
- "//tensorflow/python:parsing_ops",
- "//tensorflow/python:platform",
- "//tensorflow/python:sparse_tensor",
- "//tensorflow/python:state_ops",
- "//tensorflow/python:summary",
- "//tensorflow/python:training",
- "//tensorflow/python:variable_scope",
- "//tensorflow/python:variables",
- "//tensorflow/python/feature_column",
- "@six_archive//:six",
- ],
-)
-
-py_library(
name = "dnn",
srcs = ["canned/dnn.py"],
srcs_version = "PY2AND3",