bipartite_matcher.proto 350 Bytes
Newer Older
1
2
3
4
5
6
7
syntax = "proto2";

package object_detection.protos;

// Configuration proto for bipartite matcher. See
// matchers/bipartite_matcher.py for details.
message BipartiteMatcher {
8
9
10
  // Force constructed match objects to use matrix multiplication based gather
  // instead of standard tf.gather
  optional bool use_matmul_gather = 6 [default = false];
11
}