aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/hooks/BUILD
blob: d65b2d6026dd89959aa62b57e07b073eef84572c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Description:
#   Contains `SessionRunHook`s for use with `MonitoredSession` and the
#   wrappers around it.

licenses(["notice"])  # Apache 2.0

exports_files(["LICENSE"])

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

load("//tensorflow:tensorflow.bzl", "py_test")

py_library(
    name = "hooks",
    srcs = [
        "__init__.py",
        "python/training/__init__.py",
        "python/training/profiler_hook.py",
    ],
    srcs_version = "PY2AND3",
    deps = [
        "//tensorflow/python:training",
        "//tensorflow/python:util",
    ],
)