BUILD 1.08 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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",
17
18
        "//tensorflow/models/research/object_detection/core:matcher",
        "//tensorflow/models/research/object_detection/utils:shape_utils",
19
20
21
22
23
24
25
26
27
    ],
)

py_test(
    name = "argmax_matcher_test",
    srcs = ["argmax_matcher_test.py"],
    deps = [
        ":argmax_matcher",
        "//tensorflow",
28
        "//tensorflow/models/research/object_detection/utils:test_case",
29
30
31
32
33
34
35
36
37
38
39
    ],
)

py_library(
    name = "bipartite_matcher",
    srcs = [
        "bipartite_matcher.py",
    ],
    deps = [
        "//tensorflow",
        "//tensorflow/contrib/image:image_py",
40
        "//tensorflow/models/research/object_detection/core:matcher",
41
42
43
44
45
46
47
48
49
50
51
52
53
    ],
)

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