Create contrib folder for new boosted_trees library.

Change: 149105174
This commit is contained in:
A. Unique TensorFlower 2017-03-03 05:51:31 -08:00 committed by TensorFlower Gardener
parent 4ff47022d8
commit c91e568a0e

View File

@ -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__"],
)