Skip to content

Instantly share code, notes, and snippets.

@vatsal-sodha
Created July 29, 2018 23:40
Show Gist options
  • Save vatsal-sodha/f39eeca4770cb1d7d231b1d24867ddff to your computer and use it in GitHub Desktop.
Save vatsal-sodha/f39eeca4770cb1d7d231b1d24867ddff to your computer and use it in GitHub Desktop.
syntax = "proto2";
package object_detection.protos;
import "object_detection/protos/faster_rcnn.proto";
import "object_detection/protos/ssd.proto";
// Top level configuration for DetectionModels.
message DetectionModel {
oneof model {
FasterRcnn faster_rcnn = 1;
Ssd ssd = 2;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment