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.

22 lines
773 B

6 years ago
  1. syntax = "proto2";
  2. package object_detection.protos;
  3. import "object_detection/protos/eval.proto";
  4. import "object_detection/protos/graph_rewriter.proto";
  5. import "object_detection/protos/input_reader.proto";
  6. import "object_detection/protos/model.proto";
  7. import "object_detection/protos/train.proto";
  8. // Convenience message for configuring a training and eval pipeline. Allows all
  9. // of the pipeline parameters to be configured from one file.
  10. // Next id: 7
  11. message TrainEvalPipelineConfig {
  12. optional DetectionModel model = 1;
  13. optional TrainConfig train_config = 2;
  14. optional InputReader train_input_reader = 3;
  15. optional EvalConfig eval_config = 4;
  16. repeated InputReader eval_input_reader = 5;
  17. optional GraphRewriter graph_rewriter = 6;
  18. extensions 1000 to max;
  19. }