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.

14 lines
295 B

6 years ago
  1. syntax = "proto2";
  2. package object_detection.protos;
  3. import "object_detection/protos/faster_rcnn.proto";
  4. import "object_detection/protos/ssd.proto";
  5. // Top level configuration for DetectionModels.
  6. message DetectionModel {
  7. oneof model {
  8. FasterRcnn faster_rcnn = 1;
  9. Ssd ssd = 2;
  10. }
  11. }