You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
350 B

6 years ago
  1. syntax = "proto2";
  2. package object_detection.protos;
  3. // Configuration proto for bipartite matcher. See
  4. // matchers/bipartite_matcher.py for details.
  5. message BipartiteMatcher {
  6. // Force constructed match objects to use matrix multiplication based gather
  7. // instead of standard tf.gather
  8. optional bool use_matmul_gather = 6 [default = false];
  9. }