aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/tensor_forest/proto/BUILD
blob: 04fd6a9839509d2d02b7cf947acc4505c28cbdcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
licenses(["notice"])  # Apache 2.0

exports_files(["LICENSE"])

load("//tensorflow/core:platform/default/build_config.bzl", "tf_proto_library")

package(default_visibility = ["//visibility:public"])

tf_proto_library(
    name = "fertile_stats_proto",
    srcs = ["fertile_stats.proto"],
    cc_api_version = 2,
    protodeps = ["//tensorflow/contrib/decision_trees/proto:generic_tree_model"],
    visibility = ["//visibility:public"],
)

tf_proto_library(
    name = "tensor_forest_params_proto",
    srcs = ["tensor_forest_params.proto"],
    cc_api_version = 2,
    protodeps = ["//tensorflow/contrib/decision_trees/proto:generic_tree_model"],
    visibility = ["//visibility:public"],
)