aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/decision_trees
diff options
context:
space:
mode:
authorGravatar Anna R <annarev@google.com>2017-07-17 17:35:28 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-07-17 17:39:47 -0700
commitbdd3189e5ce308cf27abeadd5e98b1bc987d160c (patch)
tree296ca2de8655891d9db6278a3a2a69be07da7fb3 /tensorflow/contrib/decision_trees
parent23a3e222562cba97b4b03ccf8d4027a91d179051 (diff)
Automated g4 rollback of changelist 162273792
PiperOrigin-RevId: 162296574
Diffstat (limited to 'tensorflow/contrib/decision_trees')
-rw-r--r--tensorflow/contrib/decision_trees/BUILD37
1 files changed, 0 insertions, 37 deletions
diff --git a/tensorflow/contrib/decision_trees/BUILD b/tensorflow/contrib/decision_trees/BUILD
deleted file mode 100644
index 6be69a6f94..0000000000
--- a/tensorflow/contrib/decision_trees/BUILD
+++ /dev/null
@@ -1,37 +0,0 @@
-# TensorFlow shared library for training decision trees.
-package(default_visibility = [
- "//visibility:public",
-])
-
-licenses(["notice"]) # Apache 2.0
-
-exports_files(["LICENSE"])
-
-filegroup(
- name = "all_files",
- srcs = glob(
- ["*"],
- ),
- visibility = ["//tensorflow:__subpackages__"],
-)
-
-py_library(
- name = "init_py",
- srcs = [
- "__init__.py",
- ],
- srcs_version = "PY2AND3",
- deps = [
- "//tensorflow/contrib/decision_trees/proto:generic_tree_model_extensions_py",
- "//tensorflow/contrib/decision_trees/proto:generic_tree_model_py",
- ],
-)
-
-# Pip
-
-py_library(
- name = "decision_trees_pip",
- deps = [
- ":init_py",
- ],
-)