I want to use "coco_detection_metrics". I read in forums that I should add metrics_set: "coco_detection_metrics" to eval_config:
eval_config: {
num_examples:2000
max_evals: 10
eval_interval_secs: 5
metrics_set: "coco_detection_metrics"
}
But there are two config files for each model and I see "eval_config" in both of them, for example for "ssd_mobilenet_v1_coco":
1- ssd_mobilenet_v1_coco.config
(located in: **samples/configs/**)
2- ssd_mobilenet_v1_coco_2018_01_28/pipeline.config
(located in: **ssd_mobilenet_v1_coco_2018_01_28.tar.gz**)
Which one should be modified? What is the difference of these two files? Which one will be used during training or evaluation?
Thank you!