BUILD 649 Bytes
Newer Older
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
26
27
28
# Tensorflow Object Detection API: data decoders.

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

licenses(["notice"])
# Apache 2.0

py_library(
    name = "tf_example_decoder",
    srcs = ["tf_example_decoder.py"],
    deps = [
        "//tensorflow",
        "//tensorflow_models/object_detection/core:data_decoder",
        "//tensorflow_models/object_detection/core:standard_fields",
    ],
)

py_test(
    name = "tf_example_decoder_test",
    srcs = ["tf_example_decoder_test.py"],
    deps = [
        ":tf_example_decoder",
        "//tensorflow",
        "//tensorflow_models/object_detection/core:standard_fields",
    ],
)