BUILD 942 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Tensorflow Object Detection API: Matcher implementations.

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

licenses(["notice"])

# Apache 2.0
py_library(
    name = "argmax_matcher",
    srcs = [
        "argmax_matcher.py",
    ],
    deps = [
        "//tensorflow",
        "//tensorflow_models/object_detection/core:matcher",
    ],
)

py_test(
    name = "argmax_matcher_test",
    srcs = ["argmax_matcher_test.py"],
    deps = [
        ":argmax_matcher",
        "//tensorflow",
    ],
)

py_library(
    name = "bipartite_matcher",
    srcs = [
        "bipartite_matcher.py",
    ],
    deps = [
        "//tensorflow",
        "//tensorflow/contrib/image:image_py",
        "//tensorflow_models/object_detection/core:matcher",
    ],
)

py_test(
    name = "bipartite_matcher_test",
    srcs = [
        "bipartite_matcher_test.py",
    ],
    deps = [
        ":bipartite_matcher",
        "//tensorflow",
    ],
)