aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/eager/python/examples/BUILD
blob: 12155a459c29c353c57679c407e7dda25047a35c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# TensorFlow code for training gradient boosted trees.
licenses(["notice"])  # Apache 2.0

package(default_visibility = ["//tensorflow:internal"])

py_library(
    name = "examples_pip",
    deps = [
        "//tensorflow/contrib/eager/python/examples/gan:mnist",
        "//tensorflow/contrib/eager/python/examples/l2hmc",
        "//tensorflow/contrib/eager/python/examples/l2hmc:neural_nets",
        "//tensorflow/contrib/eager/python/examples/linear_regression",
        "//tensorflow/contrib/eager/python/examples/resnet50",
        "//tensorflow/contrib/eager/python/examples/revnet",
        "//tensorflow/contrib/eager/python/examples/revnet:config",
        "//tensorflow/contrib/eager/python/examples/rnn_colorbot",
        "//tensorflow/contrib/eager/python/examples/rnn_ptb",
        "//tensorflow/contrib/eager/python/examples/sagan",
        "//tensorflow/contrib/eager/python/examples/sagan:config",
        "//tensorflow/contrib/eager/python/examples/spinn:data",
    ],
)