aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/decision_trees
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-01-09 10:51:31 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-01-09 10:56:48 -0800
commitc4889755e0ea8dca3d8b14d7dfce7560e545fc2f (patch)
treeb4ddf1d301160d855b1fd86498c251e61341bfb8 /tensorflow/contrib/decision_trees
parent611f18f179e8f0a3b5df59477b4bc1d92fd3a7a4 (diff)
Adding a CLIF library for generic_tree_model.proto
PiperOrigin-RevId: 181341793
Diffstat (limited to 'tensorflow/contrib/decision_trees')
-rw-r--r--tensorflow/contrib/decision_trees/proto/BUILD13
1 files changed, 12 insertions, 1 deletions
diff --git a/tensorflow/contrib/decision_trees/proto/BUILD b/tensorflow/contrib/decision_trees/proto/BUILD
index 87c80740a8..f6de5998d7 100644
--- a/tensorflow/contrib/decision_trees/proto/BUILD
+++ b/tensorflow/contrib/decision_trees/proto/BUILD
@@ -7,7 +7,11 @@ exports_files([
"generic_tree_model_proto.swig",
])
-load("//tensorflow/core:platform/default/build_config.bzl", "tf_proto_library")
+load(
+ "//tensorflow/core:platform/default/build_config.bzl",
+ "tf_proto_library",
+ "tf_pyclif_proto_library",
+)
filegroup(
name = "all_files",
@@ -34,3 +38,10 @@ tf_proto_library(
protodeps = [":generic_tree_model"],
visibility = ["//visibility:public"],
)
+
+tf_pyclif_proto_library(
+ name = "generic_tree_model_pyclif",
+ proto_lib = ":generic_tree_model",
+ proto_srcfile = "generic_tree_model.proto",
+ visibility = ["//visibility:public"],
+)