From c91e568a0e54d27cd840c257b69d7202e9089820 Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Fri, 3 Mar 2017 05:51:31 -0800 Subject: [PATCH] Create contrib folder for new boosted_trees library. Change: 149105174 --- tensorflow/contrib/boosted_trees/BUILD | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 tensorflow/contrib/boosted_trees/BUILD diff --git a/tensorflow/contrib/boosted_trees/BUILD b/tensorflow/contrib/boosted_trees/BUILD new file mode 100644 index 00000000000..7823aa621f4 --- /dev/null +++ b/tensorflow/contrib/boosted_trees/BUILD @@ -0,0 +1,19 @@ +# TensorFlow code for training gradient boosted trees. +licenses(["notice"]) # Apache 2.0 + +exports_files(["LICENSE"]) + +package(default_visibility = [ + "//visibility:public", +]) + +filegroup( + name = "all_files", + srcs = glob( + ["**/*"], + exclude = [ + "**/OWNERS", + ], + ), + visibility = ["//tensorflow:__subpackages__"], +)