NCTC / models /research /object_detection /protos /bipartite_matcher.proto
NCTCMumbai's picture
Upload 2571 files
0b8359d
raw
history blame
350 Bytes
syntax = "proto2";
package object_detection.protos;
// Configuration proto for bipartite matcher. See
// matchers/bipartite_matcher.py for details.
message BipartiteMatcher {
// Force constructed match objects to use matrix multiplication based gather
// instead of standard tf.gather
optional bool use_matmul_gather = 6 [default = false];
}