yolov3_darknet53_270e_voc.yml 415 B

12345678910111213141516
  1. _BASE_: [
  2. '../datasets/voc.yml',
  3. '../runtime.yml',
  4. '_base_/optimizer_270e.yml',
  5. '_base_/yolov3_darknet53.yml',
  6. '_base_/yolov3_reader.yml',
  7. ]
  8. snapshot_epoch: 5
  9. weights: output/yolov3_darknet53_270e_voc/model_final
  10. # set collate_batch to false because ground-truth info is needed
  11. # on voc dataset and should not collate data in batch when batch size
  12. # is larger than 1.
  13. EvalReader:
  14. collate_batch: false