Created
July 29, 2018 23:40
-
-
Save vatsal-sodha/f39eeca4770cb1d7d231b1d24867ddff to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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