File size: 350 Bytes
97b6013 |
1 2 3 4 5 6 7 8 9 10 11 12 |
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];
}
|